YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/fault_injection.cc
Line
Count
Source (jump to first uncovered line)
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
33
#include "yb/util/fault_injection.h"
34
35
#include <sys/resource.h>
36
#include <sys/time.h>
37
38
#include "yb/gutil/once.h"
39
40
#include "yb/util/debug/leakcheck_disabler.h"
41
#include "yb/util/logging.h"
42
#include "yb/util/monotime.h"
43
#include "yb/util/random.h"
44
#include "yb/util/random_util.h"
45
46
namespace yb {
47
namespace fault_injection {
48
49
namespace {
50
GoogleOnceType g_random_once;
51
Random* g_random;
52
53
11
void InitRandom() {
54
11
  LOG(WARNING) << "FAULT INJECTION ENABLED!";
55
11
  LOG(WARNING) << "THIS SERVER MAY CRASH!";
56
57
11
  debug::ScopedLeakCheckDisabler d;
58
11
  g_random = new Random(GetRandomSeed32());
59
11
  ANNOTATE_BENIGN_RACE_SIZED(g_random, sizeof(Random),
60
11
                             "Racy random numbers are OK");
61
11
}
62
63
} // anonymous namespace
64
65
150
void DoMaybeFault(const char* fault_str, double fraction) {
66
150
  GoogleOnceInit(&g_random_once, InitRandom);
67
150
  if (fraction == 0.0 || PREDICT_TRUE(g_random->NextDoubleFraction() >= fraction)) {
68
139
    return;
69
139
  }
70
71
  // Disable core dumps -- it's not useful to get a core dump when we're purposefully crashing, and
72
  // some tests cause lots of server crashes in a loop. This avoids filling up the disk with useless
73
  // cores.
74
11
  DisableCoreDumps();
75
76
11
  LOG(FATAL) << "Injected fault: " << fault_str;
77
11
}
78
79
0
void DoInjectRandomLatency(double max_ms) {
80
0
  GoogleOnceInit(&g_random_once, InitRandom);
81
0
  SleepFor(MonoDelta::FromMilliseconds(g_random->NextDoubleFraction() * max_ms));
82
0
}
83
84
} // namespace fault_injection
85
86
} // namespace yb