Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 1 | //===--- SanitizerArgs.cpp - Arguments for sanitizer tools ---------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Alexey Samsonov | 609213f9 | 2013-08-19 09:14:21 +0000 | [diff] [blame] | 9 | #include "clang/Driver/SanitizerArgs.h" |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 10 | #include "clang/Driver/Driver.h" |
| 11 | #include "clang/Driver/DriverDiagnostic.h" |
| 12 | #include "clang/Driver/Options.h" |
| 13 | #include "clang/Driver/ToolChain.h" |
Evgeniy Stepanov | 2bfcaab | 2014-03-20 14:58:36 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/StringExtras.h" |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/StringSwitch.h" |
| 16 | #include "llvm/Support/FileSystem.h" |
| 17 | #include "llvm/Support/Path.h" |
Alexey Samsonov | b7dd329 | 2014-07-09 19:40:08 +0000 | [diff] [blame] | 18 | #include "llvm/Support/SpecialCaseList.h" |
Ahmed Charles | dfca6f9 | 2014-03-09 11:36:40 +0000 | [diff] [blame] | 19 | #include <memory> |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 20 | |
| 21 | using namespace clang::driver; |
| 22 | using namespace llvm::opt; |
| 23 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 24 | namespace { |
| 25 | /// Assign ordinals to possible values of -fsanitize= flag. |
| 26 | /// We use the ordinal values as bit positions within \c SanitizeKind. |
| 27 | enum SanitizeOrdinal { |
| 28 | #define SANITIZER(NAME, ID) SO_##ID, |
| 29 | #define SANITIZER_GROUP(NAME, ID, ALIAS) SO_##ID##Group, |
| 30 | #include "clang/Basic/Sanitizers.def" |
| 31 | SO_Count |
| 32 | }; |
| 33 | |
| 34 | /// Represents a set of sanitizer kinds. It is also used to define: |
| 35 | /// 1) set of sanitizers each sanitizer group expands into. |
| 36 | /// 2) set of sanitizers sharing a specific property (e.g. |
| 37 | /// all sanitizers with zero-base shadow). |
| 38 | enum SanitizeKind { |
| 39 | #define SANITIZER(NAME, ID) ID = 1 << SO_##ID, |
| 40 | #define SANITIZER_GROUP(NAME, ID, ALIAS) \ |
| 41 | ID = ALIAS, ID##Group = 1 << SO_##ID##Group, |
| 42 | #include "clang/Basic/Sanitizers.def" |
| 43 | NeedsUbsanRt = Undefined | Integer, |
| 44 | NotAllowedWithTrap = Vptr, |
Dmitry Vyukov | 43419a7 | 2014-11-21 12:19:01 +0000 | [diff] [blame] | 45 | RequiresPIE = Memory | DataFlow, |
Kostya Serebryany | 2d88f3d | 2015-01-06 01:02:48 +0000 | [diff] [blame] | 46 | NeedsUnwindTables = Address | Thread | Memory | DataFlow, |
Alexey Samsonov | 8845952 | 2015-01-12 22:39:12 +0000 | [diff] [blame] | 47 | SupportsCoverage = Address | Memory | Leak | Undefined | Integer, |
| 48 | RecoverableByDefault = Undefined | Integer, |
| 49 | Unrecoverable = Address | Unreachable | Return, |
| 50 | LegacyFsanitizeRecoverMask = Undefined | Integer |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 51 | }; |
| 52 | } |
| 53 | |
| 54 | /// Returns true if set of \p Sanitizers contain at least one sanitizer from |
| 55 | /// \p Kinds. |
| 56 | static bool hasOneOf(const clang::SanitizerSet &Sanitizers, unsigned Kinds) { |
| 57 | #define SANITIZER(NAME, ID) \ |
| 58 | if (Sanitizers.has(clang::SanitizerKind::ID) && (Kinds & ID)) \ |
| 59 | return true; |
| 60 | #include "clang/Basic/Sanitizers.def" |
| 61 | return false; |
| 62 | } |
| 63 | |
| 64 | /// Adds all sanitizers from \p Kinds to \p Sanitizers. |
| 65 | static void addAllOf(clang::SanitizerSet &Sanitizers, unsigned Kinds) { |
| 66 | #define SANITIZER(NAME, ID) \ |
| 67 | if (Kinds & ID) \ |
| 68 | Sanitizers.set(clang::SanitizerKind::ID, true); |
| 69 | #include "clang/Basic/Sanitizers.def" |
| 70 | } |
| 71 | |
| 72 | static unsigned toSanitizeKind(clang::SanitizerKind K) { |
| 73 | #define SANITIZER(NAME, ID) \ |
| 74 | if (K == clang::SanitizerKind::ID) \ |
| 75 | return ID; |
| 76 | #include "clang/Basic/Sanitizers.def" |
| 77 | llvm_unreachable("Invalid SanitizerKind!"); |
| 78 | } |
| 79 | |
| 80 | /// Parse a single value from a -fsanitize= or -fno-sanitize= value list. |
| 81 | /// Returns a member of the \c SanitizeKind enumeration, or \c 0 |
| 82 | /// if \p Value is not known. |
| 83 | static unsigned parseValue(const char *Value); |
| 84 | |
| 85 | /// Parse a -fsanitize= or -fno-sanitize= argument's values, diagnosing any |
| 86 | /// invalid components. Returns OR of members of \c SanitizeKind enumeration. |
| 87 | static unsigned parseArgValues(const Driver &D, const llvm::opt::Arg *A, |
| 88 | bool DiagnoseErrors); |
| 89 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 90 | /// Produce an argument string from ArgList \p Args, which shows how it |
| 91 | /// provides some sanitizer kind from \p Mask. For example, the argument list |
| 92 | /// "-fsanitize=thread,vptr -fsanitize=address" with mask \c NeedsUbsanRt |
| 93 | /// would produce "-fsanitize=vptr". |
| 94 | static std::string lastArgumentForMask(const Driver &D, |
| 95 | const llvm::opt::ArgList &Args, |
| 96 | unsigned Mask); |
| 97 | |
| 98 | static std::string lastArgumentForKind(const Driver &D, |
| 99 | const llvm::opt::ArgList &Args, |
| 100 | clang::SanitizerKind K) { |
| 101 | return lastArgumentForMask(D, Args, toSanitizeKind(K)); |
| 102 | } |
| 103 | |
| 104 | /// Produce an argument string from argument \p A, which shows how it provides |
| 105 | /// a value in \p Mask. For instance, the argument |
| 106 | /// "-fsanitize=address,alignment" with mask \c NeedsUbsanRt would produce |
| 107 | /// "-fsanitize=alignment". |
| 108 | static std::string describeSanitizeArg(const llvm::opt::Arg *A, unsigned Mask); |
| 109 | |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 110 | /// Produce a string containing comma-separated names of sanitizers in \p |
| 111 | /// Sanitizers set. |
| 112 | static std::string toString(const clang::SanitizerSet &Sanitizers); |
| 113 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 114 | /// For each sanitizer group bit set in \p Kinds, set the bits for sanitizers |
| 115 | /// this group enables. |
| 116 | static unsigned expandGroups(unsigned Kinds); |
| 117 | |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 118 | static unsigned getToolchainUnsupportedKinds(const ToolChain &TC) { |
| 119 | bool IsFreeBSD = TC.getTriple().getOS() == llvm::Triple::FreeBSD; |
| 120 | bool IsLinux = TC.getTriple().getOS() == llvm::Triple::Linux; |
| 121 | bool IsX86 = TC.getTriple().getArch() == llvm::Triple::x86; |
| 122 | bool IsX86_64 = TC.getTriple().getArch() == llvm::Triple::x86_64; |
Mohit K. Bhakkad | f4c47f6 | 2015-01-22 07:21:22 +0000 | [diff] [blame^] | 123 | bool IsMIPS64 = TC.getTriple().getArch() == llvm::Triple::mips64 || |
| 124 | TC.getTriple().getArch() == llvm::Triple::mips64el; |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 125 | |
| 126 | unsigned Unsupported = 0; |
Mohit K. Bhakkad | f4c47f6 | 2015-01-22 07:21:22 +0000 | [diff] [blame^] | 127 | if (!(IsLinux && (IsX86_64 || IsMIPS64))) { |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 128 | Unsupported |= Memory | DataFlow; |
| 129 | } |
| 130 | if (!((IsLinux || IsFreeBSD) && IsX86_64)) { |
| 131 | Unsupported |= Thread; |
| 132 | } |
| 133 | if (!(IsLinux && (IsX86 || IsX86_64))) { |
| 134 | Unsupported |= Function; |
| 135 | } |
| 136 | return Unsupported; |
| 137 | } |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 138 | |
| 139 | bool SanitizerArgs::needsUbsanRt() const { |
| 140 | return !UbsanTrapOnError && hasOneOf(Sanitizers, NeedsUbsanRt); |
| 141 | } |
| 142 | |
Dmitry Vyukov | 43419a7 | 2014-11-21 12:19:01 +0000 | [diff] [blame] | 143 | bool SanitizerArgs::requiresPIE() const { |
| 144 | return AsanZeroBaseShadow || hasOneOf(Sanitizers, RequiresPIE); |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | bool SanitizerArgs::needsUnwindTables() const { |
| 148 | return hasOneOf(Sanitizers, NeedsUnwindTables); |
| 149 | } |
| 150 | |
Alexey Samsonov | bb14f34 | 2013-08-08 11:32:17 +0000 | [diff] [blame] | 151 | void SanitizerArgs::clear() { |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 152 | Sanitizers.clear(); |
Alexey Samsonov | 8845952 | 2015-01-12 22:39:12 +0000 | [diff] [blame] | 153 | RecoverableSanitizers.clear(); |
Alexey Samsonov | bb14f34 | 2013-08-08 11:32:17 +0000 | [diff] [blame] | 154 | BlacklistFile = ""; |
Kostya Serebryany | 75b4f9e | 2014-11-11 22:15:07 +0000 | [diff] [blame] | 155 | SanitizeCoverage = 0; |
Evgeniy Stepanov | 2bfcaab | 2014-03-20 14:58:36 +0000 | [diff] [blame] | 156 | MsanTrackOrigins = 0; |
Kostya Serebryany | aed71a8 | 2014-10-09 17:53:04 +0000 | [diff] [blame] | 157 | AsanFieldPadding = 0; |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 158 | AsanZeroBaseShadow = false; |
Alexey Samsonov | bb14f34 | 2013-08-08 11:32:17 +0000 | [diff] [blame] | 159 | UbsanTrapOnError = false; |
Alexey Samsonov | bdfa6c2 | 2014-04-01 13:31:10 +0000 | [diff] [blame] | 160 | AsanSharedRuntime = false; |
Alexey Samsonov | 90490af | 2014-08-08 22:47:17 +0000 | [diff] [blame] | 161 | LinkCXXRuntimes = false; |
Alexey Samsonov | bb14f34 | 2013-08-08 11:32:17 +0000 | [diff] [blame] | 162 | } |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 163 | |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 164 | SanitizerArgs::SanitizerArgs(const ToolChain &TC, |
| 165 | const llvm::opt::ArgList &Args) { |
Alexey Samsonov | bb14f34 | 2013-08-08 11:32:17 +0000 | [diff] [blame] | 166 | clear(); |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 167 | unsigned AllRemove = 0; // During the loop below, the accumulated set of |
| 168 | // sanitizers disabled by the current sanitizer |
| 169 | // argument or any argument after it. |
| 170 | unsigned DiagnosedKinds = 0; // All Kinds we have diagnosed up to now. |
| 171 | // Used to deduplicate diagnostics. |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 172 | unsigned Kinds = 0; |
| 173 | unsigned NotSupported = getToolchainUnsupportedKinds(TC); |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 174 | const Driver &D = TC.getDriver(); |
| 175 | for (ArgList::const_reverse_iterator I = Args.rbegin(), E = Args.rend(); |
| 176 | I != E; ++I) { |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 177 | const auto *Arg = *I; |
| 178 | if (Arg->getOption().matches(options::OPT_fsanitize_EQ)) { |
| 179 | Arg->claim(); |
| 180 | unsigned Add = parseArgValues(D, Arg, true); |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 181 | |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 182 | // Avoid diagnosing any sanitizer which is disabled later. |
| 183 | Add &= ~AllRemove; |
| 184 | // At this point we have not expanded groups, so any unsupported |
| 185 | // sanitizers in Add are those which have been explicitly enabled. |
| 186 | // Diagnose them. |
| 187 | if (unsigned KindsToDiagnose = Add & NotSupported & ~DiagnosedKinds) { |
| 188 | // Only diagnose the new kinds. |
| 189 | std::string Desc = describeSanitizeArg(*I, KindsToDiagnose); |
| 190 | D.Diag(diag::err_drv_unsupported_opt_for_target) |
| 191 | << Desc << TC.getTriple().str(); |
| 192 | DiagnosedKinds |= KindsToDiagnose; |
| 193 | } |
| 194 | Add &= ~NotSupported; |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 195 | |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 196 | Add = expandGroups(Add); |
| 197 | // Group expansion may have enabled a sanitizer which is disabled later. |
| 198 | Add &= ~AllRemove; |
| 199 | // Silently discard any unsupported sanitizers implicitly enabled through |
| 200 | // group expansion. |
| 201 | Add &= ~NotSupported; |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 202 | |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 203 | Kinds |= Add; |
| 204 | } else if (Arg->getOption().matches(options::OPT_fno_sanitize_EQ)) { |
| 205 | Arg->claim(); |
| 206 | unsigned Remove = parseArgValues(D, Arg, true); |
| 207 | AllRemove |= expandGroups(Remove); |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 208 | } |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 209 | } |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 210 | addAllOf(Sanitizers, Kinds); |
| 211 | |
Alexey Samsonov | 8845952 | 2015-01-12 22:39:12 +0000 | [diff] [blame] | 212 | // Parse -f(no-)?sanitize-recover flags. |
| 213 | unsigned RecoverableKinds = RecoverableByDefault; |
| 214 | unsigned DiagnosedUnrecoverableKinds = 0; |
| 215 | for (const auto *Arg : Args) { |
| 216 | if (Arg->getOption().matches(options::OPT_fsanitize_recover)) { |
| 217 | // FIXME: Add deprecation notice, and then remove this flag. |
| 218 | RecoverableKinds |= expandGroups(LegacyFsanitizeRecoverMask); |
| 219 | Arg->claim(); |
| 220 | } else if (Arg->getOption().matches(options::OPT_fno_sanitize_recover)) { |
| 221 | // FIXME: Add deprecation notice, and then remove this flag. |
| 222 | RecoverableKinds &= ~expandGroups(LegacyFsanitizeRecoverMask); |
| 223 | Arg->claim(); |
| 224 | } else if (Arg->getOption().matches(options::OPT_fsanitize_recover_EQ)) { |
| 225 | unsigned Add = parseArgValues(D, Arg, true); |
| 226 | // Report error if user explicitly tries to recover from unrecoverable |
| 227 | // sanitizer. |
| 228 | if (unsigned KindsToDiagnose = |
| 229 | Add & Unrecoverable & ~DiagnosedUnrecoverableKinds) { |
| 230 | SanitizerSet SetToDiagnose; |
| 231 | addAllOf(SetToDiagnose, KindsToDiagnose); |
| 232 | D.Diag(diag::err_drv_unsupported_option_argument) |
| 233 | << Arg->getOption().getName() << toString(SetToDiagnose); |
| 234 | DiagnosedUnrecoverableKinds |= KindsToDiagnose; |
| 235 | } |
| 236 | RecoverableKinds |= expandGroups(Add); |
| 237 | Arg->claim(); |
| 238 | } else if (Arg->getOption().matches(options::OPT_fno_sanitize_recover_EQ)) { |
| 239 | RecoverableKinds &= ~expandGroups(parseArgValues(D, Arg, true)); |
| 240 | Arg->claim(); |
| 241 | } |
| 242 | } |
| 243 | RecoverableKinds &= Kinds; |
| 244 | RecoverableKinds &= ~Unrecoverable; |
| 245 | addAllOf(RecoverableSanitizers, RecoverableKinds); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 246 | |
| 247 | UbsanTrapOnError = |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 248 | Args.hasFlag(options::OPT_fsanitize_undefined_trap_on_error, |
| 249 | options::OPT_fno_sanitize_undefined_trap_on_error, false); |
| 250 | |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 251 | // Warn about undefined sanitizer options that require runtime support. |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 252 | if (UbsanTrapOnError && hasOneOf(Sanitizers, NotAllowedWithTrap)) { |
| 253 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
| 254 | << lastArgumentForMask(D, Args, NotAllowedWithTrap) |
Alexey Samsonov | cb3f812 | 2014-03-20 10:48:29 +0000 | [diff] [blame] | 255 | << "-fsanitize-undefined-trap-on-error"; |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 258 | // Check for incompatible sanitizers. |
| 259 | bool NeedsAsan = Sanitizers.has(SanitizerKind::Address); |
| 260 | bool NeedsTsan = Sanitizers.has(SanitizerKind::Thread); |
| 261 | bool NeedsMsan = Sanitizers.has(SanitizerKind::Memory); |
| 262 | bool NeedsLsan = Sanitizers.has(SanitizerKind::Leak); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 263 | if (NeedsAsan && NeedsTsan) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 264 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
| 265 | << lastArgumentForKind(D, Args, SanitizerKind::Address) |
| 266 | << lastArgumentForKind(D, Args, SanitizerKind::Thread); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 267 | if (NeedsAsan && NeedsMsan) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 268 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
| 269 | << lastArgumentForKind(D, Args, SanitizerKind::Address) |
| 270 | << lastArgumentForKind(D, Args, SanitizerKind::Memory); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 271 | if (NeedsTsan && NeedsMsan) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 272 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
| 273 | << lastArgumentForKind(D, Args, SanitizerKind::Thread) |
| 274 | << lastArgumentForKind(D, Args, SanitizerKind::Memory); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 275 | if (NeedsLsan && NeedsTsan) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 276 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
| 277 | << lastArgumentForKind(D, Args, SanitizerKind::Leak) |
| 278 | << lastArgumentForKind(D, Args, SanitizerKind::Thread); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 279 | if (NeedsLsan && NeedsMsan) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 280 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
| 281 | << lastArgumentForKind(D, Args, SanitizerKind::Leak) |
| 282 | << lastArgumentForKind(D, Args, SanitizerKind::Memory); |
Alp Toker | f6a24ce | 2013-12-05 16:25:25 +0000 | [diff] [blame] | 283 | // FIXME: Currently -fsanitize=leak is silently ignored in the presence of |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 284 | // -fsanitize=address. Perhaps it should print an error, or perhaps |
| 285 | // -f(-no)sanitize=leak should change whether leak detection is enabled by |
| 286 | // default in ASan? |
| 287 | |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 288 | // Parse -f(no-)sanitize-blacklist options. |
| 289 | if (Arg *BLArg = Args.getLastArg(options::OPT_fsanitize_blacklist, |
| 290 | options::OPT_fno_sanitize_blacklist)) { |
| 291 | if (BLArg->getOption().matches(options::OPT_fsanitize_blacklist)) { |
| 292 | std::string BLPath = BLArg->getValue(); |
Alexey Samsonov | 0c127d7 | 2013-08-19 13:59:22 +0000 | [diff] [blame] | 293 | if (llvm::sys::fs::exists(BLPath)) { |
| 294 | // Validate the blacklist format. |
| 295 | std::string BLError; |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 296 | std::unique_ptr<llvm::SpecialCaseList> SCL( |
Alexey Samsonov | 0c127d7 | 2013-08-19 13:59:22 +0000 | [diff] [blame] | 297 | llvm::SpecialCaseList::create(BLPath, BLError)); |
| 298 | if (!SCL.get()) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 299 | D.Diag(clang::diag::err_drv_malformed_sanitizer_blacklist) << BLError; |
Alexey Samsonov | 0c127d7 | 2013-08-19 13:59:22 +0000 | [diff] [blame] | 300 | else |
| 301 | BlacklistFile = BLPath; |
| 302 | } else { |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 303 | D.Diag(clang::diag::err_drv_no_such_file) << BLPath; |
Alexey Samsonov | 0c127d7 | 2013-08-19 13:59:22 +0000 | [diff] [blame] | 304 | } |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 305 | } |
| 306 | } else { |
| 307 | // If no -fsanitize-blacklist option is specified, try to look up for |
| 308 | // blacklist in the resource directory. |
| 309 | std::string BLPath; |
Alexey Samsonov | 59f34bb | 2014-11-14 00:46:39 +0000 | [diff] [blame] | 310 | if (getDefaultBlacklist(D, BLPath) && llvm::sys::fs::exists(BLPath)) |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 311 | BlacklistFile = BLPath; |
| 312 | } |
| 313 | |
Evgeniy Stepanov | 2bfcaab | 2014-03-20 14:58:36 +0000 | [diff] [blame] | 314 | // Parse -f[no-]sanitize-memory-track-origins[=level] options. |
| 315 | if (NeedsMsan) { |
| 316 | if (Arg *A = |
| 317 | Args.getLastArg(options::OPT_fsanitize_memory_track_origins_EQ, |
| 318 | options::OPT_fsanitize_memory_track_origins, |
| 319 | options::OPT_fno_sanitize_memory_track_origins)) { |
| 320 | if (A->getOption().matches(options::OPT_fsanitize_memory_track_origins)) { |
| 321 | MsanTrackOrigins = 1; |
| 322 | } else if (A->getOption().matches( |
| 323 | options::OPT_fno_sanitize_memory_track_origins)) { |
| 324 | MsanTrackOrigins = 0; |
| 325 | } else { |
| 326 | StringRef S = A->getValue(); |
| 327 | if (S.getAsInteger(0, MsanTrackOrigins) || MsanTrackOrigins < 0 || |
| 328 | MsanTrackOrigins > 2) { |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 329 | D.Diag(clang::diag::err_drv_invalid_value) << A->getAsString(Args) << S; |
Evgeniy Stepanov | 2bfcaab | 2014-03-20 14:58:36 +0000 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | |
Kostya Serebryany | 78df9d0 | 2014-12-17 21:46:33 +0000 | [diff] [blame] | 335 | // Parse -fsanitize-coverage=N. Currently one of asan/msan/lsan is required. |
Kostya Serebryany | 2d88f3d | 2015-01-06 01:02:48 +0000 | [diff] [blame] | 336 | if (hasOneOf(Sanitizers, SupportsCoverage)) { |
Kostya Serebryany | 75b4f9e | 2014-11-11 22:15:07 +0000 | [diff] [blame] | 337 | if (Arg *A = Args.getLastArg(options::OPT_fsanitize_coverage)) { |
| 338 | StringRef S = A->getValue(); |
| 339 | // Legal values are 0..4. |
| 340 | if (S.getAsInteger(0, SanitizeCoverage) || SanitizeCoverage < 0 || |
| 341 | SanitizeCoverage > 4) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 342 | D.Diag(clang::diag::err_drv_invalid_value) << A->getAsString(Args) << S; |
Kostya Serebryany | 75b4f9e | 2014-11-11 22:15:07 +0000 | [diff] [blame] | 343 | } |
| 344 | } |
| 345 | |
Alexey Samsonov | bdfa6c2 | 2014-04-01 13:31:10 +0000 | [diff] [blame] | 346 | if (NeedsAsan) { |
| 347 | AsanSharedRuntime = |
Evgeniy Stepanov | 6f0ae18 | 2014-06-05 11:14:00 +0000 | [diff] [blame] | 348 | Args.hasArg(options::OPT_shared_libasan) || |
| 349 | (TC.getTriple().getEnvironment() == llvm::Triple::Android); |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 350 | AsanZeroBaseShadow = |
Evgeniy Stepanov | d04b861 | 2014-01-16 10:19:31 +0000 | [diff] [blame] | 351 | (TC.getTriple().getEnvironment() == llvm::Triple::Android); |
Kostya Serebryany | aed71a8 | 2014-10-09 17:53:04 +0000 | [diff] [blame] | 352 | if (Arg *A = |
| 353 | Args.getLastArg(options::OPT_fsanitize_address_field_padding)) { |
| 354 | StringRef S = A->getValue(); |
| 355 | // Legal values are 0 and 1, 2, but in future we may add more levels. |
| 356 | if (S.getAsInteger(0, AsanFieldPadding) || AsanFieldPadding < 0 || |
| 357 | AsanFieldPadding > 2) { |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 358 | D.Diag(clang::diag::err_drv_invalid_value) << A->getAsString(Args) << S; |
Kostya Serebryany | aed71a8 | 2014-10-09 17:53:04 +0000 | [diff] [blame] | 359 | } |
| 360 | } |
Ehsan Akhgari | e0db196 | 2014-10-14 23:15:44 +0000 | [diff] [blame] | 361 | |
| 362 | if (Arg *WindowsDebugRTArg = |
| 363 | Args.getLastArg(options::OPT__SLASH_MTd, options::OPT__SLASH_MT, |
| 364 | options::OPT__SLASH_MDd, options::OPT__SLASH_MD, |
| 365 | options::OPT__SLASH_LDd, options::OPT__SLASH_LD)) { |
| 366 | switch (WindowsDebugRTArg->getOption().getID()) { |
| 367 | case options::OPT__SLASH_MTd: |
| 368 | case options::OPT__SLASH_MDd: |
| 369 | case options::OPT__SLASH_LDd: |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 370 | D.Diag(clang::diag::err_drv_argument_not_allowed_with) |
Ehsan Akhgari | e0db196 | 2014-10-14 23:15:44 +0000 | [diff] [blame] | 371 | << WindowsDebugRTArg->getAsString(Args) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 372 | << lastArgumentForKind(D, Args, SanitizerKind::Address); |
| 373 | D.Diag(clang::diag::note_drv_address_sanitizer_debug_runtime); |
Ehsan Akhgari | e0db196 | 2014-10-14 23:15:44 +0000 | [diff] [blame] | 374 | } |
| 375 | } |
Alexey Samsonov | bdfa6c2 | 2014-04-01 13:31:10 +0000 | [diff] [blame] | 376 | } |
Alexey Samsonov | 90490af | 2014-08-08 22:47:17 +0000 | [diff] [blame] | 377 | |
| 378 | // Parse -link-cxx-sanitizer flag. |
| 379 | LinkCXXRuntimes = |
| 380 | Args.hasArg(options::OPT_fsanitize_link_cxx_runtime) || D.CCCIsCXX(); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 383 | static std::string toString(const clang::SanitizerSet &Sanitizers) { |
| 384 | std::string Res; |
| 385 | #define SANITIZER(NAME, ID) \ |
| 386 | if (Sanitizers.has(clang::SanitizerKind::ID)) { \ |
| 387 | if (!Res.empty()) \ |
| 388 | Res += ","; \ |
| 389 | Res += NAME; \ |
| 390 | } |
| 391 | #include "clang/Basic/Sanitizers.def" |
| 392 | return Res; |
| 393 | } |
| 394 | |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 395 | void SanitizerArgs::addArgs(const llvm::opt::ArgList &Args, |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 396 | llvm::opt::ArgStringList &CmdArgs) const { |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 397 | if (Sanitizers.empty()) |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 398 | return; |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 399 | CmdArgs.push_back(Args.MakeArgString("-fsanitize=" + toString(Sanitizers))); |
| 400 | |
Alexey Samsonov | 8845952 | 2015-01-12 22:39:12 +0000 | [diff] [blame] | 401 | if (!RecoverableSanitizers.empty()) |
| 402 | CmdArgs.push_back(Args.MakeArgString("-fsanitize-recover=" + |
| 403 | toString(RecoverableSanitizers))); |
Alexey Samsonov | 1e715a6 | 2014-11-16 20:53:53 +0000 | [diff] [blame] | 404 | |
| 405 | if (UbsanTrapOnError) |
| 406 | CmdArgs.push_back("-fsanitize-undefined-trap-on-error"); |
| 407 | |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 408 | if (!BlacklistFile.empty()) { |
| 409 | SmallString<64> BlacklistOpt("-fsanitize-blacklist="); |
| 410 | BlacklistOpt += BlacklistFile; |
| 411 | CmdArgs.push_back(Args.MakeArgString(BlacklistOpt)); |
| 412 | } |
| 413 | |
| 414 | if (MsanTrackOrigins) |
Evgeniy Stepanov | 2bfcaab | 2014-03-20 14:58:36 +0000 | [diff] [blame] | 415 | CmdArgs.push_back(Args.MakeArgString("-fsanitize-memory-track-origins=" + |
| 416 | llvm::utostr(MsanTrackOrigins))); |
Kostya Serebryany | aed71a8 | 2014-10-09 17:53:04 +0000 | [diff] [blame] | 417 | if (AsanFieldPadding) |
| 418 | CmdArgs.push_back(Args.MakeArgString("-fsanitize-address-field-padding=" + |
| 419 | llvm::utostr(AsanFieldPadding))); |
Kostya Serebryany | 75b4f9e | 2014-11-11 22:15:07 +0000 | [diff] [blame] | 420 | if (SanitizeCoverage) |
| 421 | CmdArgs.push_back(Args.MakeArgString("-fsanitize-coverage=" + |
| 422 | llvm::utostr(SanitizeCoverage))); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 423 | // Workaround for PR16386. |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 424 | if (Sanitizers.has(SanitizerKind::Memory)) |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 425 | CmdArgs.push_back(Args.MakeArgString("-fno-assume-sane-operator-new")); |
| 426 | } |
| 427 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 428 | bool SanitizerArgs::getDefaultBlacklist(const Driver &D, std::string &BLPath) { |
| 429 | const char *BlacklistFile = nullptr; |
| 430 | if (Sanitizers.has(SanitizerKind::Address)) |
| 431 | BlacklistFile = "asan_blacklist.txt"; |
| 432 | else if (Sanitizers.has(SanitizerKind::Memory)) |
| 433 | BlacklistFile = "msan_blacklist.txt"; |
| 434 | else if (Sanitizers.has(SanitizerKind::Thread)) |
| 435 | BlacklistFile = "tsan_blacklist.txt"; |
| 436 | else if (Sanitizers.has(SanitizerKind::DataFlow)) |
| 437 | BlacklistFile = "dfsan_abilist.txt"; |
| 438 | |
| 439 | if (BlacklistFile) { |
| 440 | SmallString<64> Path(D.ResourceDir); |
| 441 | llvm::sys::path::append(Path, BlacklistFile); |
| 442 | BLPath = Path.str(); |
| 443 | return true; |
| 444 | } |
| 445 | return false; |
| 446 | } |
| 447 | |
| 448 | unsigned parseValue(const char *Value) { |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 449 | unsigned ParsedKind = llvm::StringSwitch<SanitizeKind>(Value) |
| 450 | #define SANITIZER(NAME, ID) .Case(NAME, ID) |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 451 | #define SANITIZER_GROUP(NAME, ID, ALIAS) .Case(NAME, ID##Group) |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 452 | #include "clang/Basic/Sanitizers.def" |
| 453 | .Default(SanitizeKind()); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 454 | return ParsedKind; |
| 455 | } |
| 456 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 457 | unsigned expandGroups(unsigned Kinds) { |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 458 | #define SANITIZER(NAME, ID) |
| 459 | #define SANITIZER_GROUP(NAME, ID, ALIAS) if (Kinds & ID##Group) Kinds |= ID; |
| 460 | #include "clang/Basic/Sanitizers.def" |
| 461 | return Kinds; |
| 462 | } |
| 463 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 464 | unsigned parseArgValues(const Driver &D, const llvm::opt::Arg *A, |
| 465 | bool DiagnoseErrors) { |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 466 | assert((A->getOption().matches(options::OPT_fsanitize_EQ) || |
Alexey Samsonov | 8845952 | 2015-01-12 22:39:12 +0000 | [diff] [blame] | 467 | A->getOption().matches(options::OPT_fno_sanitize_EQ) || |
| 468 | A->getOption().matches(options::OPT_fsanitize_recover_EQ) || |
| 469 | A->getOption().matches(options::OPT_fno_sanitize_recover_EQ)) && |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 470 | "Invalid argument in parseArgValues!"); |
Alexey Samsonov | abd5bea | 2014-12-19 18:41:43 +0000 | [diff] [blame] | 471 | unsigned Kinds = 0; |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 472 | for (unsigned I = 0, N = A->getNumValues(); I != N; ++I) { |
Alexey Samsonov | abd5bea | 2014-12-19 18:41:43 +0000 | [diff] [blame] | 473 | const char *Value = A->getValue(I); |
| 474 | unsigned Kind; |
| 475 | // Special case: don't accept -fsanitize=all. |
| 476 | if (A->getOption().matches(options::OPT_fsanitize_EQ) && |
| 477 | 0 == strcmp("all", Value)) |
| 478 | Kind = 0; |
| 479 | else |
| 480 | Kind = parseValue(Value); |
| 481 | |
| 482 | if (Kind) |
| 483 | Kinds |= Kind; |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 484 | else if (DiagnoseErrors) |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 485 | D.Diag(clang::diag::err_drv_unsupported_option_argument) |
Alexey Samsonov | abd5bea | 2014-12-19 18:41:43 +0000 | [diff] [blame] | 486 | << A->getOption().getName() << Value; |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 487 | } |
Alexey Samsonov | abd5bea | 2014-12-19 18:41:43 +0000 | [diff] [blame] | 488 | return Kinds; |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 491 | std::string lastArgumentForMask(const Driver &D, const llvm::opt::ArgList &Args, |
| 492 | unsigned Mask) { |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 493 | for (llvm::opt::ArgList::const_reverse_iterator I = Args.rbegin(), |
| 494 | E = Args.rend(); |
| 495 | I != E; ++I) { |
Alexey Samsonov | 799f793 | 2014-12-19 02:35:16 +0000 | [diff] [blame] | 496 | const auto *Arg = *I; |
| 497 | if (Arg->getOption().matches(options::OPT_fsanitize_EQ)) { |
| 498 | unsigned AddKinds = expandGroups(parseArgValues(D, Arg, false)); |
| 499 | if (AddKinds & Mask) |
| 500 | return describeSanitizeArg(Arg, Mask); |
| 501 | } else if (Arg->getOption().matches(options::OPT_fno_sanitize_EQ)) { |
| 502 | unsigned RemoveKinds = expandGroups(parseArgValues(D, Arg, false)); |
| 503 | Mask &= ~RemoveKinds; |
| 504 | } |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 505 | } |
| 506 | llvm_unreachable("arg list didn't provide expected value"); |
| 507 | } |
| 508 | |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 509 | std::string describeSanitizeArg(const llvm::opt::Arg *A, unsigned Mask) { |
| 510 | assert(A->getOption().matches(options::OPT_fsanitize_EQ) |
| 511 | && "Invalid argument in describeSanitizerArg!"); |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 512 | |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 513 | std::string Sanitizers; |
| 514 | for (unsigned I = 0, N = A->getNumValues(); I != N; ++I) { |
Alexey Samsonov | 4c12c6c | 2014-11-14 02:59:20 +0000 | [diff] [blame] | 515 | if (expandGroups(parseValue(A->getValue(I))) & Mask) { |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 516 | if (!Sanitizers.empty()) |
| 517 | Sanitizers += ","; |
| 518 | Sanitizers += A->getValue(I); |
| 519 | } |
| 520 | } |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 521 | |
Peter Collingbourne | 3270164 | 2013-11-01 18:16:25 +0000 | [diff] [blame] | 522 | assert(!Sanitizers.empty() && "arg didn't provide expected value"); |
| 523 | return "-fsanitize=" + Sanitizers; |
Alexey Samsonov | cf05596 | 2013-08-08 10:11:02 +0000 | [diff] [blame] | 524 | } |