1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
#include "shuttle.h"
#include "probe.h"
#include <library/cpp/testing/unittest/registar.h>
#include <util/generic/vector.h>
#include <util/system/thread.h>
#include <atomic>
using namespace NLWTrace;
class TMockShuttle: public IShuttle
{
public:
TMockShuttle(ui64 traceIdx, ui64 spanId)
: IShuttle(traceIdx, spanId)
{}
protected:
bool DoAddProbe(TProbe*, const TParams&, ui64) override
{
return true;
}
void DoEndOfTrack() override
{}
void DoDrop() override
{}
void DoSerialize(TShuttleTrace&) override
{}
bool DoFork(TShuttlePtr&) override
{
return true;
}
bool DoJoin(const TShuttlePtr&) override
{
return true;
}
};
Y_UNIT_TEST_SUITE(TOrbitMultithreadedUsage)
{
// Test HasShuttles() calls while modifying orbit
Y_UNIT_TEST(HasShuttlesAndAddShuttle)
{
TOrbit orbit;
std::atomic<bool> stopFlag{false};
// user branching and atomic counters to increase race conditions
// probability
std::atomic<size_t> hasShuttlesCount{0};
constexpr size_t numShuttles = 100;
// Reader thread: continuously calls HasShuttles()
auto reader = [&]()
{
while (!stopFlag.load()) {
bool result = orbit.HasShuttles();
if (result) {
hasShuttlesCount.fetch_add(1);
}
}
};
// Writer thread: continuously adds shuttles
auto writer = [&]()
{
for (size_t i = 0; i < numShuttles; ++i) {
orbit.AddShuttle(TShuttlePtr(new TMockShuttle(1, i)));
}
};
TVector<THolder<TThread>> threads;
threads.emplace_back(MakeHolder<TThread>(reader));
threads.emplace_back(MakeHolder<TThread>(reader));
threads.emplace_back(MakeHolder<TThread>(writer));
for (auto& t: threads) {
t->Start();
}
// Let writer finish
threads[2]->Join();
// Stop readers
stopFlag.store(true);
threads[0]->Join();
threads[1]->Join();
UNIT_ASSERT_LT(0, hasShuttlesCount.load());
UNIT_ASSERT(orbit.HasShuttles());
}
// Test the race condition from the tsan tests crash: Fork() vs
// HasShuttles()
Y_UNIT_TEST(ForkAndHasShuttles)
{
TOrbit orbit;
constexpr size_t numShuttles = 10;
constexpr size_t numForks = 100;
// Add some shuttles to orbit
for (size_t i = 0; i < numShuttles; ++i) {
orbit.AddShuttle(TShuttlePtr(new TMockShuttle(1, i)));
}
std::atomic<bool> stopFlag{false};
// user branching and atomic counters to increase race conditions
// probability
std::atomic<size_t> forkCount{0};
std::atomic<size_t> checkCount{0};
// Thread 1: Continuously calls Fork()
auto forker = [&]()
{
for (size_t i = 0; i < numForks; ++i) {
TOrbit tempOrbit;
if (orbit.Fork(tempOrbit)) {
forkCount.fetch_add(1);
}
}
};
// Thread 2: Continuously calls HasShuttles()
auto checker = [&]()
{
while (!stopFlag.load()) {
bool result = orbit.HasShuttles();
if (result) {
checkCount.fetch_add(1);
}
}
};
TThread t1(forker);
TThread t2(checker);
t1.Start();
t2.Start();
t1.Join();
stopFlag.store(true);
t2.Join();
UNIT_ASSERT_EQUAL(numForks, forkCount.load());
UNIT_ASSERT_LT(0, checkCount.load());
UNIT_ASSERT(orbit.HasShuttles());
}
// Test the Serialize() race condition
Y_UNIT_TEST(SerializeAndHasShuttles)
{
TOrbit orbit;
constexpr size_t numShuttles = 10;
constexpr size_t numIterations = 100;
constexpr size_t shuttlesPerIteration = 2;
// Add shuttles
for (size_t i = 0; i < numShuttles; ++i) {
auto shuttle = new TMockShuttle(1, i);
orbit.AddShuttle(TShuttlePtr(shuttle));
}
std::atomic<bool> stopFlag{false};
// user branching and atomic counters to increase race conditions
// probability
std::atomic<size_t> serializeCount{0};
std::atomic<size_t> checkCount{0};
// Thread 1: Serialize (modifies shuttle chain via Drop/Detach/Swap)
auto serializer = [&]()
{
for (size_t i = 0; i < numIterations; ++i) {
TShuttleTrace trace;
orbit.Serialize(1, trace);
serializeCount.fetch_add(1);
// Re-add shuttles for next iteration
for (size_t j = 0; j < shuttlesPerIteration; ++j) {
auto shuttle = new TMockShuttle(1, i * numIterations + j);
orbit.AddShuttle(TShuttlePtr(shuttle));
}
}
};
// Thread 2: Check HasShuttles
auto checker = [&]()
{
while (!stopFlag.load()) {
bool hasShuttles = orbit.HasShuttles();
if (hasShuttles) {
checkCount.fetch_add(1);
}
}
};
TThread t1(serializer);
TThread t2(checker);
t1.Start();
t2.Start();
t1.Join();
stopFlag.store(true);
t2.Join();
UNIT_ASSERT(orbit.HasShuttles());
}
// Stress test: Many threads doing many operations
Y_UNIT_TEST(StressTestMultipleOperations)
{
TOrbit orbit;
// user branching and atomic counters to increase race conditions
// probability
std::atomic<size_t> totalOperations{0};
std::atomic<size_t> addCount{0};
std::atomic<size_t> checkCount{0};
std::atomic<size_t> serializeCount{0};
const size_t numThreads = 8;
const size_t operationsPerThread = 1000;
auto worker = [&](size_t threadId)
{
for (size_t i = 0; i < operationsPerThread; ++i) {
// Mix of operations based on iteration
if (i % 5 == 0) {
auto shuttle = new TMockShuttle(threadId, i);
orbit.AddShuttle(TShuttlePtr(shuttle));
addCount.fetch_add(1);
} else if (i % 5 == 1) {
bool hasShuttles = orbit.HasShuttles();
if (hasShuttles) {
checkCount.fetch_add(1);
}
} else if (i % 5 == 2) {
TOrbit childOrbit;
orbit.Fork(childOrbit);
} else if (i % 5 == 3) {
TShuttleTrace trace;
orbit.Serialize(threadId, trace);
serializeCount.fetch_add(1);
} else {
bool hasShuttle = orbit.HasShuttle(threadId);
if (hasShuttle) {
checkCount.fetch_add(1);
}
}
totalOperations.fetch_add(1);
}
};
TVector<THolder<TThread>> threads;
for (size_t i = 0; i < numThreads; ++i) {
threads.emplace_back(
MakeHolder<TThread>([&worker, i]() { worker(i); }));
}
for (auto& t: threads) {
t->Start();
}
for (auto& t: threads) {
t->Join();
}
UNIT_ASSERT_EQUAL(
numThreads * operationsPerThread,
totalOperations.load());
}
}
|