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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
|
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright (c) 2018-2020 Arm Limited
*/
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <inttypes.h>
#include <errno.h>
#include <rte_common.h>
#include <rte_log.h>
#include <rte_memory.h>
#include <rte_malloc.h>
#include <rte_eal.h>
#include <rte_atomic.h>
#include <rte_per_lcore.h>
#include <rte_lcore.h>
#include <rte_errno.h>
#include <rte_ring_elem.h>
#include "rte_rcu_qsbr.h"
#include "rcu_qsbr_pvt.h"
/* Get the memory size of QSBR variable */
size_t
rte_rcu_qsbr_get_memsize(uint32_t max_threads)
{
size_t sz;
if (max_threads == 0) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid max_threads %u\n",
__func__, max_threads);
rte_errno = EINVAL;
return 1;
}
sz = sizeof(struct rte_rcu_qsbr);
/* Add the size of quiescent state counter array */
sz += sizeof(struct rte_rcu_qsbr_cnt) * max_threads;
/* Add the size of the registered thread ID bitmap array */
sz += __RTE_QSBR_THRID_ARRAY_SIZE(max_threads);
return sz;
}
/* Initialize a quiescent state variable */
int
rte_rcu_qsbr_init(struct rte_rcu_qsbr *v, uint32_t max_threads)
{
size_t sz;
if (v == NULL) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return 1;
}
sz = rte_rcu_qsbr_get_memsize(max_threads);
if (sz == 1)
return 1;
/* Set all the threads to offline */
memset(v, 0, sz);
v->max_threads = max_threads;
v->num_elems = RTE_ALIGN_MUL_CEIL(max_threads,
__RTE_QSBR_THRID_ARRAY_ELM_SIZE) /
__RTE_QSBR_THRID_ARRAY_ELM_SIZE;
v->token = __RTE_QSBR_CNT_INIT;
v->acked_token = __RTE_QSBR_CNT_INIT - 1;
return 0;
}
/* Register a reader thread to report its quiescent state
* on a QS variable.
*/
int
rte_rcu_qsbr_thread_register(struct rte_rcu_qsbr *v, unsigned int thread_id)
{
unsigned int i, id, success;
uint64_t old_bmap, new_bmap;
if (v == NULL || thread_id >= v->max_threads) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return 1;
}
__RTE_RCU_IS_LOCK_CNT_ZERO(v, thread_id, ERR, "Lock counter %u\n",
v->qsbr_cnt[thread_id].lock_cnt);
id = thread_id & __RTE_QSBR_THRID_MASK;
i = thread_id >> __RTE_QSBR_THRID_INDEX_SHIFT;
/* Make sure that the counter for registered threads does not
* go out of sync. Hence, additional checks are required.
*/
/* Check if the thread is already registered */
old_bmap = __atomic_load_n(__RTE_QSBR_THRID_ARRAY_ELM(v, i),
__ATOMIC_RELAXED);
if (old_bmap & 1UL << id)
return 0;
do {
new_bmap = old_bmap | (1UL << id);
success = __atomic_compare_exchange(
__RTE_QSBR_THRID_ARRAY_ELM(v, i),
&old_bmap, &new_bmap, 0,
__ATOMIC_RELEASE, __ATOMIC_RELAXED);
if (success)
__atomic_fetch_add(&v->num_threads,
1, __ATOMIC_RELAXED);
else if (old_bmap & (1UL << id))
/* Someone else registered this thread.
* Counter should not be incremented.
*/
return 0;
} while (success == 0);
return 0;
}
/* Remove a reader thread, from the list of threads reporting their
* quiescent state on a QS variable.
*/
int
rte_rcu_qsbr_thread_unregister(struct rte_rcu_qsbr *v, unsigned int thread_id)
{
unsigned int i, id, success;
uint64_t old_bmap, new_bmap;
if (v == NULL || thread_id >= v->max_threads) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return 1;
}
__RTE_RCU_IS_LOCK_CNT_ZERO(v, thread_id, ERR, "Lock counter %u\n",
v->qsbr_cnt[thread_id].lock_cnt);
id = thread_id & __RTE_QSBR_THRID_MASK;
i = thread_id >> __RTE_QSBR_THRID_INDEX_SHIFT;
/* Make sure that the counter for registered threads does not
* go out of sync. Hence, additional checks are required.
*/
/* Check if the thread is already unregistered */
old_bmap = __atomic_load_n(__RTE_QSBR_THRID_ARRAY_ELM(v, i),
__ATOMIC_RELAXED);
if (!(old_bmap & (1UL << id)))
return 0;
do {
new_bmap = old_bmap & ~(1UL << id);
/* Make sure any loads of the shared data structure are
* completed before removal of the thread from the list of
* reporting threads.
*/
success = __atomic_compare_exchange(
__RTE_QSBR_THRID_ARRAY_ELM(v, i),
&old_bmap, &new_bmap, 0,
__ATOMIC_RELEASE, __ATOMIC_RELAXED);
if (success)
__atomic_fetch_sub(&v->num_threads,
1, __ATOMIC_RELAXED);
else if (!(old_bmap & (1UL << id)))
/* Someone else unregistered this thread.
* Counter should not be incremented.
*/
return 0;
} while (success == 0);
return 0;
}
/* Wait till the reader threads have entered quiescent state. */
void
rte_rcu_qsbr_synchronize(struct rte_rcu_qsbr *v, unsigned int thread_id)
{
uint64_t t;
RTE_ASSERT(v != NULL);
t = rte_rcu_qsbr_start(v);
/* If the current thread has readside critical section,
* update its quiescent state status.
*/
if (thread_id != RTE_QSBR_THRID_INVALID)
rte_rcu_qsbr_quiescent(v, thread_id);
/* Wait for other readers to enter quiescent state */
rte_rcu_qsbr_check(v, t, true);
}
/* Dump the details of a single quiescent state variable to a file. */
int
rte_rcu_qsbr_dump(FILE *f, struct rte_rcu_qsbr *v)
{
uint64_t bmap;
uint32_t i, t, id;
if (v == NULL || f == NULL) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return 1;
}
fprintf(f, "\nQuiescent State Variable @%p\n", v);
fprintf(f, " QS variable memory size = %zu\n",
rte_rcu_qsbr_get_memsize(v->max_threads));
fprintf(f, " Given # max threads = %u\n", v->max_threads);
fprintf(f, " Current # threads = %u\n", v->num_threads);
fprintf(f, " Registered thread IDs = ");
for (i = 0; i < v->num_elems; i++) {
bmap = __atomic_load_n(__RTE_QSBR_THRID_ARRAY_ELM(v, i),
__ATOMIC_ACQUIRE);
id = i << __RTE_QSBR_THRID_INDEX_SHIFT;
while (bmap) {
t = __builtin_ctzl(bmap);
fprintf(f, "%u ", id + t);
bmap &= ~(1UL << t);
}
}
fprintf(f, "\n");
fprintf(f, " Token = %"PRIu64"\n",
__atomic_load_n(&v->token, __ATOMIC_ACQUIRE));
fprintf(f, " Least Acknowledged Token = %"PRIu64"\n",
__atomic_load_n(&v->acked_token, __ATOMIC_ACQUIRE));
fprintf(f, "Quiescent State Counts for readers:\n");
for (i = 0; i < v->num_elems; i++) {
bmap = __atomic_load_n(__RTE_QSBR_THRID_ARRAY_ELM(v, i),
__ATOMIC_ACQUIRE);
id = i << __RTE_QSBR_THRID_INDEX_SHIFT;
while (bmap) {
t = __builtin_ctzl(bmap);
fprintf(f, "thread ID = %u, count = %"PRIu64", lock count = %u\n",
id + t,
__atomic_load_n(
&v->qsbr_cnt[id + t].cnt,
__ATOMIC_RELAXED),
__atomic_load_n(
&v->qsbr_cnt[id + t].lock_cnt,
__ATOMIC_RELAXED));
bmap &= ~(1UL << t);
}
}
return 0;
}
/* Create a queue used to store the data structure elements that can
* be freed later. This queue is referred to as 'defer queue'.
*/
struct rte_rcu_qsbr_dq *
rte_rcu_qsbr_dq_create(const struct rte_rcu_qsbr_dq_parameters *params)
{
struct rte_rcu_qsbr_dq *dq;
uint32_t qs_fifo_size;
unsigned int flags;
if (params == NULL || params->free_fn == NULL ||
params->v == NULL || params->name == NULL ||
params->size == 0 || params->esize == 0 ||
(params->esize % 4 != 0)) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return NULL;
}
/* If auto reclamation is configured, reclaim limit
* should be a valid value.
*/
if ((params->trigger_reclaim_limit <= params->size) &&
(params->max_reclaim_size == 0)) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter, size = %u, trigger_reclaim_limit = %u, max_reclaim_size = %u\n",
__func__, params->size, params->trigger_reclaim_limit,
params->max_reclaim_size);
rte_errno = EINVAL;
return NULL;
}
dq = rte_zmalloc(NULL, sizeof(struct rte_rcu_qsbr_dq),
RTE_CACHE_LINE_SIZE);
if (dq == NULL) {
rte_errno = ENOMEM;
return NULL;
}
/* Decide the flags for the ring.
* If MT safety is requested, use RTS for ring enqueue as most
* use cases involve dq-enqueue happening on the control plane.
* Ring dequeue is always HTS due to the possibility of revert.
*/
flags = RING_F_MP_RTS_ENQ;
if (params->flags & RTE_RCU_QSBR_DQ_MT_UNSAFE)
flags = RING_F_SP_ENQ;
flags |= RING_F_MC_HTS_DEQ;
/* round up qs_fifo_size to next power of two that is not less than
* max_size.
*/
qs_fifo_size = rte_align32pow2(params->size + 1);
/* Add token size to ring element size */
dq->r = rte_ring_create_elem(params->name,
__RTE_QSBR_TOKEN_SIZE + params->esize,
qs_fifo_size, SOCKET_ID_ANY, flags);
if (dq->r == NULL) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): defer queue create failed\n", __func__);
rte_free(dq);
return NULL;
}
dq->v = params->v;
dq->size = params->size;
dq->esize = __RTE_QSBR_TOKEN_SIZE + params->esize;
dq->trigger_reclaim_limit = params->trigger_reclaim_limit;
dq->max_reclaim_size = params->max_reclaim_size;
dq->free_fn = params->free_fn;
dq->p = params->p;
return dq;
}
/* Enqueue one resource to the defer queue to free after the grace
* period is over.
*/
int rte_rcu_qsbr_dq_enqueue(struct rte_rcu_qsbr_dq *dq, void *e)
{
__rte_rcu_qsbr_dq_elem_t *dq_elem;
uint32_t cur_size;
if (dq == NULL || e == NULL) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return 1;
}
char data[dq->esize];
dq_elem = (__rte_rcu_qsbr_dq_elem_t *)data;
/* Start the grace period */
dq_elem->token = rte_rcu_qsbr_start(dq->v);
/* Reclaim resources if the queue size has hit the reclaim
* limit. This helps the queue from growing too large and
* allows time for reader threads to report their quiescent state.
*/
cur_size = rte_ring_count(dq->r);
if (cur_size > dq->trigger_reclaim_limit) {
rte_log(RTE_LOG_INFO, rte_rcu_log_type,
"%s(): Triggering reclamation\n", __func__);
rte_rcu_qsbr_dq_reclaim(dq, dq->max_reclaim_size,
NULL, NULL, NULL);
}
/* Enqueue the token and resource. Generating the token and
* enqueuing (token + resource) on the queue is not an
* atomic operation. When the defer queue is shared by multiple
* writers, this might result in tokens enqueued out of order
* on the queue. So, some tokens might wait longer than they
* are required to be reclaimed.
*/
memcpy(dq_elem->elem, e, dq->esize - __RTE_QSBR_TOKEN_SIZE);
/* Check the status as enqueue might fail since the other threads
* might have used up the freed space.
* Enqueue uses the configured flags when the DQ was created.
*/
if (rte_ring_enqueue_elem(dq->r, data, dq->esize) != 0) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Enqueue failed\n", __func__);
/* Note that the token generated above is not used.
* Other than wasting tokens, it should not cause any
* other issues.
*/
rte_log(RTE_LOG_INFO, rte_rcu_log_type,
"%s(): Skipped enqueuing token = %"PRIu64"\n",
__func__, dq_elem->token);
rte_errno = ENOSPC;
return 1;
}
rte_log(RTE_LOG_INFO, rte_rcu_log_type,
"%s(): Enqueued token = %"PRIu64"\n", __func__, dq_elem->token);
return 0;
}
/* Reclaim resources from the defer queue. */
int
rte_rcu_qsbr_dq_reclaim(struct rte_rcu_qsbr_dq *dq, unsigned int n,
unsigned int *freed, unsigned int *pending,
unsigned int *available)
{
uint32_t cnt;
__rte_rcu_qsbr_dq_elem_t *dq_elem;
if (dq == NULL || n == 0) {
rte_log(RTE_LOG_ERR, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
rte_errno = EINVAL;
return 1;
}
cnt = 0;
char data[dq->esize];
/* Check reader threads quiescent state and reclaim resources */
while (cnt < n &&
rte_ring_dequeue_bulk_elem_start(dq->r, &data,
dq->esize, 1, available) != 0) {
dq_elem = (__rte_rcu_qsbr_dq_elem_t *)data;
/* Reclaim the resource */
if (rte_rcu_qsbr_check(dq->v, dq_elem->token, false) != 1) {
rte_ring_dequeue_elem_finish(dq->r, 0);
break;
}
rte_ring_dequeue_elem_finish(dq->r, 1);
rte_log(RTE_LOG_INFO, rte_rcu_log_type,
"%s(): Reclaimed token = %"PRIu64"\n",
__func__, dq_elem->token);
dq->free_fn(dq->p, dq_elem->elem, 1);
cnt++;
}
rte_log(RTE_LOG_INFO, rte_rcu_log_type,
"%s(): Reclaimed %u resources\n", __func__, cnt);
if (freed != NULL)
*freed = cnt;
if (pending != NULL)
*pending = rte_ring_count(dq->r);
return 0;
}
/* Delete a defer queue. */
int
rte_rcu_qsbr_dq_delete(struct rte_rcu_qsbr_dq *dq)
{
unsigned int pending;
if (dq == NULL) {
rte_log(RTE_LOG_DEBUG, rte_rcu_log_type,
"%s(): Invalid input parameter\n", __func__);
return 0;
}
/* Reclaim all the resources */
rte_rcu_qsbr_dq_reclaim(dq, ~0, NULL, &pending, NULL);
if (pending != 0) {
rte_errno = EAGAIN;
return 1;
}
rte_ring_free(dq->r);
rte_free(dq);
return 0;
}
int rte_rcu_log_type;
RTE_INIT(rte_rcu_register)
{
rte_rcu_log_type = rte_log_register("lib.rcu");
if (rte_rcu_log_type >= 0)
rte_log_set_level(rte_rcu_log_type, RTE_LOG_ERR);
}
|