Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/clang/lib/Driver/Job.cpp
Line
Count
Source (jump to first uncovered line)
1
//===- Job.cpp - Command to Execute ---------------------------------------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "clang/Driver/Job.h"
10
#include "clang/Basic/LLVM.h"
11
#include "clang/Driver/Driver.h"
12
#include "clang/Driver/DriverDiagnostic.h"
13
#include "clang/Driver/InputInfo.h"
14
#include "clang/Driver/Tool.h"
15
#include "clang/Driver/ToolChain.h"
16
#include "llvm/ADT/ArrayRef.h"
17
#include "llvm/ADT/SmallString.h"
18
#include "llvm/ADT/SmallVector.h"
19
#include "llvm/ADT/StringExtras.h"
20
#include "llvm/ADT/StringRef.h"
21
#include "llvm/ADT/StringSet.h"
22
#include "llvm/ADT/StringSwitch.h"
23
#include "llvm/Support/CrashRecoveryContext.h"
24
#include "llvm/Support/FileSystem.h"
25
#include "llvm/Support/Path.h"
26
#include "llvm/Support/PrettyStackTrace.h"
27
#include "llvm/Support/Program.h"
28
#include "llvm/Support/raw_ostream.h"
29
#include <algorithm>
30
#include <cassert>
31
#include <cstddef>
32
#include <string>
33
#include <system_error>
34
#include <utility>
35
36
using namespace clang;
37
using namespace driver;
38
39
Command::Command(const Action &Source, const Tool &Creator,
40
                 ResponseFileSupport ResponseSupport, const char *Executable,
41
                 const llvm::opt::ArgStringList &Arguments,
42
                 ArrayRef<InputInfo> Inputs, ArrayRef<InputInfo> Outputs,
43
                 const char *PrependArg)
44
    : Source(Source), Creator(Creator), ResponseSupport(ResponseSupport),
