-
Notifications
You must be signed in to change notification settings - Fork 116
/
rcu.cc
390 lines (362 loc) · 11.9 KB
/
rcu.cc
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <numa.h>
#include <sched.h>
#include <iostream>
#include <thread>
#include <atomic>
#include "rcu.h"
#include "macros.h"
#include "util.h"
#include "thread.h"
#include "counter.h"
#include "lockguard.h"
using namespace std;
using namespace util;
rcu rcu::s_instance;
static event_counter evt_rcu_deletes("rcu_deletes");
static event_counter evt_rcu_frees("rcu_frees");
static event_counter evt_rcu_local_reaps("rcu_local_reaps");
static event_counter evt_rcu_incomplete_local_reaps("rcu_incomplete_local_reaps");
static event_counter evt_rcu_loop_reaps("rcu_loop_reaps");
static event_counter *evt_allocator_arena_allocations[::allocator::MAX_ARENAS] = {nullptr};
static event_counter *evt_allocator_arena_deallocations[::allocator::MAX_ARENAS] = {nullptr};
static event_counter evt_allocator_large_allocation("allocator_large_allocation");
static event_avg_counter evt_avg_gc_reaper_queue_len("avg_gc_reaper_queue_len");
static event_avg_counter evt_avg_rcu_delete_queue_len("avg_rcu_delete_queue_len");
static event_avg_counter evt_avg_rcu_local_delete_queue_len("avg_rcu_local_delete_queue_len");
static event_avg_counter evt_avg_rcu_sync_try_release("avg_rcu_sync_try_release");
static event_avg_counter evt_avg_time_inbetween_rcu_epochs_usec(
"avg_time_inbetween_rcu_epochs_usec");
static event_avg_counter evt_avg_time_inbetween_allocator_releases_usec(
"avg_time_inbetween_allocator_releases_usec");
#ifdef MEMCHECK_MAGIC
static void
report_error_and_die(
const void *p, size_t alloc_size, const char *msg,
const string &prefix="", unsigned recurse=3, bool first=true)
{
// print the entire allocation block, for debugging reference
static_assert(::allocator::AllocAlignment % 8 == 0, "xx");
const void *pnext = *((const void **) p);
cerr << prefix << "Address " << p << " error found! (next ptr " << pnext << ")" << endl;
if (pnext) {
const ::allocator::pgmetadata *pmd = ::allocator::PointerToPgMetadata(pnext);
if (!pmd) {
cerr << prefix << "Error: could not get pgmetadata for next ptr" << endl;
cerr << prefix << "Allocator managed next ptr? " << ::allocator::ManagesPointer(pnext) << endl;
} else {
cerr << prefix << "Next ptr allocation size: " << pmd->unit_ << endl;
if (((uintptr_t)pnext % pmd->unit_) == 0) {
if (recurse)
report_error_and_die(
pnext, pmd->unit_, "", prefix + " ", recurse - 1, false);
else
cerr << prefix << "recursion stopped" << endl;
} else {
cerr << prefix << "Next ptr not properly aligned" << endl;
if (recurse)
report_error_and_die(
(const void *) slow_round_down((uintptr_t)pnext, (uintptr_t)pmd->unit_),
pmd->unit_, "", prefix + " ", recurse - 1, false);
else
cerr << prefix << "recursion stopped" << endl;
}
}
}
cerr << prefix << "Msg: " << msg << endl;
cerr << prefix << "Allocation size: " << alloc_size << endl;
cerr << prefix << "Ptr aligned properly? " << (((uintptr_t)p % alloc_size) == 0) << endl;
for (const char *buf = (const char *) p;
buf < (const char *) p + alloc_size;
buf += 8) {
cerr << prefix << hexify_buf(buf, 8) << endl;
}
if (first)
ALWAYS_ASSERT(false);
}
static void
check_pointer_or_die(void *p, size_t alloc_size)
{
ALWAYS_ASSERT(p);
if (unlikely(((uintptr_t)p % alloc_size) != 0))
report_error_and_die(p, alloc_size, "pointer not properly aligned");
for (size_t off = sizeof(void **); off < alloc_size; off++)
if (unlikely(
(unsigned char) *((const char *) p + off) !=
(unsigned char) MEMCHECK_MAGIC ) )
report_error_and_die(p, alloc_size, "memory magic not found");
void *pnext = *((void **) p);
if (unlikely(((uintptr_t)pnext % alloc_size) != 0))
report_error_and_die(p, alloc_size, "next pointer not properly aligned");
}
#endif
void *
rcu::sync::alloc(size_t sz)
{
if (pin_cpu_ == -1)
// fallback to regular allocator
return malloc(sz);
auto sizes = ::allocator::ArenaSize(sz);
auto arena = sizes.second;
if (arena >= ::allocator::MAX_ARENAS) {
// fallback to regular allocator
++evt_allocator_large_allocation;
return malloc(sz);
}
ensure_arena(arena);
void *p = arenas_[arena];
INVARIANT(p);
#ifdef MEMCHECK_MAGIC
const size_t alloc_size = (arena + 1) * ::allocator::AllocAlignment;
check_pointer_or_die(p, alloc_size);
#endif
arenas_[arena] = *reinterpret_cast<void **>(p);
evt_allocator_arena_allocations[arena]->inc();
return p;
}
void *
rcu::sync::alloc_static(size_t sz)
{
if (pin_cpu_ == -1)
return malloc(sz);
// round up to hugepagesize
static const size_t hugepgsize = ::allocator::GetHugepageSize();
sz = slow_round_up(sz, hugepgsize);
INVARIANT((sz % hugepgsize) == 0);
return ::allocator::AllocateUnmanaged(pin_cpu_, sz / hugepgsize);
}
void
rcu::sync::dealloc(void *p, size_t sz)
{
if (!::allocator::ManagesPointer(p)) {
::free(p);
return;
}
auto sizes = ::allocator::ArenaSize(sz);
auto arena = sizes.second;
ALWAYS_ASSERT(arena < ::allocator::MAX_ARENAS);
*reinterpret_cast<void **>(p) = arenas_[arena];
#ifdef MEMCHECK_MAGIC
const size_t alloc_size = (arena + 1) * ::allocator::AllocAlignment;
ALWAYS_ASSERT( ((uintptr_t)p % alloc_size) == 0 );
NDB_MEMSET(
(char *) p + sizeof(void **),
MEMCHECK_MAGIC, alloc_size - sizeof(void **));
ALWAYS_ASSERT(*((void **) p) == arenas_[arena]);
check_pointer_or_die(p, alloc_size);
#endif
arenas_[arena] = p;
evt_allocator_arena_deallocations[arena]->inc();
deallocs_[arena]++;
}
bool
rcu::sync::try_release()
{
// XXX: tune
static const size_t threshold = 10000;
// only release if there are > threshold segments to release (over all arenas)
size_t acc = 0;
for (size_t i = 0; i < ::allocator::MAX_ARENAS; i++)
acc += deallocs_[i];
if (acc > threshold) {
do_release();
evt_avg_rcu_sync_try_release.offer(acc);
return true;
}
return false;
}
void
rcu::sync::do_release()
{
#ifdef MEMCHECK_MAGIC
for (size_t i = 0; i < ::allocator::MAX_ARENAS; i++) {
const size_t alloc_size = (i + 1) * ::allocator::AllocAlignment;
void *p = arenas_[i];
while (p) {
check_pointer_or_die(p, alloc_size);
p = *((void **) p);
}
}
#endif
::allocator::ReleaseArenas(&arenas_[0]);
NDB_MEMSET(&arenas_[0], 0, sizeof(arenas_));
NDB_MEMSET(&deallocs_[0], 0, sizeof(deallocs_));
}
void
rcu::sync::do_cleanup()
{
// compute cleaner epoch
const uint64_t clean_tick_exclusive = impl_->cleaning_rcu_tick_exclusive();
if (!clean_tick_exclusive)
return;
const uint64_t clean_tick = clean_tick_exclusive - 1;
INVARIANT(last_reaped_epoch_ <= clean_tick);
INVARIANT(scratch_.empty());
if (last_reaped_epoch_ == clean_tick)
return;
#ifdef ENABLE_EVENT_COUNTERS
const uint64_t now = timer::cur_usec();
if (last_reaped_timestamp_us_ > 0) {
const uint64_t diff = now - last_reaped_timestamp_us_;
evt_avg_time_inbetween_rcu_epochs_usec.offer(diff);
}
last_reaped_timestamp_us_ = now;
#endif
last_reaped_epoch_ = clean_tick;
scratch_.empty_accept_from(queue_, clean_tick);
scratch_.transfer_freelist(queue_);
rcu::px_queue &q = scratch_;
if (q.empty())
return;
scoped_rcu_region guard;
size_t n = 0;
for (auto it = q.begin(); it != q.end(); ++it, ++n) {
try {
it->run(*this);
} catch (...) {
cerr << "rcu::region_end: uncaught exception in free routine" << endl;
}
}
q.clear();
evt_rcu_deletes += n;
evt_avg_rcu_local_delete_queue_len.offer(n);
// try to release memory from allocator slabs back
if (try_release()) {
#ifdef ENABLE_EVENT_COUNTERS
const uint64_t now = timer::cur_usec();
if (last_release_timestamp_us_ > 0) {
const uint64_t diff = now - last_release_timestamp_us_;
evt_avg_time_inbetween_allocator_releases_usec.offer(diff);
}
last_release_timestamp_us_ = now;
#endif
}
}
void
rcu::free_with_fn(void *p, deleter_t fn)
{
sync &s = mysync();
uint64_t cur_tick = 0; // ticker units
const bool is_guarded = ticker::s_instance.is_locally_guarded(cur_tick);
if (!is_guarded)
INVARIANT(false);
INVARIANT(s.depth());
// all threads are either at cur_tick or cur_tick + 1, so we must wait for
// the system to move beyond cur_tick + 1
s.queue_.enqueue(delete_entry(p, fn), to_rcu_ticks(cur_tick + 1));
++evt_rcu_frees;
}
void
rcu::dealloc_rcu(void *p, size_t sz)
{
sync &s = mysync();
uint64_t cur_tick = 0; // ticker units
const bool is_guarded = ticker::s_instance.is_locally_guarded(cur_tick);
if (!is_guarded)
INVARIANT(false);
INVARIANT(s.depth());
// all threads are either at cur_tick or cur_tick + 1, so we must wait for
// the system to move beyond cur_tick + 1
s.queue_.enqueue(delete_entry(p, sz), to_rcu_ticks(cur_tick + 1));
++evt_rcu_frees;
}
void
rcu::pin_current_thread(size_t cpu)
{
sync &s = mysync();
s.set_pin_cpu(cpu);
auto node = numa_node_of_cpu(cpu);
// pin to node
ALWAYS_ASSERT(!numa_run_on_node(node));
// is numa_run_on_node() guaranteed to take effect immediately?
ALWAYS_ASSERT(!sched_yield());
// release current thread-local cache back to allocator
s.do_release();
}
void
rcu::fault_region()
{
sync &s = mysync();
if (s.get_pin_cpu() == -1)
return;
::allocator::FaultRegion(s.get_pin_cpu());
}
rcu::rcu()
: syncs_()
{
// XXX: these should really be instance members of RCU
// we are assuming only one rcu object is ever created
for (size_t i = 0; i < ::allocator::MAX_ARENAS; i++) {
evt_allocator_arena_allocations[i] =
new event_counter("allocator_arena" + to_string(i) + "_allocation");
evt_allocator_arena_deallocations[i] =
new event_counter("allocator_arena" + to_string(i) + "_deallocation");
}
}
struct rcu_stress_test_rec {
uint64_t magic_;
uint64_t counter_;
} PACKED;
static const uint64_t rcu_stress_test_magic = 0xABCDDEAD01234567UL;
static const size_t rcu_stress_test_nthreads = 28;
static atomic<rcu_stress_test_rec *> rcu_stress_test_array[rcu_stress_test_nthreads];
static atomic<bool> rcu_stress_test_keep_going(true);
static void
rcu_stress_test_deleter_fn(void *px)
{
ALWAYS_ASSERT( ((rcu_stress_test_rec *) px)->magic_ == rcu_stress_test_magic );
rcu::s_instance.dealloc(px, sizeof(rcu_stress_test_rec));
}
static void
rcu_stress_test_worker(unsigned id)
{
rcu::s_instance.pin_current_thread(id);
rcu_stress_test_rec *mypx =
(rcu_stress_test_rec *) rcu::s_instance.alloc(sizeof(rcu_stress_test_rec));
mypx->magic_ = rcu_stress_test_magic;
mypx->counter_ = 0;
rcu_stress_test_array[id].store(mypx, memory_order_release);
while (rcu_stress_test_keep_going.load(memory_order_acquire)) {
scoped_rcu_region rcu;
for (size_t i = 0; i < rcu_stress_test_nthreads; i++) {
rcu_stress_test_rec *p = rcu_stress_test_array[i].load(memory_order_acquire);
if (!p)
continue;
ALWAYS_ASSERT(p->magic_ == rcu_stress_test_magic);
p->counter_++; // let it be racy, doesn't matter
}
// swap it out
mypx = rcu_stress_test_array[id].load(memory_order_acquire);
if (mypx) {
rcu_stress_test_array[id].store(nullptr, memory_order_release);
rcu::s_instance.free_with_fn(mypx, rcu_stress_test_deleter_fn);
} else {
mypx = (rcu_stress_test_rec *)
rcu::s_instance.alloc(sizeof(rcu_stress_test_rec));
mypx->magic_ = rcu_stress_test_magic;
mypx->counter_ = 0;
rcu_stress_test_array[id].store(mypx, memory_order_release);
}
}
}
static void
rcu_stress_test()
{
for (size_t i = 0; i < rcu_stress_test_nthreads; i++)
rcu_stress_test_array[i].store(nullptr, memory_order_release);
vector<thread> workers;
for (size_t i = 0; i < rcu_stress_test_nthreads; i++)
workers.emplace_back(rcu_stress_test_worker, i);
sleep(120);
rcu_stress_test_keep_going.store(false, memory_order_release);
for (auto &t : workers)
t.join();
cerr << "rcu stress test completed" << endl;
}
void
rcu::Test()
{
rcu_stress_test();
}