blob: 18b9ea3df9e195faf9f92286723316636dc34070 [file] [log] [blame]
Alexey Samsonovf3be7062012-07-09 13:21:39 +00001//===-- sanitizer_flags.cc ------------------------------------------------===//
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//===----------------------------------------------------------------------===//
9//
10// This file is a part of ThreadSanitizer/AddressSanitizer runtime.
11//
12//===----------------------------------------------------------------------===//
13
14#include "sanitizer_flags.h"
15
16#include "sanitizer_common.h"
17#include "sanitizer_libc.h"
Stephen Hines2d1fdb22014-05-28 23:58:16 -070018#include "sanitizer_list.h"
Stephen Hines86277eb2015-03-23 12:06:32 -070019#include "sanitizer_flag_parser.h"
Alexey Samsonovf3be7062012-07-09 13:21:39 +000020
21namespace __sanitizer {
22
Stephen Hines2d1fdb22014-05-28 23:58:16 -070023CommonFlags common_flags_dont_use;
24
25struct FlagDescription {
26 const char *name;
27 const char *description;
28 FlagDescription *next;
29};
30
31IntrusiveList<FlagDescription> flag_descriptions;
32
Stephen Hines6a211c52014-07-21 00:49:56 -070033// If set, the tool will install its own SEGV signal handler by default.
34#ifndef SANITIZER_NEEDS_SEGV
35# define SANITIZER_NEEDS_SEGV 1
36#endif
37
Stephen Hines86277eb2015-03-23 12:06:32 -070038void CommonFlags::SetDefaults() {
39#define COMMON_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
40#include "sanitizer_flags.inc"
41#undef COMMON_FLAG
Alexey Samsonov55c79472013-11-12 13:59:08 +000042}
43
Stephen Hines86277eb2015-03-23 12:06:32 -070044void CommonFlags::CopyFrom(const CommonFlags &other) {
45 internal_memcpy(this, &other, sizeof(*this));
Sergey Matveeved20ebe2013-05-06 11:27:58 +000046}
47
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080048// Copy the string from "s" to "out", replacing "%b" with the binary basename.
49static void SubstituteBinaryName(const char *s, char *out, uptr out_size) {
50 char *out_end = out + out_size;
51 while (*s && out < out_end - 1) {
52 if (s[0] != '%' || s[1] != 'b') { *out++ = *s++; continue; }
53 const char *base = GetProcessName();
54 CHECK(base);
55 while (*base && out < out_end - 1)
56 *out++ = *base++;
57 s += 2; // skip "%b"
58 }
59 *out = '\0';
60}
61
Stephen Hines86277eb2015-03-23 12:06:32 -070062class FlagHandlerInclude : public FlagHandlerBase {
Stephen Hines86277eb2015-03-23 12:06:32 -070063 FlagParser *parser_;
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080064 bool ignore_missing_;
Stephen Hines86277eb2015-03-23 12:06:32 -070065
66 public:
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080067 explicit FlagHandlerInclude(FlagParser *parser, bool ignore_missing)
68 : parser_(parser), ignore_missing_(ignore_missing) {}
Stephen Hines86277eb2015-03-23 12:06:32 -070069 bool Parse(const char *value) final {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080070 if (internal_strchr(value, '%')) {
71 char *buf = (char *)MmapOrDie(kMaxPathLength, "FlagHandlerInclude");
72 SubstituteBinaryName(value, buf, kMaxPathLength);
73 bool res = parser_->ParseFile(buf, ignore_missing_);
74 UnmapOrDie(buf, kMaxPathLength);
75 return res;
Dmitry Vyukov5d834a82013-03-27 17:59:13 +000076 }
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080077 return parser_->ParseFile(value, ignore_missing_);
Dmitry Vyukov5d834a82013-03-27 17:59:13 +000078 }
Stephen Hines86277eb2015-03-23 12:06:32 -070079};
80
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080081void RegisterIncludeFlags(FlagParser *parser, CommonFlags *cf) {
82 FlagHandlerInclude *fh_include = new (FlagParser::Alloc) // NOLINT
83 FlagHandlerInclude(parser, /*ignore_missing*/ false);
Stephen Hines86277eb2015-03-23 12:06:32 -070084 parser->RegisterHandler("include", fh_include,
85 "read more options from the given file");
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080086 FlagHandlerInclude *fh_include_if_exists = new (FlagParser::Alloc) // NOLINT
87 FlagHandlerInclude(parser, /*ignore_missing*/ true);
88 parser->RegisterHandler(
89 "include_if_exists", fh_include_if_exists,
90 "read more options from the given file (if it exists)");
Alexey Samsonov947fbd12012-08-27 14:04:54 +000091}
92
Stephen Hines86277eb2015-03-23 12:06:32 -070093void RegisterCommonFlags(FlagParser *parser, CommonFlags *cf) {
94#define COMMON_FLAG(Type, Name, DefaultValue, Description) \
95 RegisterFlag(parser, #Name, Description, &cf->Name);
96#include "sanitizer_flags.inc"
97#undef COMMON_FLAG
Alexey Samsonovf3be7062012-07-09 13:21:39 +000098
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080099 RegisterIncludeFlags(parser, cf);
Alexey Samsonovf3be7062012-07-09 13:21:39 +0000100}
101
102} // namespace __sanitizer