834d33f19f2de9993bf0a60b1bde6728b449330b
[libside.git] / src / rcu.c
1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright 2022 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 */
5
6 #include <sched.h>
7 #include <string.h>
8 #include <stdint.h>
9 #include <pthread.h>
10 #include <stdbool.h>
11 #include <poll.h>
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <stdio.h>
15 #include <sys/syscall.h>
16 #include <linux/membarrier.h>
17
18 #include "rcu.h"
19 #include "smp.h"
20
21 /*
22 * If both rseq (with glibc support) and membarrier system calls are
23 * available, use them to replace barriers and atomics on the fast-path.
24 */
25 unsigned int tgif_rcu_rseq_membarrier_available;
26
27 static int
28 membarrier(int cmd, unsigned int flags, int cpu_id)
29 {
30 return syscall(__NR_membarrier, cmd, flags, cpu_id);
31 }
32
33 /*
34 * Wait/wakeup scheme with single waiter/many wakers.
35 */
36 static
37 void wait_gp_prepare(struct tgif_rcu_gp_state *gp_state)
38 {
39 __atomic_store_n(&gp_state->futex, -1, __ATOMIC_RELAXED);
40 /*
41 * This memory barrier (H) pairs with memory barrier (F). It
42 * orders store to futex before load of RCU reader's counter
43 * state, thus ensuring that load of RCU reader's counters does
44 * not leak outtgif of futex state=-1.
45 */
46 if (tgif_rcu_rseq_membarrier_available) {
47 if (membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED, 0, 0)) {
48 perror("membarrier");
49 abort();
50 }
51 } else {
52 __atomic_thread_fence(__ATOMIC_SEQ_CST);
53 }
54 }
55
56 static
57 void wait_gp_end(struct tgif_rcu_gp_state *gp_state)
58 {
59 /*
60 * This memory barrier (G) pairs with memory barrier (F). It
61 * orders load of RCU reader's counter state before storing the
62 * futex value, thus ensuring that load of RCU reader's counters
63 * does not leak outtgif of futex state=-1.
64 */
65 if (tgif_rcu_rseq_membarrier_available) {
66 if (membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED, 0, 0)) {
67 perror("membarrier");
68 abort();
69 }
70 } else {
71 __atomic_thread_fence(__ATOMIC_SEQ_CST);
72 }
73 __atomic_store_n(&gp_state->futex, 0, __ATOMIC_RELAXED);
74 }
75
76 static
77 void wait_gp(struct tgif_rcu_gp_state *gp_state)
78 {
79 /*
80 * This memory barrier (G) pairs with memory barrier (F). It
81 * orders load of RCU reader's counter state before loading the
82 * futex value.
83 */
84 if (tgif_rcu_rseq_membarrier_available) {
85 if (membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED, 0, 0)) {
86 perror("membarrier");
87 abort();
88 }
89 } else {
90 __atomic_thread_fence(__ATOMIC_SEQ_CST);
91 }
92 while (__atomic_load_n(&gp_state->futex, __ATOMIC_RELAXED) == -1) {
93 if (!futex(&gp_state->futex, FUTEX_WAIT, -1, NULL, NULL, 0)) {
94 /*
95 * May be awakened by either spurious wake up or
96 * because the state is now as expected.
97 */
98 continue;
99 }
100 switch (errno) {
101 case EWOULDBLOCK:
102 /* Value already changed. */
103 return;
104 case EINTR:
105 /* Retry if interrupted by signal. */
106 break; /* Get out of switch. */
107 default:
108 /* Unexpected error. */
109 abort();
110 }
111 }
112 return;
113 }
114
115 /* active_readers is an input/output parameter. */
116 static
117 void check_active_readers(struct tgif_rcu_gp_state *gp_state, bool *active_readers)
118 {
119 uintptr_t sum[2] = { 0, 0 }; /* begin - end */
120 int i;
121
122 for (i = 0; i < gp_state->nr_cpus; i++) {
123 struct tgif_rcu_cpu_gp_state *cpu_state = &gp_state->percpu_state[i];
124
125 if (active_readers[0]) {
126 sum[0] -= __atomic_load_n(&cpu_state->count[0].end, __ATOMIC_RELAXED);
127 sum[0] -= __atomic_load_n(&cpu_state->count[0].rseq_end, __ATOMIC_RELAXED);
128 }
129 if (active_readers[1]) {
130 sum[1] -= __atomic_load_n(&cpu_state->count[1].end, __ATOMIC_RELAXED);
131 sum[1] -= __atomic_load_n(&cpu_state->count[1].rseq_end, __ATOMIC_RELAXED);
132 }
133 }
134
135 /*
136 * This memory barrier (C) pairs with either of memory barriers
137 * (A) or (B) (one is sufficient).
138 *
139 * Read end counts before begin counts. Reading "end" before
140 * "begin" counts ensures we never see an "end" without having
141 * seen its associated "begin", because "begin" is always
142 * incremented before "end", as guaranteed by memory barriers
143 * (A) or (B).
144 */
145 if (tgif_rcu_rseq_membarrier_available) {
146 if (membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED, 0, 0)) {
147 perror("membarrier");
148 abort();
149 }
150 } else {
151 __atomic_thread_fence(__ATOMIC_SEQ_CST);
152 }
153
154 for (i = 0; i < gp_state->nr_cpus; i++) {
155 struct tgif_rcu_cpu_gp_state *cpu_state = &gp_state->percpu_state[i];
156
157 if (active_readers[0]) {
158 sum[0] += __atomic_load_n(&cpu_state->count[0].begin, __ATOMIC_RELAXED);
159 sum[0] += __atomic_load_n(&cpu_state->count[0].rseq_begin, __ATOMIC_RELAXED);
160 }
161 if (active_readers[1]) {
162 sum[1] += __atomic_load_n(&cpu_state->count[1].begin, __ATOMIC_RELAXED);
163 sum[1] += __atomic_load_n(&cpu_state->count[1].rseq_begin, __ATOMIC_RELAXED);
164 }
165 }
166 if (active_readers[0])
167 active_readers[0] = sum[0];
168 if (active_readers[1])
169 active_readers[1] = sum[1];
170 }
171
172 /*
173 * Wait for previous period to have no active readers.
174 *
175 * active_readers is an input/output parameter.
176 */
177 static
178 void wait_for_prev_period_readers(struct tgif_rcu_gp_state *gp_state, bool *active_readers)
179 {
180 unsigned int prev_period = gp_state->period ^ 1;
181
182 /*
183 * If a prior active readers scan already observed that no
184 * readers are present for the previous period, there is no need
185 * to scan again.
186 */
187 if (!active_readers[prev_period])
188 return;
189 /*
190 * Wait for the sum of CPU begin/end counts to match for the
191 * previous period.
192 */
193 for (;;) {
194 wait_gp_prepare(gp_state);
195 check_active_readers(gp_state, active_readers);
196 if (!active_readers[prev_period]) {
197 wait_gp_end(gp_state);
198 break;
199 }
200 wait_gp(gp_state);
201 }
202 }
203
204 /*
205 * The grace period completes when it observes that there are no active
206 * readers within each of the periods.
207 *
208 * The active_readers state is initially true for each period, until the
209 * grace period observes that no readers are present for each given
210 * period, at which point the active_readers state becomes false.
211 */
212 void tgif_rcu_wait_grace_period(struct tgif_rcu_gp_state *gp_state)
213 {
214 bool active_readers[2] = { true, true };
215
216 /*
217 * This memory barrier (D) pairs with memory barriers (A) and
218 * (B) on the read-tgif.
219 *
220 * It orders prior loads and stores before the "end"/"begin"
221 * reader state loads. In other words, it orders prior loads and
222 * stores before observation of active readers quiescence,
223 * effectively ensuring that read-tgif critical sections which
224 * exist after the grace period completes are ordered after
225 * loads and stores performed before the grace period.
226 */
227 if (tgif_rcu_rseq_membarrier_available) {
228 if (membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED, 0, 0)) {
229 perror("membarrier");
230 abort();
231 }
232 } else {
233 __atomic_thread_fence(__ATOMIC_SEQ_CST);
234 }
235
236 /*
237 * First scan through all cpus, for both period. If no readers
238 * are accounted for, we have observed quiescence and can
239 * complete the grace period immediately.
240 */
241 check_active_readers(gp_state, active_readers);
242 if (!active_readers[0] && !active_readers[1])
243 goto end;
244
245 pthread_mutex_lock(&gp_state->gp_lock);
246
247 wait_for_prev_period_readers(gp_state, active_readers);
248 /*
249 * If the reader scan detected that there are no readers in the
250 * current period as well, we can complete the grace period
251 * immediately.
252 */
253 if (!active_readers[gp_state->period])
254 goto unlock;
255
256 /* Flip period: 0 -> 1, 1 -> 0. */
257 (void) __atomic_xor_fetch(&gp_state->period, 1, __ATOMIC_RELAXED);
258
259 wait_for_prev_period_readers(gp_state, active_readers);
260 unlock:
261 pthread_mutex_unlock(&gp_state->gp_lock);
262 end:
263 /*
264 * This memory barrier (E) pairs with memory barriers (A) and
265 * (B) on the read-tgif.
266 *
267 * It orders the "end"/"begin" reader state loads before
268 * following loads and stores. In other words, it orders
269 * observation of active readers quiescence before following
270 * loads and stores, effectively ensuring that read-tgif
271 * critical sections which existed prior to the grace period
272 * are ordered before loads and stores performed after the grace
273 * period.
274 */
275 if (tgif_rcu_rseq_membarrier_available) {
276 if (membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED, 0, 0)) {
277 perror("membarrier");
278 abort();
279 }
280 } else {
281 __atomic_thread_fence(__ATOMIC_SEQ_CST);
282 }
283 }
284
285 void tgif_rcu_gp_init(struct tgif_rcu_gp_state *rcu_gp)
286 {
287 bool has_membarrier = false, has_rseq = false;
288
289 memset(rcu_gp, 0, sizeof(*rcu_gp));
290 rcu_gp->nr_cpus = get_possible_cpus_array_len();
291 if (!rcu_gp->nr_cpus)
292 abort();
293 pthread_mutex_init(&rcu_gp->gp_lock, NULL);
294 rcu_gp->percpu_state = (struct tgif_rcu_cpu_gp_state *)
295 calloc(rcu_gp->nr_cpus, sizeof(struct tgif_rcu_cpu_gp_state));
296 if (!rcu_gp->percpu_state)
297 abort();
298 if (!membarrier(MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED, 0, 0))
299 has_membarrier = true;
300 if (rseq_available(RSEQ_AVAILABLE_QUERY_LIBC))
301 has_rseq = true;
302 if (has_membarrier && has_rseq)
303 tgif_rcu_rseq_membarrier_available = 1;
304 }
305
306 void tgif_rcu_gp_exit(struct tgif_rcu_gp_state *rcu_gp)
307 {
308 rseq_prepare_unload();
309 pthread_mutex_destroy(&rcu_gp->gp_lock);
310 free(rcu_gp->percpu_state);
311 }
This page took 0.035155 seconds and 3 git commands to generate.