urcu-bp 是支持嵌套加锁的

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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
原文出自:<a href="https://www.cnblogs.com/leo0000/p/7478644.html" target="_blank">https://www.cnblogs.com/leo0000/p/7478644.html</a><br>1      什么是TLS
原理在网上资料很多,这里不展开。
 
简单点说,动态申请的每线程变量。有一类比较熟悉的每线程变量是一个带__thread的每线程变量,两者的区别在于,TLS这类每线程变量是动态申请的。有以下一系列接口:
 
#include <pthread.h>
 
int pthread_key_create(pthread_key_t *key, void (*destructor)(void*));
 
int pthread_key_delete(pthread_key_t key);
 
int pthread_setspecific(pthread_key_t key, const void *value);
 
void *pthread_getspecific(pthread_key_t key);
 
  
 
一般使用方法是
 
创建一个关键字key,多线程仅需创建一次,销毁函数可以为null
将需要保存的上下文设置到key-value对中
需要访问时,根据key取出value
销毁key
与__thread类型的变量就在于需要使用全局变量保存key。
2      BP锁结构体
struct rcu_reader {
    /* Data used by both reader and synchronize_rcu() */
 
    unsigned long ctr;
 
    /* Data used for registry */
 
    struct cds_list_head node __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
 
    pthread_t tid;
 
    int alloc;  /* registry entry allocated */
 
};
 
       其中的ctr代表当前线程的锁状态,tid表示当前线程号,alloc是一个标记位,代表该锁状态结构体有没有被使用;因为要保存每线程的当前锁状态,bp代码中是以数组的形式访问的,第一次申请8个,第二次申请16个,第三次申请32个,以成倍增加的方式扩大。
 
锁的状态有以下三种,分别为,
 
enum rcu_state {
    RCU_READER_ACTIVE_CURRENT, 当前读者,写者在第一步抓取这些读者
 
    RCU_READER_ACTIVE_OLD, 老读者,写者在第二步检测这些读者
 
    RCU_READER_INACTIVE, 不在读操作中
 
};
 
3      全局gp记录
struct rcu_gp {
    /*
 
     * Global grace period counter.
 
     * Contains the current RCU_GP_CTR_PHASE.
 
     * Also has a RCU_GP_COUNT of 1, to accelerate the reader fast path.
 
     * Written to only by writer with mutex taken.
 
     * Read by both writer and readers.
 
     */
 
    unsigned long ctr;
 
} __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
 
struct rcu_gp rcu_gp = { .ctr = RCU_GP_COUNT };
 
记录了全局的ctr,默认值为1.
 
4      几个宏
#define RCU_GP_COUNT        (1UL << 0)  -------------1
 
/* Use the amount of bits equal to half of the architecture long size */
 
#define RCU_GP_CTR_PHASE        (1UL << (sizeof(long) << 2))-----------64位系统为2的32次,32位系统为2的16次
 
#define RCU_GP_CTR_NEST_MASK    (RCU_GP_CTR_PHASE - 1)----------64位系统0xffffffff,32位系统0xffff
 
5      初始化
void rcu_bp_register(void);
 
每个需要使用的bprcu的线程只要调用上面的函数进行注册即可,这个函数的工作是:
 
如果是第一个线程注册,则调用pthread_key_create创建每线程变量
将该线程加入registry链表
初始化时锁ctr的值为0
将该rcu_reader设置进key-value对(pthread_setspecific)
6      加读锁
static inline void _rcu_read_lock_update(unsigned long tmp)/* tmp是当前线程的ctr */
 
{
       /* 这段表示,当前的线程中ctr中的低位为全0时,取全局的ctr值 */
 
    if (caa_likely(!(tmp & RCU_GP_CTR_NEST_MASK))) {
        _CMM_STORE_SHARED(URCU_TLS(rcu_reader)->ctr, _CMM_LOAD_SHARED(rcu_gp.ctr));
 
        urcu_bp_smp_mb_slave();
 
    } else
 
       /* 这段表示如果当前线程中的ctr中的低位不为0,ctr值加1, */
 
        _CMM_STORE_SHARED(URCU_TLS(rcu_reader)->ctr, tmp + RCU_GP_COUNT);
 
}
 
