4 * Userspace RCU library
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
8 * Distributed under GPLv2
20 pthread_mutex_t urcu_mutex
= PTHREAD_MUTEX_INITIALIZER
;
22 /* Global quiescent period parity */
25 int __thread urcu_active_readers
[2];
27 /* Thread IDs of registered readers */
28 #define INIT_NUM_THREADS 4
32 int *urcu_active_readers
;
35 static struct reader_data
*reader_data
;
36 static int num_readers
, alloc_readers
;
39 void rcu_write_lock(void)
42 ret
= pthread_mutex_lock(&urcu_mutex
);
44 perror("Error in pthread mutex lock");
49 void rcu_write_unlock(void)
53 ret
= pthread_mutex_unlock(&urcu_mutex
);
55 perror("Error in pthread mutex unlock");
61 * called with urcu_mutex held.
63 static int switch_next_urcu_qparity(void)
65 int old_parity
= urcu_qparity
;
66 urcu_qparity
= 1 - old_parity
;
70 static void force_mb_all_threads(void)
72 struct reader_data
*index
;
74 * Ask for each threads to execute a mb() so we can consider the
75 * compiler barriers around rcu read lock as real memory barriers.
80 mb(); /* write sig_done before sending the signals */
81 for (index
= reader_data
; index
< reader_data
+ num_readers
; index
++)
82 pthread_kill(index
->tid
, SIGURCU
);
84 * Wait for sighandler (and thus mb()) to execute on every thread.
87 while (sig_done
< num_readers
)
89 mb(); /* read sig_done before ending the barrier */
92 void wait_for_quiescent_state(int parity
)
94 struct reader_data
*index
;
98 /* Wait for each thread urcu_active_readers count to become 0.
100 for (index
= reader_data
; index
< reader_data
+ num_readers
; index
++) {
104 while (index
->urcu_active_readers
[parity
] != 0)
108 * Locally : read *index->urcu_active_readers before freeing old
110 * Remote (reader threads) : Order urcu_qparity update and other
111 * thread's quiescent state counter read.
113 force_mb_all_threads();
117 * Return old pointer, OK to free, no more reference exist.
118 * Called under rcu_write_lock.
120 void *urcu_publish_content(void **ptr
, void *new)
126 * We can publish the new pointer before we change the current qparity.
127 * Readers seeing the new pointer while being in the previous qparity
128 * window will make us wait until the end of the quiescent state before
129 * we release the unrelated memory area. However, given we hold the
130 * urcu_mutex, we are making sure that no further garbage collection can
131 * occur until we release the mutex, therefore we guarantee that this
132 * given reader will have completed its execution using the new pointer
133 * when the next quiescent state window will be over.
137 /* All threads should read qparity before ptr */
138 /* Write ptr before changing the qparity */
139 force_mb_all_threads();
140 prev_parity
= switch_next_urcu_qparity();
143 * Wait for previous parity to be empty of readers.
145 wait_for_quiescent_state(prev_parity
);
147 * Deleting old data is ok !
153 void urcu_add_reader(pthread_t id
)
155 struct reader_data
*oldarray
;
158 alloc_readers
= INIT_NUM_THREADS
;
161 malloc(sizeof(struct reader_data
) * alloc_readers
);
163 if (alloc_readers
< num_readers
+ 1) {
164 oldarray
= reader_data
;
165 reader_data
= malloc(sizeof(struct reader_data
)
166 * (alloc_readers
<< 1));
167 memcpy(reader_data
, oldarray
,
168 sizeof(struct reader_data
) * alloc_readers
);
172 reader_data
[num_readers
].tid
= id
;
173 /* reference to the TLS of _this_ reader thread. */
174 reader_data
[num_readers
].urcu_active_readers
= urcu_active_readers
;
179 * Never shrink (implementation limitation).
180 * This is O(nb threads). Eventually use a hash table.
182 void urcu_remove_reader(pthread_t id
)
184 struct reader_data
*index
;
186 assert(reader_data
!= NULL
);
187 for (index
= reader_data
; index
< reader_data
+ num_readers
; index
++) {
188 if (pthread_equal(index
->tid
, id
)) {
189 memcpy(index
, &reader_data
[num_readers
- 1],
190 sizeof(struct reader_data
));
191 reader_data
[num_readers
- 1].tid
= 0;
192 reader_data
[num_readers
- 1].urcu_active_readers
= NULL
;
197 /* Hrm not found, forgot to register ? */
201 void urcu_register_thread(void)
204 urcu_add_reader(pthread_self());
208 void urcu_unregister_thread(void)
211 urcu_remove_reader(pthread_self());
215 void sigurcu_handler(int signo
, siginfo_t
*siginfo
, void *context
)
218 atomic_inc(&sig_done
);
221 void __attribute__((constructor
)) urcu_init(void)
223 struct sigaction act
;
226 act
.sa_sigaction
= sigurcu_handler
;
227 ret
= sigaction(SIGURCU
, &act
, NULL
);
229 perror("Error in sigaction");
234 void __attribute__((destructor
)) urcu_exit(void)
236 struct sigaction act
;
239 ret
= sigaction(SIGURCU
, NULL
, &act
);
241 perror("Error in sigaction");
244 assert(act
.sa_sigaction
== sigurcu_handler
);