45
0
      Executable(Executable), PrependArg(PrependArg), Arguments(Arguments) {
46
0
  for (const auto &II : Inputs)
47
0
    if (II.isFilename())
48
0
      InputInfoList.push_back(II);
49
0
  for (const auto &II : Outputs)
50
0
    if (II.isFilename())
51
0
      OutputFilenames.push_back(II.getFilename());
52
0
}
53
54
/// Check if the compiler flag in question should be skipped when
55
/// emitting a reproducer. Also track how many arguments it has and if the
56
/// option is some kind of include path.
57
static bool skipArgs(const char *Flag, bool HaveCrashVFS, int &SkipNum,
58
0
                     bool &IsInclude) {
59
0
  SkipNum = 2;
60
  // These flags are all of the form -Flag <Arg> and are treated as two
61
  // arguments.  Therefore, we need to skip the flag and the next argument.
62
0
  bool ShouldSkip = llvm::StringSwitch<bool>(Flag)
63
0
    .Cases("-MF", "-MT", "-MQ", "-serialize-diagnostic-file", true)
64
0
    .Cases("-o", "-dependency-file", true)
65
0
    .Cases("-fdebug-compilation-dir", "-diagnostic-log-file", true)
66
0
    .Cases("-dwarf-debug-flags", "-ivfsoverlay", true)
67
0
    .Default(false);
68
0
  if (ShouldSkip)
69
0
    return true;
70
71
  // Some include flags shouldn't be skipped if we have a crash VFS
72
0
  IsInclude = llvm::StringSwitch<bool>(Flag)
73
0
    .Cases("-include", "-header-include-file", true)
74
0
    .Cases("-idirafter", "-internal-isystem", "-iwithprefix", true)
75
0
    .Cases("-internal-externc-isystem", "-iprefix", true)
76
0
    .Cases("-iwithprefixbefore", "-isystem", "-iquote", true)
77
0
    .Cases("-isysroot", "-I", "-F", "-resource-dir", true)
78
0
    .Cases("-iframework", "-include-pch", true)
79
0
    .Default(false);
80
0
  if (IsInclude)
81
0
    return !HaveCrashVFS;
82
83
  // The remaining flags are treated as a single argument.
84
85
  // These flags are all of the form -Flag and have no second argument.
86
0
  ShouldSkip = llvm::StringSwitch<bool>(Flag)
87
0
    .Cases("-M", "-MM", "-MG", "-MP", "-MD", true)
88
0
    .Case("-MMD", true)
89
0
    .Default(false);
90
91
  // Match found.
92
0
  SkipNum = 1;
93
0
  if (ShouldSkip)
94
0
    return true;
95
96
  // These flags are treated as a single argument (e.g., -F<Dir>).
97
0
  StringRef FlagRef(Flag);
98
0
  IsInclude = FlagRef.starts_with("-F") || FlagRef.starts_with("-I");
99
0
  if (IsInclude)
100
0
    return !HaveCrashVFS;
101
0
  if (FlagRef.starts_with("-fmodules-cache-path="))
102
0
    return true;
103
104
0
  SkipNum = 0;
105
0
  return false;
106
0
}
107
108
0
void Command::writeResponseFile(raw_ostream &OS) const {
109
  // In a file list, we only write the set of inputs to the response file
110
0
  if (ResponseSupport.ResponseKind == ResponseFileSupport::RF_FileList) {
111
0
    for (const auto *Arg : InputFileList) {
112
0
      OS << Arg << '\n';
113
0
    }
114
0
    return;
115
0
  }
116
117
  // In regular response files, we send all arguments to the response file.
118
  // Wrapping all arguments in double quotes ensures that both Unix tools and
119
  // Windows tools understand the response file.
120
0
  for (const auto *Arg : Arguments) {
121
0
    OS << '"';
122
123
0
    for (; *Arg != '\0'; Arg++) {
124
0
      if (*Arg == '\"' || *Arg == '\\') {
125
0
        OS << '\\';
126
0
      }
127
0
      OS << *Arg;
128
0
    }
129
130
0
    OS << "\" ";
131
0
  }
132
0
}
133
134
void Command::buildArgvForResponseFile(
135
0
    llvm::SmallVectorImpl<const char *> &Out) const {
136
  // When not a file list, all arguments are sent to the response file.
137
  // This leaves us to set the argv to a single parameter, requesting the tool
138
  // to read the response file.
139
0
  if (ResponseSupport.ResponseKind != ResponseFileSupport::RF_FileList) {
140
0
    Out.push_back(Executable);
141
0
    Out.push_back(ResponseFileFlag.c_str());
142
0
    return;
143
0
  }
144
145
0
  llvm::StringSet<> Inputs;
146
0
  for (const auto *InputName : InputFileList)
147
0
    Inputs.insert(InputName);
148
0
  Out.push_back(Executable);
149
150
0
  if (PrependArg)
151
0
    Out.push_back(PrependArg);
152
153
  // In a file list, build args vector ignoring parameters that will go in the
154
  // response file (elements of the InputFileList vector)
155
0
  bool FirstInput = true;
156
0
  for (const auto *Arg : Arguments) {
157
0
    if (Inputs.count(Arg) == 0) {
158
0
      Out.push_back(Arg);
159
0
    } else if (FirstInput) {
160
0
      FirstInput = false;
161
0
      Out.push_back(ResponseSupport.ResponseFlag);
162
0
      Out.push_back(ResponseFile);
163
0
    }
164
0
  }
165
0
}
166
167
/// Rewrite relative include-like flag paths to absolute ones.
168
static void
169
rewriteIncludes(const llvm::ArrayRef<const char *> &Args, size_t Idx,
170
                size_t NumArgs,
171
0
                llvm::SmallVectorImpl<llvm::SmallString<128>> &IncFlags) {
172
0
  using namespace llvm;
173
0
  using namespace sys;
174
175
0
  auto getAbsPath = [](StringRef InInc, SmallVectorImpl<char> &OutInc) -> bool {
176
0
    if (path::is_absolute(InInc)) // Nothing to do here...
177
0
      return false;
178
0
    std::error_code EC = fs::current_path(OutInc);
179
0
    if (EC)
180
0
      return false;
181
0
    path::append(OutInc, InInc);
182
0
    return true;
183
0
  };
184
185
0
  SmallString<128> NewInc;
186
0
  if (NumArgs == 1) {
187
0
    StringRef FlagRef(Args[Idx + NumArgs - 1]);
188
0
    assert((FlagRef.starts_with("-F") || FlagRef.starts_with("-I")) &&
189
0
           "Expecting -I or -F");
190
0
    StringRef Inc = FlagRef.slice(2, StringRef::npos);
191
0
    if (getAbsPath(Inc, NewInc)) {
192
0
      SmallString<128> NewArg(FlagRef.slice(0, 2));
193
0
      NewArg += NewInc;
194
0
      IncFlags.push_back(std::move(NewArg));
195
0
    }
196
0
    return;
197
0
  }
198
199
0
  assert(NumArgs == 2 && "Not expecting more than two arguments");
200
0
  StringRef Inc(Args[Idx + NumArgs - 1]);
201
0
  if (!getAbsPath(Inc, NewInc))
202
0
    return;
203
0
  IncFlags.push_back(SmallString<128>(Args[Idx]));
204
0
  IncFlags.push_back(std::move(NewInc));
205
0
}
206
207
void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
208
0
                    CrashReportInfo *CrashInfo) const {
209
  // Always quote the exe.
210
0
  OS << ' ';
211
0
  llvm::sys::printArg(OS, Executable, /*Quote=*/true);
212
213
0
  ArrayRef<const char *> Args = Arguments;
214
0
  SmallVector<const char *, 128> ArgsRespFile;
215
0
  if (ResponseFile != nullptr) {
216
0
    buildArgvForResponseFile(ArgsRespFile);
217
0
    Args = ArrayRef<const char *>(ArgsRespFile).slice(1); // no executable name
218
0
  } else if (PrependArg) {
219
0
    OS << ' ';
220
0
    llvm::sys::printArg(OS, PrependArg, /*Quote=*/true);
221
0
  }
222
223
0
  bool HaveCrashVFS = CrashInfo && !CrashInfo->VFSPath.empty();
224
0
  for (size_t i = 0, e = Args.size(); i < e; ++i) {
225
0
    const char *const Arg = Args[i];
226
227
0
    if (CrashInfo) {
228
0
      int NumArgs = 0;
229
0
      bool IsInclude = false;
230
0
      if (skipArgs(Arg, HaveCrashVFS, NumArgs, IsInclude)) {
231
0
        i += NumArgs - 1;
232
0
        continue;
233
0
      }
234
235
      // Relative includes need to be expanded to absolute paths.
236
0
      if (HaveCrashVFS && IsInclude) {
237
0
        SmallVector<SmallString<128>, 2> NewIncFlags;
238
0
        rewriteIncludes(Args, i, NumArgs, NewIncFlags);
239
0
        if (!NewIncFlags.empty()) {
240
0
          for (auto &F : NewIncFlags) {
241
0
            OS << ' ';
242
0
            llvm::sys::printArg(OS, F.c_str(), Quote);
243
0
          }
244
0
          i += NumArgs - 1;
245
0
          continue;
246
0
        }
247
0
      }
248
249
0
      auto Found = llvm::find_if(InputInfoList, [&Arg](const InputInfo &II) {
250
0
        return II.getFilename() == Arg;
251
0
      });
252
0
      if (Found != InputInfoList.end() &&
253
0
          (i == 0 || StringRef(Args[i - 1]) != "-main-file-name")) {
254
        // Replace the input file name with the crashinfo's file name.
255
0
        OS << ' ';
256
0
        StringRef ShortName = llvm::sys::path::filename(CrashInfo->Filename);
257
0
        llvm::sys::printArg(OS, ShortName.str(), Quote);
258
0
        continue;
259
0
      }
260
0
    }
261
262
0
    OS << ' ';
263
0
    llvm::sys::printArg(OS, Arg, Quote);
264
0
  }
265
266
0
  if (CrashInfo && HaveCrashVFS) {
267
0
    OS << ' ';
268
0
    llvm::sys::printArg(OS, "-ivfsoverlay", Quote);
269
0
    OS << ' ';
270
0
    llvm::sys::printArg(OS, CrashInfo->VFSPath.str(), Quote);
271
272
    // The leftover modules from the crash are stored in
273
    //  <name>.cache/vfs/modules
274
    // Leave it untouched for pcm inspection and provide a clean/empty dir
275
    // path to contain the future generated module cache:
276
    //  <name>.cache/vfs/repro-modules
277
0
    SmallString<128> RelModCacheDir = llvm::sys::path::parent_path(
278
0
        llvm::sys::path::parent_path(CrashInfo->VFSPath));
279
0
    llvm::sys::path::append(RelModCacheDir, "repro-modules");
280
281
0
    std::string ModCachePath = "-fmodules-cache-path=";
282
0
    ModCachePath.append(RelModCacheDir.c_str());
283
284
0
    OS << ' ';
285
0
    llvm::sys::printArg(OS, ModCachePath, Quote);
286
0
  }
287
288
0
  if (ResponseFile != nullptr) {
289
0
    OS << "\n Arguments passed via response file:\n";
290
0
    writeResponseFile(OS);
291
    // Avoiding duplicated newline terminator, since FileLists are
292
    // newline-separated.
293
0
    if (ResponseSupport.ResponseKind != ResponseFileSupport::RF_FileList)
294
0
      OS << "\n";
295
0
    OS << " (end of response file)";
296
0
  }
297
298
0
  OS << Terminator;
299
0
}
300
301
0
void Command::setResponseFile(const char *FileName) {
302
0
  ResponseFile = FileName;
303
0
  ResponseFileFlag = ResponseSupport.ResponseFlag;
304
0
  ResponseFileFlag += FileName;
305
0
}
306
307
0
void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) {
308
0
  Environment.reserve(NewEnvironment.size() + 1);
309
0
  Environment.assign(NewEnvironment.begin(), NewEnvironment.end());
310
0
  Environment.push_back(nullptr);
311
0
}
312
313
void Command::setRedirectFiles(
314
0
    const std::vector<std::optional<std::string>> &Redirects) {
315
0
  RedirectFiles = Redirects;
316
0
}
317
318
0
void Command::PrintFileNames() const {
319
0
  if (PrintInputFilenames) {
320
0
    for (const auto &Arg : InputInfoList)
321
0
      llvm::outs() << llvm::sys::path::filename(Arg.getFilename()) << "\n";
322
0
    llvm::outs().flush();
323
0
  }
324
0
}
325
326
int Command::Execute(ArrayRef<std::optional<StringRef>> Redirects,
327
0
                     std::string *ErrMsg, bool *ExecutionFailed) const {
328
0
  PrintFileNames();
329
330
0
  SmallVector<const char *, 128> Argv;
331
0
  if (ResponseFile == nullptr) {
332
0
    Argv.push_back(Executable);
333
0
    if (PrependArg)
334
0
      Argv.push_back(PrependArg);
335
0
    Argv.append(Arguments.begin(), Arguments.end());
336
0
    Argv.push_back(nullptr);
337
0
  } else {
338
    // If the command is too large, we need to put arguments in a response file.
339
0
    std::string RespContents;
340
0
    llvm::raw_string_ostream SS(RespContents);
341
342
    // Write file contents and build the Argv vector
343
0
    writeResponseFile(SS);
344
0
    buildArgvForResponseFile(Argv);
345
0
    Argv.push_back(nullptr);
346
0
    SS.flush();
347
348
    // Save the response file in the appropriate encoding
349
0
    if (std::error_code EC = writeFileWithEncoding(
350
0
            ResponseFile, RespContents, ResponseSupport.ResponseEncoding)) {
351
0
      if (ErrMsg)
352
0
        *ErrMsg = EC.message();
353
0
      if (ExecutionFailed)
354
0
        *ExecutionFailed = true;
355
      // Return -1 by convention (see llvm/include/llvm/Support/Program.h) to
356
      // indicate the requested executable cannot be started.
357
0
      return -1;
358
0
    }
359
0
  }
360
361
0
  std::optional<ArrayRef<StringRef>> Env;
362
0
  std::vector<StringRef> ArgvVectorStorage;
363
0
  if (!Environment.empty()) {
364
0
    assert(Environment.back() == nullptr &&
365
0
           "Environment vector should be null-terminated by now");
366
0
    ArgvVectorStorage = llvm::toStringRefArray(Environment.data());
367
0
    Env = ArrayRef(ArgvVectorStorage);
368
0
  }
369
370
0
  auto Args = llvm::toStringRefArray(Argv.data());
371
372
  // Use Job-specific redirect files if they are present.
373
0
  if (!RedirectFiles.empty()) {
374
0
    std::vector<std::optional<StringRef>> RedirectFilesOptional;
375
0
    for (const auto &Ele : RedirectFiles)
376
0
      if (Ele)
377
0
        RedirectFilesOptional.push_back(std::optional<StringRef>(*Ele));
378
0
      else
379
0
        RedirectFilesOptional.push_back(std::nullopt);
380
381
0
    return llvm::sys::ExecuteAndWait(Executable, Args, Env,
382
0
                                     ArrayRef(RedirectFilesOptional),
383
0
                                     /*secondsToWait=*/0, /*memoryLimit=*/0,
384
0
                                     ErrMsg, ExecutionFailed, &ProcStat);
385
0
  }
386
387
0
  return llvm::sys::ExecuteAndWait(Executable, Args, Env, Redirects,
388
0
                                   /*secondsToWait*/ 0, /*memoryLimit*/ 0,
389
0
                                   ErrMsg, ExecutionFailed, &ProcStat);
390
0
}
391
392
CC1Command::CC1Command(const Action &Source, const Tool &Creator,
393
                       ResponseFileSupport ResponseSupport,
394
                       const char *Executable,
395
                       const llvm::opt::ArgStringList &Arguments,
396
                       ArrayRef<InputInfo> Inputs, ArrayRef<InputInfo> Outputs,
397
                       const char *PrependArg)