7      解读锁
static inline void _rcu_read_unlock(void)
 
{
    unsigned long tmp;
 
  
 
    tmp = URCU_TLS(rcu_reader)->ctr;
 
    urcu_assert(tmp & RCU_GP_CTR_NEST_MASK);
 
    /* Finish using rcu before decrementing the pointer. */
 
    urcu_bp_smp_mb_slave();
 
    _CMM_STORE_SHARED(URCU_TLS(rcu_reader)->ctr, tmp - RCU_GP_COUNT);
 
    cmm_barrier();  /* Ensure the compiler does not reorder us with mutex */
 
}
 
仅仅是在当前的ctr基础上减1.
 
8      加解锁总结
加锁时,如果当前ctr值为0,也就是初始值,即第一次上锁时,需要将ctr的值更新为全局的ctr值。
 
解锁时,无条件将该当前ctr值减1,所以加解锁必须是对称的。
 
参与rcu,上锁状态ctr低位值大于0,空闲状态等于0.
 
9      锁状态的转化
由下面这个函数解析。
 
static inline enum rcu_state rcu_reader_state(unsigned long *ctr)
 
{
    unsigned long v;
 
  
 
       /* 没有使用过,返回未进入临界区 */
 
    if (ctr == NULL)
 
        return RCU_READER_INACTIVE;
 
    /*
 
     * Make sure both tests below are done on the same version of *value
 
     * to insure consistency.
 
     */
 
    v = CMM_LOAD_SHARED(*ctr);
 
       /* RCU_GP_CTR_NEST_MASK这个值为0xffffffff,即为ctr的低位值为0时,返回未进入临界区 */
 
    if (!(v & RCU_GP_CTR_NEST_MASK))
 
        return RCU_READER_INACTIVE;
 
       /* 先看第三步的非运算,即里面的值为0,则是读状态,否则是老的读状态
 
      再看第二部的与运算,检测第16的值是否为1,为1则是老的读状态,为0则是读状态
 
         最后第一步的异或运算,相等则为0,则肯定是读状态,不相等,则要看第十六位是否相同,相同则为读状态,不相等则为老的读状态
 
总之,只要ctr的值不为0,就是读状态
 
 */
 
    if (!((v ^ rcu_gp.ctr) & RCU_GP_CTR_PHASE))
 
        return RCU_READER_ACTIVE_CURRENT;
 
       /* 不识别状态 */
 
    return RCU_READER_ACTIVE_OLD;
 
}
 
10  等待读者结束
static void wait_for_readers(struct cds_list_head *input_readers,
 
            struct cds_list_head *cur_snap_readers,
 
            struct cds_list_head *qsreaders)
 
{
    unsigned int wait_loops = 0;
 
    struct rcu_reader *index, *tmp;
 
  
 
    /*
 
     * Wait for each thread URCU_TLS(rcu_reader).ctr to either
 
     * indicate quiescence (not nested), or observe the current
 
     * rcu_gp.ctr value.
 
     */
 
    for (;;) {
        if (wait_loops < RCU_QS_ACTIVE_ATTEMPTS)
 
            wait_loops++;
 
  
 
        cds_list_for_each_entry_safe(index, tmp, input_readers, node) {
            switch (rcu_reader_state(&index->ctr)) {
            case RCU_READER_ACTIVE_CURRENT:
 
                if (cur_snap_readers) {
                    cds_list_move(&index->node,
 
                        cur_snap_readers);
 
                    break;
 
                }
 
                /* Fall-through */
 
            case RCU_READER_INACTIVE:
 
                cds_list_move(&index->node, qsreaders);
 
                break;
 
            case RCU_READER_ACTIVE_OLD:
 
                /*
 
                 * Old snapshot. Leaving node in
 
                 * input_readers will make us busy-loop
 
                 * until the snapshot becomes current or
 
                 * the reader becomes inactive.
 
                 */
 
                break;
 
            }
 
        }
 
  
 
        if (cds_list_empty(input_readers)) {
            break;
 
        } else {
            /* Temporarily unlock the registry lock. */
 
            mutex_unlock(&rcu_registry_lock);
 
            if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS)
 
                (void) poll(NULL, 0, RCU_SLEEP_DELAY_MS);
 
            else
 
                caa_cpu_relax();
 
            /* Re-lock the registry lock before the next loop. */
 
            mutex_lock(&rcu_registry_lock);
 
        }
 
    }
 
}
 
