blob: da712a3335cb1b0459d6f6fda6e5c4c91548991f [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...)
83 if _, err := processGomaCccFlags(mainBuilder); err != nil {
84 return 0, err
85 }
86 compilerCmd = mainBuilder.build()
87 case clangTidyType:
88 compilerCmd = mainBuilder.build()
89 default:
90 return 0, newErrorwithSourceLocf("unsupported compiler: %s", mainBuilder.target.compiler)
91 }
Tobias Boschef8f9692019-06-10 15:50:33 -070092 } else {
George Burgess IVcb465002020-07-20 16:53:39 -070093 cSrcFile, tidyFlags, tidyMode := processClangTidyFlags(mainBuilder)
94 if mainBuilder.target.compilerType == clangType {
95 err := prepareClangCommand(mainBuilder)
Tobias Boschd8684172019-07-08 10:59:14 -070096 if err != nil {
Tobias Boschf6d9f4f2019-07-09 08:09:01 -070097 return 0, err
Tobias Boschd8684172019-07-08 10:59:14 -070098 }
George Burgess IVcb465002020-07-20 16:53:39 -070099 allowCCache := true
100 if tidyMode != tidyModeNone {
101 allowCCache = false
102 clangCmdWithoutGomaAndCCache := mainBuilder.build()
103 var err error
104 switch tidyMode {
105 case tidyModeTricium:
106 if cfg.triciumNitsDir == "" {
107 return 0, newErrorwithSourceLocf("tricium linting was requested, but no nits directory is configured")
108 }
George Burgess IV0a377f42020-08-05 15:03:36 -0700109 err = runClangTidyForTricium(env, clangCmdWithoutGomaAndCCache, cSrcFile, cfg.triciumNitsDir, tidyFlags, cfg.crashArtifactsDir)
George Burgess IVcb465002020-07-20 16:53:39 -0700110 case tidyModeAll:
111 err = runClangTidy(env, clangCmdWithoutGomaAndCCache, cSrcFile, tidyFlags)
112 default:
113 panic(fmt.Sprintf("Unknown tidy mode: %v", tidyMode))
114 }
115
116 if err != nil {
117 return 0, err
118 }
119 }
120 if err := processGomaCCacheFlags(allowCCache, mainBuilder); err != nil {
121 return 0, err
122 }
123 compilerCmd = mainBuilder.build()
124 } else {
125 if clangSyntax {
126 allowCCache := false
127 clangCmd, err := calcClangCommand(allowCCache, mainBuilder.clone())
128 if err != nil {
129 return 0, err
130 }
131 gccCmd, err := calcGccCommand(mainBuilder)
132 if err != nil {
133 return 0, err
134 }
135 return checkClangSyntax(env, clangCmd, gccCmd)
136 }
137 compilerCmd, err = calcGccCommand(mainBuilder)
Tobias Boschc58f8d52019-09-30 10:37:42 -0700138 if err != nil {
139 return 0, err
140 }
Tobias Boschc58f8d52019-09-30 10:37:42 -0700141 }
Tobias Boschef8f9692019-06-10 15:50:33 -0700142 }
Tobias Bosch9d609302019-07-10 06:16:04 -0700143 rusageLogfileName := getRusageLogFilename(env)
Tobias Bosch9780ea92019-07-11 01:19:42 -0700144 bisectStage := getBisectStage(env)
Pirama Arumuga Nainara87b84f2020-06-09 21:33:44 -0700145 if shouldForceDisableWerror(env, cfg) {
Tobias Bosch9d609302019-07-10 06:16:04 -0700146 if rusageLogfileName != "" {
147 return 0, newUserErrorf("GETRUSAGE is meaningless with FORCE_DISABLE_WERROR")
148 }
Tobias Bosch9780ea92019-07-11 01:19:42 -0700149 if bisectStage != "" {
150 return 0, newUserErrorf("BISECT_STAGE is meaningless with FORCE_DISABLE_WERROR")
151 }
Pirama Arumuga Nainara87b84f2020-06-09 21:33:44 -0700152 return doubleBuildWithWNoError(env, cfg, compilerCmd)
Tobias Boschf6d9f4f2019-07-09 08:09:01 -0700153 }
Tobias Boschc88ee8a2019-10-01 15:00:52 -0700154 if shouldCompileWithFallback(env) {
155 if rusageLogfileName != "" {
156 return 0, newUserErrorf("GETRUSAGE is meaningless with FORCE_DISABLE_WERROR")
157 }
158 if bisectStage != "" {
159 return 0, newUserErrorf("BISECT_STAGE is meaningless with FORCE_DISABLE_WERROR")
160 }
161 return compileWithFallback(env, cfg, compilerCmd, mainBuilder.absWrapperPath)
162 }
Tobias Bosch9d609302019-07-10 06:16:04 -0700163 if rusageLogfileName != "" {
Tobias Bosch9780ea92019-07-11 01:19:42 -0700164 if bisectStage != "" {
165 return 0, newUserErrorf("BISECT_STAGE is meaningless with GETRUSAGE")
166 }
Tobias Bosch9d609302019-07-10 06:16:04 -0700167 return logRusage(env, rusageLogfileName, compilerCmd)
168 }
Tobias Bosch9780ea92019-07-11 01:19:42 -0700169 if bisectStage != "" {
Tobias Bosch820bffa2019-09-30 15:53:52 -0700170 compilerCmd, err = calcBisectCommand(env, cfg, bisectStage, compilerCmd)
171 if err != nil {
172 return 0, err
173 }
Tobias Bosch9780ea92019-07-11 01:19:42 -0700174 }
Tobias Bosch9332d212019-07-10 06:23:57 -0700175 // Note: We return an exit code only if the underlying env is not
176 // really doing an exec, e.g. commandRecordingEnv.
177 return wrapSubprocessErrorWithSourceLoc(compilerCmd, env.exec(compilerCmd))
Tobias Boschd8684172019-07-08 10:59:14 -0700178}
179
Manoj Gupta28979262020-03-13 11:05:26 -0700180func prepareClangCommand(builder *commandBuilder) (err error) {
Tobias Bosch8cb363f2019-10-17 07:44:13 -0700181 if !builder.cfg.isHostWrapper {
Manoj Gupta28979262020-03-13 11:05:26 -0700182 processSysrootFlag(builder)
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700183 }
Tobias Boschd8684172019-07-08 10:59:14 -0700184 builder.addPreUserArgs(builder.cfg.clangFlags...)
Caroline Tice8ac33e02019-10-28 09:48:18 -0700185 builder.addPostUserArgs(builder.cfg.clangPostFlags...)
Tobias Boschd8684172019-07-08 10:59:14 -0700186 calcCommonPreUserArgs(builder)
Manoj Gupta28979262020-03-13 11:05:26 -0700187 return processClangFlags(builder)
Tobias Bosch198a3c92019-07-17 04:22:34 -0700188}
189
190func calcClangCommand(allowCCache bool, builder *commandBuilder) (*command, error) {
Manoj Gupta28979262020-03-13 11:05:26 -0700191 err := prepareClangCommand(builder)
Tobias Bosch198a3c92019-07-17 04:22:34 -0700192 if err != nil {
Tobias Boschd8684172019-07-08 10:59:14 -0700193 return nil, err
194 }
Manoj Gupta28979262020-03-13 11:05:26 -0700195 if err := processGomaCCacheFlags(allowCCache, builder); err != nil {
Tobias Boschc58f8d52019-09-30 10:37:42 -0700196 return nil, err
197 }
Tobias Boschd8684172019-07-08 10:59:14 -0700198 return builder.build(), nil
199}
200
Tobias Boschc58f8d52019-09-30 10:37:42 -0700201func calcGccCommand(builder *commandBuilder) (*command, error) {
Tobias Boschb27c8f22019-07-19 06:53:07 -0700202 if !builder.cfg.isHostWrapper {
Manoj Gupta28979262020-03-13 11:05:26 -0700203 processSysrootFlag(builder)
Tobias Boschb27c8f22019-07-19 06:53:07 -0700204 }
Tobias Boschd8684172019-07-08 10:59:14 -0700205 builder.addPreUserArgs(builder.cfg.gccFlags...)
Tobias Boschb27c8f22019-07-19 06:53:07 -0700206 if !builder.cfg.isHostWrapper {
207 calcCommonPreUserArgs(builder)
208 }
Tobias Boschd8684172019-07-08 10:59:14 -0700209 processGccFlags(builder)
Tobias Boschb27c8f22019-07-19 06:53:07 -0700210 if !builder.cfg.isHostWrapper {
211 allowCCache := true
Manoj Gupta28979262020-03-13 11:05:26 -0700212 if err := processGomaCCacheFlags(allowCCache, builder); err != nil {
Tobias Boschc58f8d52019-09-30 10:37:42 -0700213 return nil, err
214 }
Tobias Boschb27c8f22019-07-19 06:53:07 -0700215 }
Tobias Boschc58f8d52019-09-30 10:37:42 -0700216 return builder.build(), nil
Tobias Boschd8684172019-07-08 10:59:14 -0700217}
218
219func calcCommonPreUserArgs(builder *commandBuilder) {
220 builder.addPreUserArgs(builder.cfg.commonFlags...)
Tobias Bosch8cb363f2019-10-17 07:44:13 -0700221 if !builder.cfg.isHostWrapper {
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700222 processPieFlags(builder)
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700223 processThumbCodeFlags(builder)
Tobias Bosch1cd5f842019-08-20 10:05:33 -0700224 processStackProtectorFlags(builder)
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700225 processX86Flags(builder)
226 }
Tobias Bosch8cb363f2019-10-17 07:44:13 -0700227 processSanitizerFlags(builder)
Tobias Boschd8684172019-07-08 10:59:14 -0700228}
229
Manoj Gupta28979262020-03-13 11:05:26 -0700230func processGomaCCacheFlags(allowCCache bool, builder *commandBuilder) (err error) {
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700231 gomaccUsed := false
232 if !builder.cfg.isHostWrapper {
Tobias Boschc58f8d52019-09-30 10:37:42 -0700233 gomaccUsed, err = processGomaCccFlags(builder)
234 if err != nil {
235 return err
236 }
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700237 }
Tobias Bosch198a3c92019-07-17 04:22:34 -0700238 if !gomaccUsed && allowCCache {
Manoj Gupta28979262020-03-13 11:05:26 -0700239 processCCacheFlag(builder)
Tobias Boschef8f9692019-06-10 15:50:33 -0700240 }
Tobias Boschc58f8d52019-09-30 10:37:42 -0700241 return nil
Tobias Boschef8f9692019-06-10 15:50:33 -0700242}
243
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700244func getAbsWrapperPath(env env, wrapperCmd *command) (string, error) {
Tobias Bosch58472812019-07-11 04:24:52 -0700245 wrapperPath := getAbsCmdPath(env, wrapperCmd)
Tobias Boschef8f9692019-06-10 15:50:33 -0700246 evaledCmdPath, err := filepath.EvalSymlinks(wrapperPath)
247 if err != nil {
Tobias Bosch900dbc92019-06-24 09:31:39 -0700248 return "", wrapErrorwithSourceLocf(err, "failed to evaluate symlinks for %s", wrapperPath)
Tobias Boschef8f9692019-06-10 15:50:33 -0700249 }
Tobias Bosch31dec2c2019-07-18 07:34:03 -0700250 return evaledCmdPath, nil
Tobias Boschef8f9692019-06-10 15:50:33 -0700251}
252
Tobias Bosch900dbc92019-06-24 09:31:39 -0700253func printCompilerError(writer io.Writer, compilerErr error) {
254 if _, ok := compilerErr.(userError); ok {
255 fmt.Fprintf(writer, "%s\n", compilerErr)
256 } else {
George Burgess IV2efe72e2020-06-18 20:37:28 -0700257 emailAccount := "chromeos-toolchain"
258 if isAndroidConfig() {
259 emailAccount = "android-llvm"
260 }
Tobias Bosch900dbc92019-06-24 09:31:39 -0700261 fmt.Fprintf(writer,
George Burgess IV2efe72e2020-06-18 20:37:28 -0700262 "Internal error. Please report to %s@google.com.\n%s\n",
263 emailAccount, compilerErr)
Tobias Boschef8f9692019-06-10 15:50:33 -0700264 }
Tobias Boschef8f9692019-06-10 15:50:33 -0700265}
Tobias Bosch6f59a662019-08-20 15:37:11 -0700266
George Burgess IV26caa2f2020-02-28 14:36:01 -0800267func needStdinTee(inputCmd *command) bool {
Tobias Bosch6f59a662019-08-20 15:37:11 -0700268 lastArg := ""
269 for _, arg := range inputCmd.Args {
270 if arg == "-" && lastArg != "-o" {
George Burgess IV26caa2f2020-02-28 14:36:01 -0800271 return true
Tobias Bosch6f59a662019-08-20 15:37:11 -0700272 }
273 lastArg = arg
274 }
George Burgess IV26caa2f2020-02-28 14:36:01 -0800275 return false
276}
277
278func prebufferStdinIfNeeded(env env, inputCmd *command) (getStdin func() io.Reader, err error) {
279 // We pre-buffer the entirety of stdin, since the compiler may exit mid-invocation with an
280 // error, which may leave stdin partially read.
281 if !needStdinTee(inputCmd) {
282 // This won't produce deterministic input to the compiler, but stdin shouldn't
283 // matter in this case, so...
284 return env.stdin, nil
285 }
286
287 stdinBuffer := &bytes.Buffer{}
288 if _, err := stdinBuffer.ReadFrom(env.stdin()); err != nil {
289 return nil, wrapErrorwithSourceLocf(err, "prebuffering stdin")
290 }
291
292 return func() io.Reader { return bytes.NewReader(stdinBuffer.Bytes()) }, nil
Tobias Bosch6f59a662019-08-20 15:37:11 -0700293}