Retro68/gcc/libsanitizer/ubsan/ubsan_flags.cc

85 lines
2.2 KiB
C++
Raw Normal View History

2015-08-28 15:33:40 +00:00
//===-- ubsan_flags.cc ----------------------------------------------------===//
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Runtime flags for UndefinedBehaviorSanitizer.
//
//===----------------------------------------------------------------------===//
2017-04-10 11:32:00 +00:00
#include "ubsan_platform.h"
#if CAN_SANITIZE_UB
2015-08-28 15:33:40 +00:00
#include "ubsan_flags.h"
#include "sanitizer_common/sanitizer_common.h"
#include "sanitizer_common/sanitizer_flags.h"
2017-04-10 11:32:00 +00:00
#include "sanitizer_common/sanitizer_flag_parser.h"
2015-08-28 15:33:40 +00:00
2019-06-02 15:48:37 +00:00
#include <stdlib.h>
2015-08-28 15:33:40 +00:00
namespace __ubsan {
2017-04-10 11:32:00 +00:00
const char *MaybeCallUbsanDefaultOptions() {
2015-08-28 15:33:40 +00:00
return (&__ubsan_default_options) ? __ubsan_default_options() : "";
}
2019-06-02 15:48:37 +00:00
static const char *GetFlag(const char *flag) {
// We cannot call getenv() from inside a preinit array initializer
if (SANITIZER_CAN_USE_PREINIT_ARRAY) {
return GetEnv(flag);
} else {
return getenv(flag);
}
}
2015-08-28 15:33:40 +00:00
Flags ubsan_flags;
2017-04-10 11:32:00 +00:00
void Flags::SetDefaults() {
#define UBSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
#include "ubsan_flags.inc"
#undef UBSAN_FLAG
}
void RegisterUbsanFlags(FlagParser *parser, Flags *f) {
#define UBSAN_FLAG(Type, Name, DefaultValue, Description) \
RegisterFlag(parser, #Name, Description, &f->Name);
#include "ubsan_flags.inc"
#undef UBSAN_FLAG
2015-08-28 15:33:40 +00:00
}
void InitializeFlags() {
2017-04-10 11:32:00 +00:00
SetCommonFlagsDefaults();
{
CommonFlags cf;
cf.CopyFrom(*common_flags());
cf.print_summary = false;
2019-06-02 15:48:37 +00:00
cf.external_symbolizer_path = GetFlag("UBSAN_SYMBOLIZER_PATH");
2017-04-10 11:32:00 +00:00
OverrideCommonFlags(cf);
}
2015-08-28 15:33:40 +00:00
Flags *f = flags();
2017-04-10 11:32:00 +00:00
f->SetDefaults();
FlagParser parser;
RegisterCommonFlags(&parser);
RegisterUbsanFlags(&parser, f);
2015-08-28 15:33:40 +00:00
// Override from user-specified string.
2017-04-10 11:32:00 +00:00
parser.ParseString(MaybeCallUbsanDefaultOptions());
2015-08-28 15:33:40 +00:00
// Override from environment variable.
2019-06-02 15:48:37 +00:00
parser.ParseString(GetFlag("UBSAN_OPTIONS"));
InitializeCommonFlags();
2017-04-10 11:32:00 +00:00
if (Verbosity()) ReportUnrecognizedFlags();
if (common_flags()->help) parser.PrintFlagDescriptions();
2015-08-28 15:33:40 +00:00
}
} // namespace __ubsan
2018-12-28 15:30:48 +00:00
SANITIZER_INTERFACE_WEAK_DEF(const char *, __ubsan_default_options, void) {
return "";
}
2017-04-10 11:32:00 +00:00
#endif // CAN_SANITIZE_UB