这个是snap可能是snapshot的缩写,快照的意思,也就是代表当前正在读的线程合影。
 
RCU_READER_ACTIVE_CURRENT将处与读状态的线程移入正在读链表,不在读状态的线程移入qs链表,其他状态等待其变成正在读或者不读。
 
11  Rcu写者的同步等待
void synchronize_rcu(void)
 
{
    CDS_LIST_HEAD(cur_snap_readers);
 
    CDS_LIST_HEAD(qsreaders);
 
    sigset_t newmask, oldmask;
 
    int ret;
 
  
 
    ret = sigfillset(&newmask);
 
    assert(!ret);
 
    ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
 
    assert(!ret);
 
  
 
    mutex_lock(&rcu_gp_lock);
 
  
 
    mutex_lock(&rcu_registry_lock);
 
  
 
    if (cds_list_empty(&registry))
 
        goto out;
 
  
 
    /* All threads should read qparity before accessing data structure
 
     * where new ptr points to. */
 
    /* Write new ptr before changing the qparity */
 
    smp_mb_master();
 
  
 
    /*
 
     * Wait for readers to observe original parity or be quiescent.
 
     * wait_for_readers() can release and grab again rcu_registry_lock
 
     * interally.
 
     */
 
    wait_for_readers(&registry, &cur_snap_readers, &qsreaders);
 
  
 
    /*
 
     * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
 
     * model easier to understand. It does not have a big performance impact
 
     * anyway, given this is the write-side.
 
     */
 
    cmm_smp_mb();
 
  
 
    /* Switch parity: 0 -> 1, 1 -> 0 */
 
    CMM_STORE_SHARED(rcu_gp.ctr, rcu_gp.ctr ^ RCU_GP_CTR_PHASE);
 
  
 
    /*
 
     * Must commit qparity update to memory before waiting for other parity
 
     * quiescent state. Failure to do so could result in the writer waiting
 
     * forever while new readers are always accessing data (no progress).
 
     * Ensured by CMM_STORE_SHARED and CMM_LOAD_SHARED.
 
     */
 
  
 
    /*
 
     * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
 
     * model easier to understand. It does not have a big performance impact
 
     * anyway, given this is the write-side.
 
     */
 
    cmm_smp_mb();
 
  
 
    /*
 
     * Wait for readers to observe new parity or be quiescent.
 
     * wait_for_readers() can release and grab again rcu_registry_lock
 
     * interally.
 
     */
 
    wait_for_readers(&cur_snap_readers, NULL, &qsreaders);
 
  
 
    /*
 
     * Put quiescent reader list back into registry.
 
     */
 
    cds_list_splice(&qsreaders, &registry);
 
  
 
    /*
 
     * Finish waiting for reader threads before letting the old ptr being
 
     * freed.
 
     */
 
    smp_mb_master();
 
out:
 
    mutex_unlock(&rcu_registry_lock);
 
    mutex_unlock(&rcu_gp_lock);
 
    ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
 
    assert(!ret);
 
}
 
第一步,将参与本次rcu活动的线程挑选出来。
 
第二步,将全局ctr的值翻转,各位0->1, 1->0。全局ctr只有两种取值情况,
 
1和0x1 0000 0001。
 
第三步,等待所有读者退出。
 
