blob: aca5aa7eea68a4e4a4d5883d445f8f4586135a96 [file] [log] [blame]
Tobias Boschcfa8c242019-07-19 03:29:40 -07001// Copyright 2019 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Tobias Boschef8f9692019-06-10 15:50:33 -07005package main
6
7import (
George Burgess IV26caa2f2020-02-28 14:36:01 -08008 "bytes"
Tobias Bosch900dbc92019-06-24 09:31:39 -07009 "fmt"
10 "io"
Tobias Boschef8f9692019-06-10 15:50:33 -070011 "path/filepath"
Tobias Bosch5f98f2d2019-08-15 17:17:57 -070012 "strings"
Tobias Boschef8f9692019-06-10 15:50:33 -070013)
14
Tobias Bosch900dbc92019-06-24 09:31:39 -070015func callCompiler(env env, cfg *config, inputCmd *command) int {
Tobias Bosch900dbc92019-06-24 09:31:39 -070016 var compilerErr error
Tobias Bosch5edca502019-08-26 12:53:41 -070017
18 if !filepath.IsAbs(inputCmd.Path) && !strings.HasPrefix(inputCmd.Path, ".") &&
19 !strings.ContainsRune(inputCmd.Path, filepath.Separator) {
Tobias Bosch5f98f2d2019-08-15 17:17:57 -070020 if resolvedPath, err := resolveAgainstPathEnv(env, inputCmd.Path); err == nil {
21 inputCmd = &command{
22 Path: resolvedPath,
23 Args: inputCmd.Args,
24 EnvUpdates: inputCmd.EnvUpdates,
25 }
26 } else {
27 compilerErr = err
28 }
29 }
30 exitCode := 0
31 if compilerErr == nil {
Tobias Bosch8dd67e12019-10-28 14:26:51 -070032 exitCode, compilerErr = callCompilerInternal(env, cfg, inputCmd)
Tobias Bosch900dbc92019-06-24 09:31:39 -070033 }
34 if compilerErr != nil {
35 printCompilerError(env.stderr(), compilerErr)
36 exitCode = 1
37 }
38 return exitCode
39}
40
George Burgess IVc94f2432020-03-04 17:32:44 -080041// Given the main builder path and the absolute path to our wrapper, returns the path to the
42// 'real' compiler we should invoke.
43func calculateAndroidWrapperPath(mainBuilderPath string, absWrapperPath string) string {
44 // FIXME: This combination of using the directory of the symlink but the basename of the
45 // link target is strange but is the logic that old android wrapper uses. Change this to use
46 // directory and basename either from the absWrapperPath or from the builder.path, but don't
47 // mix anymore.
48
49 // We need to be careful here: path.Join Clean()s its result, so `./foo` will get
50 // transformed to `foo`, which isn't good since we're passing this path to exec.
51 basePart := filepath.Base(absWrapperPath) + ".real"
52 if !strings.ContainsRune(mainBuilderPath, filepath.Separator) {
53 return basePart
54 }
55
56 dirPart := filepath.Dir(mainBuilderPath)
57 if cleanResult := filepath.Join(dirPart, basePart); strings.ContainsRune(cleanResult, filepath.Separator) {
58 return cleanResult
59 }
60
61 return "." + string(filepath.Separator) + basePart
62}
63
Tobias Boschf6d9f4f2019-07-09 08:09:01 -070064func callCompilerInternal(env env, cfg *config, inputCmd *command) (exitCode int, err error) {
Tobias Bosch900dbc92019-06-24 09:31:39 -070065 if err := checkUnsupportedFlags(inputCmd); err != nil {
Tobias Boschf6d9f4f2019-07-09 08:09:01 -070066 return 0, err
Tobias Bosch900dbc92019-06-24 09:31:39 -070067 }
Tobias Boschd8684172019-07-08 10:59:14 -070068 mainBuilder, err := newCommandBuilder(env, cfg, inputCmd)
Tobias Boschef8f9692019-06-10 15:50:33 -070069 if err != nil {
Tobias Boschf6d9f4f2019-07-09 08:09:01 -070070 return 0, err
Tobias Boschef8f9692019-06-10 15:50:33 -070071 }
Tobias Bosch58472812019-07-11 04:24:52 -070072 processPrintConfigFlag(mainBuilder)
73 processPrintCmdlineFlag(mainBuilder)
74 env = mainBuilder.env
Tobias Boschf6d9f4f2019-07-09 08:09:01 -070075 var compilerCmd *command
Tobias Boschd8684172019-07-08 10:59:14 -070076 clangSyntax := processClangSyntaxFlag(mainBuilder)
Tobias Bosch8cb363f2019-10-17 07:44:13 -070077 if cfg.isAndroidWrapper {
George Burgess IVc94f2432020-03-04 17:32:44 -080078 mainBuilder.path = calculateAndroidWrapperPath(mainBuilder.path, mainBuilder.absWrapperPath)
Tobias Bosch8cb363f2019-10-17 07:44:13 -070079 switch mainBuilder.target.compilerType {
80 case clangType:
81 mainBuilder.addPreUserArgs(mainBuilder.cfg.clangFlags...)
82 mainBuilder.addPreUserArgs(mainBuilder.cfg.commonFlags...)
Pirama Arumuga Nainarefb75cf2020-10-21 13:57:01 -070083 mainBuilder.addPostUserArgs(mainBuilder.cfg.clangPostFlags...)
Tobias Bosch8cb363f2019-10-17 07:44:13 -070084 if _, err := processGomaCccFlags(mainBuilder); err != nil {
85 return 0, err
86 }
87 compilerCmd = mainBuilder.build()
88 case clangTidyType:
89 compilerCmd = mainBuilder.build()
90 default:
91 return 0, newErrorwithSourceLocf("unsupported compiler: %s", mainBuilder.target.compiler)
92 }
Tobias Boschef8f9692019-06-10 15:50:33 -070093 } else {
George Burgess IVcb465002020-07-20 16:53:39 -070094 cSrcFile, tidyFlags, tidyMode := processClangTidyFlags(mainBuilder)
95 if mainBuilder.target.compilerType == clangType {
96 err := prepareClangCommand(mainBuilder)
Tobias Boschd8684172019-07-08 10:59:14 -070097 if err != nil {
Tobias Boschf6d9f4f2019-07-09 08:09:01 -070098 return 0, err
Tobias Boschd8684172019-07-08 10:59:14 -070099 }
George Burgess IVcb465002020-07-20 16:53:39 -0700100 allowCCache := true
101 if tidyMode != tidyModeNone {
102 allowCCache = false
103 clangCmdWithoutGomaAndCCache := mainBuilder.build()
104 var err error
105 switch tidyMode {
106 case tidyModeTricium:
107 if cfg.triciumNitsDir == "" {
108 return 0, newErrorwithSourceLocf("tricium linting was requested, but no nits directory is configured")
109 }
George Burgess IV0a377f42020-08-05 15:03:36 -0700110 err = runClangTidyForTricium(env, clangCmdWithoutGomaAndCCache, cSrcFile, cfg.triciumNitsDir, tidyFlags, cfg.crashArtifactsDir)
George Burgess IVcb465002020-07-20 16:53:39 -0700111 case tidyModeAll:
112 err = runClangTidy(env, clangCmdWithoutGomaAndCCache, cSrcFile, tidyFlags)
113 default:
114 panic(fmt.Sprintf("Unknown tidy mode: %v", tidyMode))
115 }
116
117 if err != nil {
118 return 0, err
119 }
120 }
121 if err := processGomaCCacheFlags(allowCCache, mainBuilder); err != nil {
122 return 0, err
123 }
124 compilerCmd = mainBuilder.build()
125 } else {
126 if clangSyntax {
127 allowCCache := false
128 clangCmd, err := calcClangCommand(allowCCache, mainBuilder.clone())
129 if err != nil {
130 return 0, err
131 }
132 gccCmd, err := calcGccCommand(mainBuilder)
133 if err != nil {
134 return 0, err
135 }
136 return checkClangSyntax(env, clangCmd, gccCmd)
137 }
138 compilerCmd, err = calcGccCommand(mainBuilder)
Tobias Boschc58f8d52019-09-30 10:37:42 -0700139 if err != nil {
140 return 0, err
141 }
Tobias Boschc58f8d52019-09-30 10:37:42 -0700142 }
Tobias Boschef8f9692019-06-10 15:50:33 -0700143 }
Tobias Bosch9d609302019-07-10 06:16:04 -0700144 rusageLogfileName := getRusageLogFilename(env)
Tobias Bosch9780ea92019-07-11 01:19:42 -0700145 bisectStage := getBisectStage(env)
Pirama Arumuga Nainara87b84f2020-06-09 21:33:44 -0700146 if shouldForceDisableWerror(env, cfg) {
Tobias Bosch9d609302019-07-10 06:16:04 -0700147 if rusageLogfileName != "" {
Ryan Beltran2d837f02020-12-15 23:17:01 +0000148 return 0, newUserErrorf("TOOLCHAIN_RUSAGE_OUTPUT is meaningless with FORCE_DISABLE_WERROR")
Tobias Bosch9d609302019-07-10 06:16:04 -0700149 }
Tobias Bosch9780ea92019-07-11 01:19:42 -0700150 if bisectStage != "" {
151 return 0, newUserErrorf("BISECT_STAGE is meaningless with FORCE_DISABLE_WERROR")
152 }
Pirama Arumuga Nainara87b84f2020-06-09 21:33:44 -0700153 return doubleBuildWithWNoError(env, cfg, compilerCmd)
Tobias Boschf6d9f4f2019-07-09 08:09:01 -0700154 }
Tobias Boschc88ee8a2019-10-01 15:00:52 -0700155 if shouldCompileWithFallback(env) {
156 if rusageLogfileName != "" {
Ryan Beltran2d837f02020-12-15 23:17:01 +0000157 return 0, newUserErrorf("TOOLCHAIN_RUSAGE_OUTPUT is meaningless with FORCE_DISABLE_WERROR")
Tobias Boschc88ee8a2019-10-01 15:00:52 -0700158 }
159 if bisectStage != "" {
160 return 0, newUserErrorf("BISECT_STAGE is meaningless with FORCE_DISABLE_WERROR")
161 }
162 return compileWithFallback(env, cfg, compilerCmd, mainBuilder.absWrapperPath)
163 }
Tobias Bosch9d609302019-07-10 06:16:04 -0700164 if rusageLogfileName != "" {
Tobias Bosch9780ea92019-07-11 01:19:42 -0700165 if bisectStage != "" {
Ryan Beltran2d837f02020-12-15 23:17:01 +0000166 return 0, newUserErrorf("BISECT_STAGE is meaningless with TOOLCHAIN_RUSAGE_OUTPUT")
Tobias Bosch9780ea92019-07-11 01:19:42 -0700167 }
Tobias Bosch9d609302019-07-10 06:16:04 -0700168 return logRusage(env, rusageLogfileName, compilerCmd)
169 }
Tobias Bosch9780ea92019-07-11 01:19:42 -0700170 if bisectStage != "" {
Tobias Bosch820bffa2019-09-30 15:53:52 -0700171 compilerCmd, err = calcBisectCommand(env, cfg, bisectStage, compilerCmd)
172 if err != nil {
173 return 0, err
174 }
Tobias Bosch9780ea92019-07-11 01:19:42 -0700175 }
Tobias Bosch9332d212019-07-10 06:23:57 -0700176 // Note: We return an exit code only if the underlying env is not
177 // really doing an exec, e.g. commandRecordingEnv.
178 return wrapSubprocessErrorWithSourceLoc(compilerCmd, env.exec(compilerCmd))
Tobias Boschd8684172019-07-08 10:59:14 -0700179}
180
Manoj Gupta28979262020-03-13 11:05:26 -0700181func prepareClangCommand(builder *commandBuilder) (err error) {
Tobias Bosch8cb363f2019-10-17 07:44:13 -0700182 if !builder.cfg.isHostWrapper {
Manoj Gupta28979262020-03-13 11:05:26 -0700183 processSysrootFlag(builder)
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700184 }
Tobias Boschd8684172019-07-08 10:59:14 -0700185 builder.addPreUserArgs(builder.cfg.clangFlags...)
George Burgess IV1713d252020-08-07 19:17:52 -0700186 if builder.cfg.crashArtifactsDir != "" {
187 builder.addPreUserArgs("-fcrash-diagnostics-dir=" + builder.cfg.crashArtifactsDir)
188 }
Caroline Tice8ac33e02019-10-28 09:48:18 -0700189 builder.addPostUserArgs(builder.cfg.clangPostFlags...)
Tobias Boschd8684172019-07-08 10:59:14 -0700190 calcCommonPreUserArgs(builder)
Manoj Gupta28979262020-03-13 11:05:26 -0700191 return processClangFlags(builder)
Tobias Bosch198a3c92019-07-17 04:22:34 -0700192}
193
194func calcClangCommand(allowCCache bool, builder *commandBuilder) (*command, error) {
Manoj Gupta28979262020-03-13 11:05:26 -0700195 err := prepareClangCommand(builder)
Tobias Bosch198a3c92019-07-17 04:22:34 -0700196 if err != nil {
Tobias Boschd8684172019-07-08 10:59:14 -0700197 return nil, err
198 }
Manoj Gupta28979262020-03-13 11:05:26 -0700199 if err := processGomaCCacheFlags(allowCCache, builder); err != nil {
Tobias Boschc58f8d52019-09-30 10:37:42 -0700200 return nil, err
201 }
Tobias Boschd8684172019-07-08 10:59:14 -0700202 return builder.build(), nil
203}
204
Tobias Boschc58f8d52019-09-30 10:37:42 -0700205func calcGccCommand(builder *commandBuilder) (*command, error) {
Tobias Boschb27c8f22019-07-19 06:53:07 -0700206 if !builder.cfg.isHostWrapper {
Manoj Gupta28979262020-03-13 11:05:26 -0700207 processSysrootFlag(builder)
Tobias Boschb27c8f22019-07-19 06:53:07 -0700208 }
Tobias Boschd8684172019-07-08 10:59:14 -0700209 builder.addPreUserArgs(builder.cfg.gccFlags...)
Tobias Boschb27c8f22019-07-19 06:53:07 -0700210 if !builder.cfg.isHostWrapper {
211 calcCommonPreUserArgs(builder)
212 }
Tobias Boschd8684172019-07-08 10:59:14 -0700213 processGccFlags(builder)
Tobias Boschb27c8f22019-07-19 06:53:07 -0700214 if !builder.cfg.isHostWrapper {
215 allowCCache := true
Manoj Gupta28979262020-03-13 11:05:26 -0700216 if err := processGomaCCacheFlags(allowCCache, builder); err != nil {
Tobias Boschc58f8d52019-09-30 10:37:42 -0700217 return nil, err
218 }
Tobias Boschb27c8f22019-07-19 06:53:07 -0700219 }
Tobias Boschc58f8d52019-09-30 10:37:42 -0700220 return builder.build(), nil
Tobias Boschd8684172019-07-08 10:59:14 -0700221}
222
223func calcCommonPreUserArgs(builder *commandBuilder) {
224 builder.addPreUserArgs(builder.cfg.commonFlags...)
Tobias Bosch8cb363f2019-10-17 07:44:13 -0700225 if !builder.cfg.isHostWrapper {
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700226 processPieFlags(builder)
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700227 processThumbCodeFlags(builder)
Tobias Bosch1cd5f842019-08-20 10:05:33 -0700228 processStackProtectorFlags(builder)
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700229 processX86Flags(builder)
230 }
Tobias Bosch8cb363f2019-10-17 07:44:13 -0700231 processSanitizerFlags(builder)
Tobias Boschd8684172019-07-08 10:59:14 -0700232}
233
Manoj Gupta28979262020-03-13 11:05:26 -0700234func processGomaCCacheFlags(allowCCache bool, builder *commandBuilder) (err error) {
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700235 gomaccUsed := false
236 if !builder.cfg.isHostWrapper {
Tobias Boschc58f8d52019-09-30 10:37:42 -0700237 gomaccUsed, err = processGomaCccFlags(builder)
238 if err != nil {
239 return err
240 }
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700241 }
Tobias Bosch198a3c92019-07-17 04:22:34 -0700242 if !gomaccUsed && allowCCache {
Manoj Gupta28979262020-03-13 11:05:26 -0700243 processCCacheFlag(builder)
Tobias Boschef8f9692019-06-10 15:50:33 -0700244 }
Tobias Boschc58f8d52019-09-30 10:37:42 -0700245 return nil
Tobias Boschef8f9692019-06-10 15:50:33 -0700246}
247
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700248func getAbsWrapperPath(env env, wrapperCmd *command) (string, error) {
Tobias Bosch58472812019-07-11 04:24:52 -0700249 wrapperPath := getAbsCmdPath(env, wrapperCmd)
Tobias Boschef8f9692019-06-10 15:50:33 -0700250 evaledCmdPath, err := filepath.EvalSymlinks(wrapperPath)
251 if err != nil {
Tobias Bosch900dbc92019-06-24 09:31:39 -0700252 return "", wrapErrorwithSourceLocf(err, "failed to evaluate symlinks for %s", wrapperPath)
Tobias Boschef8f9692019-06-10 15:50:33 -0700253 }
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700254 return evaledCmdPath, nil
Tobias Boschef8f9692019-06-10 15:50:33 -0700255}
256
Tobias Bosch900dbc92019-06-24 09:31:39 -0700257func printCompilerError(writer io.Writer, compilerErr error) {
258 if _, ok := compilerErr.(userError); ok {
259 fmt.Fprintf(writer, "%s\n", compilerErr)
260 } else {
George Burgess IV2efe72e2020-06-18 20:37:28 -0700261 emailAccount := "chromeos-toolchain"
262 if isAndroidConfig() {
263 emailAccount = "android-llvm"
264 }
Tobias Bosch900dbc92019-06-24 09:31:39 -0700265 fmt.Fprintf(writer,
George Burgess IV2efe72e2020-06-18 20:37:28 -0700266 "Internal error. Please report to %s@google.com.\n%s\n",
267 emailAccount, compilerErr)
Tobias Boschef8f9692019-06-10 15:50:33 -0700268 }
Tobias Boschef8f9692019-06-10 15:50:33 -0700269}
Tobias Bosch6f59a662019-08-20 15:37:11 -0700270
George Burgess IV26caa2f2020-02-28 14:36:01 -0800271func needStdinTee(inputCmd *command) bool {
Tobias Bosch6f59a662019-08-20 15:37:11 -0700272 lastArg := ""
273 for _, arg := range inputCmd.Args {
274 if arg == "-" && lastArg != "-o" {
George Burgess IV26caa2f2020-02-28 14:36:01 -0800275 return true
Tobias Bosch6f59a662019-08-20 15:37:11 -0700276 }
277 lastArg = arg
278 }
George Burgess IV26caa2f2020-02-28 14:36:01 -0800279 return false
280}
281
282func prebufferStdinIfNeeded(env env, inputCmd *command) (getStdin func() io.Reader, err error) {
283 // We pre-buffer the entirety of stdin, since the compiler may exit mid-invocation with an
284 // error, which may leave stdin partially read.
285 if !needStdinTee(inputCmd) {
286 // This won't produce deterministic input to the compiler, but stdin shouldn't
287 // matter in this case, so...
288 return env.stdin, nil
289 }
290
291 stdinBuffer := &bytes.Buffer{}
292 if _, err := stdinBuffer.ReadFrom(env.stdin()); err != nil {
293 return nil, wrapErrorwithSourceLocf(err, "prebuffering stdin")
294 }
295
296 return func() io.Reader { return bytes.NewReader(stdinBuffer.Bytes()) }, nil
Tobias Bosch6f59a662019-08-20 15:37:11 -0700297}