398
    : Command(Source, Creator, ResponseSupport, Executable, Arguments, Inputs,
399
0
              Outputs, PrependArg) {
400
0
  InProcess = true;
401
0
}
402
403
void CC1Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
404
0
                       CrashReportInfo *CrashInfo) const {
405
0
  if (InProcess)
406
0
    OS << " (in-process)\n";
407
0
  Command::Print(OS, Terminator, Quote, CrashInfo);
408
0
}
409
410
int CC1Command::Execute(ArrayRef<std::optional<StringRef>> Redirects,
411
0
                        std::string *ErrMsg, bool *ExecutionFailed) const {
412
  // FIXME: Currently, if there're more than one job, we disable
413
  // -fintegrate-cc1. If we're no longer a integrated-cc1 job, fallback to
414
  // out-of-process execution. See discussion in https://reviews.llvm.org/D74447
415
0
  if (!InProcess)
416
0
    return Command::Execute(Redirects, ErrMsg, ExecutionFailed);
417
418
0
  PrintFileNames();
419
420
0
  SmallVector<const char *, 128> Argv;
421
0
  Argv.push_back(getExecutable());
422
0
  Argv.append(getArguments().begin(), getArguments().end());
423
0
  Argv.push_back(nullptr);
424
0
  Argv.pop_back(); // The terminating null element shall not be part of the
425
                   // slice (main() behavior).
426
427
  // This flag simply indicates that the program couldn't start, which isn't
428
  // applicable here.
429
0
  if (ExecutionFailed)
430
0
    *ExecutionFailed = false;
431
432
0
  llvm::CrashRecoveryContext CRC;
433
0
  CRC.DumpStackAndCleanupOnFailure = true;
434
435
0
  const void *PrettyState = llvm::SavePrettyStackState();
436
0
  const Driver &D = getCreator().getToolChain().getDriver();
437
438
0
  int R = 0;
439
  // Enter ExecuteCC1Tool() instead of starting up a new process
440
0
  if (!CRC.RunSafely([&]() { R = D.CC1Main(Argv); })) {
441
0
    llvm::RestorePrettyStackState(PrettyState);
442
0
    return CRC.RetCode;
443
0
  }
444
0
  return R;
445
0
}
446
447
0
void CC1Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) {
448
  // We don't support set a new environment when calling into ExecuteCC1Tool()
449
0
  llvm_unreachable(
450
0
      "The CC1Command doesn't support changing the environment vars!");
451
0
}
452
453
void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote,
454
0
                    CrashReportInfo *CrashInfo) const {
455
0
  for (const auto &Job : *this)
456
0
    Job.Print(OS, Terminator, Quote, CrashInfo);
457
0
}
458
459
0
void JobList::clear() { Jobs.clear(); }