第四步,同步等待结束。
 
12  Call_rcu写者的异步等待
异步与同步的区别在于写者是等待所有读者退出,本线程执行写操作,还是由call_rcu线程等待所有写者退出,由call_rcu线程执行写操作。因为没有实际研究这段代码,直接看调用栈
 
#0  0x000000fff066ab90 in syscall () from /lib/libc.so.6                      
 
(gdb) bt                                                                       
 
#0  0x000000fff066ab90 in syscall () from /lib/libc.so.6                      
 
#1  0x000000fff08f7ea8 in smp_mb_master ()                                    
 
    at ../userspace-rcu-0.9.3/urcu.c:165                                      
 
#2  0x000000fff08f817c in wait_for_readers (                                  
 
    input_readers=0xfff090e5f0 <registry>, cur_snap_readers=0xff60dfe4b8,     
 
    qsreaders=0xff60dfe4c8) at ../userspace-rcu-0.9.3/urcu.c:290              
 
#3  0x000000fff08f84ec in synchronize_rcu_memb ()                             
 
    at ../userspace-rcu-0.9.3/urcu.c:426                                      
 
#4  0x000000fff08f9b50 in call_rcu_thread (arg=0xff640030b0)                  
 
    at ../userspace-rcu-0.9.3/urcu-call-rcu-impl.h:362                        
 
#5  0x000000fff0a22040 in start_thread () from /lib/libpthread.so.0           
 
#6  0x000000fff066f5c4 in __thread_start () from /lib/libc.so.6 
 
与同步的操作类型,也是通过wait_for_readers的调用等待读者退出
 
13  为什么要使用异或操作
为了实现读者从不阻塞,而写者应该区别出这位读者是否是本次的读者。
 
假设存在两个读者群,一个写者。读者群1正在读操作中,写者进入等待读者状态,读者群2也进入了临界区,但是读者群2不应该被列入本次的探测中。
 
再看一次锁状态的解析
 
    if (!(v & RCU_GP_CTR_NEST_MASK))
 
        return RCU_READER_INACTIVE;
 
    if (!((v ^ rcu_gp.ctr) & RCU_GP_CTR_PHASE))
 
        return RCU_READER_ACTIVE_CURRENT;
 
    return RCU_READER_ACTIVE_OLD;
 
第一段还是原来的逻辑,没参与本地读写操作。
 
第二段的操作,具体分析,
 
Ctr值
 
全局ctr值
 
结果
 
1
 
1
 
RCU_READER_ACTIVE_CURRENT
 
1
 
0x1 0000 0001
 
RCU_READER_ACTIVE_OLD
 
2
 
1
 
RCU_READER_ACTIVE_CURRENT
 
0x1 0000 0001
 
1
 
RCU_READER_ACTIVE_OLD
 
0x1 0000 0001
 
0x1 0000 0001
 
RCU_READER_ACTIVE_CURRENT
 
       所以只要非0,都是读状态,只是区别出是写者开始等待前的读者还是写者开始等待后的读者。
 
14  举例
有2个线程,一个写,一个读。全局ctr为1
 
读者1进入临界区,ctr值设置为1
写者1尝试写,选中了读者1,将其加入本次需要等待的链表,更新全局ctr为0x1 0000 0001,发生调度。
读者1离开临界区,但是又再次进入临界区,ctr值设置为0x1 0000 0001
写者开始检测读者1的当前状态,发现是当前读者,而不是老读者,移出该读者。所以这个相位的作用就是区别出该读者是否已经离开上一次的读操作。写者退出等待,继续往下执行。
  
 
__simple原创
 
  转载请注明出处
 
转载于:https://www.cnblogs.com/leo0000/p/7478644.html

  

posted on   爱新觉罗玄烨  阅读(16)  评论(0编辑  收藏  举报

相关博文:
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?

导航

< 2025年3月 >
23 24 25 26 27 28 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 1 2 3 4 5
点击右上角即可分享
微信分享提示