1 | /* |
---|
2 | * remote_sem.c - POSIX unnamed semaphore implementation. |
---|
3 | * |
---|
4 | * Author Alain Greiner (2016,2017,2018) |
---|
5 | * |
---|
6 | * Copyright (c) UPMC Sorbonne Universites |
---|
7 | * |
---|
8 | * This file is part of ALMOS-MKH. |
---|
9 | * |
---|
10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
11 | * under the terms of the GNU General Public License as published by |
---|
12 | * the Free Software Foundation; version 2.0 of the License. |
---|
13 | * |
---|
14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | * General Public License for more details. |
---|
18 | * |
---|
19 | * You should have received a copy of the GNU General Public License |
---|
20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
22 | */ |
---|
23 | |
---|
24 | #include <hal_kernel_types.h> |
---|
25 | #include <hal_remote.h> |
---|
26 | #include <thread.h> |
---|
27 | #include <kmem.h> |
---|
28 | #include <printk.h> |
---|
29 | #include <process.h> |
---|
30 | #include <vmm.h> |
---|
31 | #include <remote_sem.h> |
---|
32 | |
---|
33 | |
---|
34 | /////////////////////////////////////////////// |
---|
35 | xptr_t remote_sem_from_ident( intptr_t ident ) |
---|
36 | { |
---|
37 | // get pointer on local process_descriptor |
---|
38 | process_t * process = CURRENT_THREAD->process; |
---|
39 | |
---|
40 | // get extended pointer on reference process |
---|
41 | xptr_t ref_xp = process->ref_xp; |
---|
42 | |
---|
43 | // get cluster and local pointer on reference process |
---|
44 | cxy_t ref_cxy = GET_CXY( ref_xp ); |
---|
45 | process_t * ref_ptr = GET_PTR( ref_xp ); |
---|
46 | |
---|
47 | // get extended pointer on semaphores list |
---|
48 | xptr_t root_xp = XPTR( ref_cxy , &ref_ptr->sem_root ); |
---|
49 | xptr_t lock_xp = XPTR( ref_cxy , &ref_ptr->sync_lock ); |
---|
50 | |
---|
51 | // get lock protecting synchro lists |
---|
52 | remote_queuelock_acquire( lock_xp ); |
---|
53 | |
---|
54 | // scan reference process semaphores list |
---|
55 | xptr_t iter_xp; |
---|
56 | xptr_t sem_xp; |
---|
57 | cxy_t sem_cxy; |
---|
58 | remote_sem_t * sem_ptr; |
---|
59 | intptr_t current; |
---|
60 | bool_t found = false; |
---|
61 | |
---|
62 | XLIST_FOREACH( root_xp , iter_xp ) |
---|
63 | { |
---|
64 | sem_xp = XLIST_ELEMENT( iter_xp , remote_sem_t , list ); |
---|
65 | sem_cxy = GET_CXY( sem_xp ); |
---|
66 | sem_ptr = GET_PTR( sem_xp ); |
---|
67 | current = (intptr_t)hal_remote_lpt( XPTR( sem_cxy , &sem_ptr->ident ) ); |
---|
68 | |
---|
69 | if( current == ident ) |
---|
70 | { |
---|
71 | found = true; |
---|
72 | break; |
---|
73 | } |
---|
74 | } |
---|
75 | |
---|
76 | // relese lock protecting synchros lists |
---|
77 | remote_queuelock_release( lock_xp ); |
---|
78 | |
---|
79 | if( found == false ) return XPTR_NULL; |
---|
80 | else return sem_xp; |
---|
81 | |
---|
82 | } // end remote_sem_from_ident() |
---|
83 | |
---|
84 | /////////////////////////////////////////// |
---|
85 | error_t remote_sem_create( intptr_t vaddr, |
---|
86 | uint32_t value ) |
---|
87 | { |
---|
88 | remote_sem_t * sem_ptr; |
---|
89 | xptr_t sem_xp; |
---|
90 | |
---|
91 | // get pointer on local process descriptor |
---|
92 | process_t * process = CURRENT_THREAD->process; |
---|
93 | |
---|
94 | // get extended pointer on reference process |
---|
95 | xptr_t ref_xp = process->ref_xp; |
---|
96 | |
---|
97 | // get reference process cluster and local pointer |
---|
98 | cxy_t ref_cxy = GET_CXY( ref_xp ); |
---|
99 | process_t * ref_ptr = (process_t *)GET_PTR( ref_xp ); |
---|
100 | |
---|
101 | // allocate memory for new semaphore in reference cluster |
---|
102 | if( ref_cxy == local_cxy ) // local cluster is the reference |
---|
103 | { |
---|
104 | kmem_req_t req; |
---|
105 | req.type = KMEM_SEM; |
---|
106 | req.flags = AF_ZERO; |
---|
107 | sem_ptr = kmem_alloc( &req ); |
---|
108 | sem_xp = XPTR( local_cxy , sem_ptr ); |
---|
109 | } |
---|
110 | else // reference is remote |
---|
111 | { |
---|
112 | rpc_kcm_alloc_client( ref_cxy , KMEM_SEM , &sem_xp ); |
---|
113 | sem_ptr = GET_PTR( sem_xp ); |
---|
114 | } |
---|
115 | |
---|
116 | if( sem_xp == XPTR_NULL ) return 0xFFFFFFFF; |
---|
117 | |
---|
118 | // initialise semaphore |
---|
119 | hal_remote_s32 ( XPTR( ref_cxy , &sem_ptr->count ) , value ); |
---|
120 | hal_remote_spt( XPTR( ref_cxy , &sem_ptr->ident ) , (void *)vaddr ); |
---|
121 | xlist_root_init( XPTR( ref_cxy , &sem_ptr->root ) ); |
---|
122 | xlist_entry_init( XPTR( ref_cxy , &sem_ptr->list ) ); |
---|
123 | remote_busylock_init( XPTR( ref_cxy , &sem_ptr->lock ), LOCK_SEM_STATE ); |
---|
124 | |
---|
125 | xptr_t root_xp = XPTR( ref_cxy , &ref_ptr->sem_root ); |
---|
126 | xptr_t list_xp = XPTR( ref_cxy , &sem_ptr->list ); |
---|
127 | |
---|
128 | // get lock protecting user synchro lists |
---|
129 | remote_queuelock_acquire( XPTR( ref_cxy , &ref_ptr->sync_lock ) ); |
---|
130 | |
---|
131 | // register semaphore in reference process list of semaphores |
---|
132 | xlist_add_first( root_xp , list_xp ); |
---|
133 | |
---|
134 | // release lock protecting user synchro lists |
---|
135 | remote_queuelock_release( XPTR( ref_cxy , &ref_ptr->sync_lock ) ); |
---|
136 | |
---|
137 | #if DEBUG_SEM |
---|
138 | thread_t * this = CURRENT_THREAD; |
---|
139 | if( (uint32_t)hal_get_cycles() > DEBUG_SEM ) |
---|
140 | printk("\n[DBG] %s : thread %x in process %x INITIALIZE sem(%x,%x) / value %d\n", |
---|
141 | __FUNCTION__, this->trdid, this->process->pid, local_cxy, sem_ptr, value ); |
---|
142 | #endif |
---|
143 | |
---|
144 | return 0; |
---|
145 | |
---|
146 | } // end remote_sem_create() |
---|
147 | |
---|
148 | //////////////////////////////////////// |
---|
149 | void remote_sem_destroy( xptr_t sem_xp ) |
---|
150 | { |
---|
151 | // get pointer on local process descriptor |
---|
152 | process_t * process = CURRENT_THREAD->process; |
---|
153 | |
---|
154 | // get extended pointer on reference process |
---|
155 | xptr_t ref_xp = process->ref_xp; |
---|
156 | |
---|
157 | // get reference process cluster and local pointer |
---|
158 | cxy_t ref_cxy = GET_CXY( ref_xp ); |
---|
159 | process_t * ref_ptr = GET_PTR( ref_xp ); |
---|
160 | |
---|
161 | // get semaphore cluster and local pointer |
---|
162 | cxy_t sem_cxy = GET_CXY( sem_xp ); |
---|
163 | remote_sem_t * sem_ptr = GET_PTR( sem_xp ); |
---|
164 | |
---|
165 | // get remote pointer on waiting queue root |
---|
166 | xptr_t root_xp = XPTR( sem_cxy , &sem_ptr->root ); |
---|
167 | |
---|
168 | if( !xlist_is_empty( root_xp ) ) // user error |
---|
169 | { |
---|
170 | printk("WARNING in %s for thread %x in process %x : " |
---|
171 | "destroy semaphore, but waiting threads queue not empty\n", |
---|
172 | __FUNCTION__ , CURRENT_THREAD->trdid , CURRENT_THREAD->process->pid ); |
---|
173 | } |
---|
174 | |
---|
175 | // remove semaphore from reference process xlist |
---|
176 | remote_queuelock_acquire( XPTR( ref_cxy , &ref_ptr->sync_lock ) ); |
---|
177 | xlist_unlink( XPTR( sem_cxy , &sem_ptr->list ) ); |
---|
178 | remote_queuelock_release( XPTR( ref_cxy , &ref_ptr->sync_lock ) ); |
---|
179 | |
---|
180 | // release memory allocated for semaphore descriptor |
---|
181 | if( sem_cxy == local_cxy ) // reference is local |
---|
182 | { |
---|
183 | kmem_req_t req; |
---|
184 | req.type = KMEM_SEM; |
---|
185 | req.ptr = sem_ptr; |
---|
186 | kmem_free( &req ); |
---|
187 | } |
---|
188 | else // reference is remote |
---|
189 | { |
---|
190 | rpc_kcm_free_client( sem_cxy , sem_ptr , KMEM_SEM ); |
---|
191 | } |
---|
192 | |
---|
193 | } // end remote_sem_destroy() |
---|
194 | |
---|
195 | ///////////////////////////////////// |
---|
196 | void remote_sem_wait( xptr_t sem_xp ) |
---|
197 | { |
---|
198 | thread_t * this = CURRENT_THREAD; |
---|
199 | |
---|
200 | // check calling thread can yield |
---|
201 | assert( (this->busylocks == 0), |
---|
202 | "cannot yield : busylocks = %d\n", this->busylocks ); |
---|
203 | |
---|
204 | |
---|
205 | // get semaphore cluster and local pointer |
---|
206 | cxy_t sem_cxy = GET_CXY( sem_xp ); |
---|
207 | remote_sem_t * sem_ptr = GET_PTR( sem_xp ); |
---|
208 | |
---|
209 | // get extended pointers on sem fields |
---|
210 | xptr_t count_xp = XPTR( sem_cxy , &sem_ptr->count ); |
---|
211 | xptr_t root_xp = XPTR( sem_cxy , &sem_ptr->root ); |
---|
212 | xptr_t lock_xp = XPTR( sem_cxy , &sem_ptr->lock ); |
---|
213 | |
---|
214 | while( 1 ) |
---|
215 | { |
---|
216 | // get busylock protecting semaphore |
---|
217 | remote_busylock_acquire( lock_xp ); |
---|
218 | |
---|
219 | // get semaphore current value |
---|
220 | uint32_t count = hal_remote_l32( count_xp ); |
---|
221 | |
---|
222 | if( count > 0 ) // success |
---|
223 | { |
---|
224 | // decrement semaphore value |
---|
225 | hal_remote_s32( count_xp , count - 1 ); |
---|
226 | |
---|
227 | #if DEBUG_SEM |
---|
228 | if( (uint32_t)hal_get_cycles() > DEBUG_SEM ) |
---|
229 | printk("\n[DBG] %s : thread %x in process %x DECREMENT sem(%x,%x) / value %d\n", |
---|
230 | __FUNCTION__, this->trdid, this->process->pid, sem_cxy, sem_ptr, count-1 ); |
---|
231 | #endif |
---|
232 | // release busylock protecting semaphore |
---|
233 | remote_busylock_release( XPTR( sem_cxy , &sem_ptr->lock ) ); |
---|
234 | |
---|
235 | return; |
---|
236 | } |
---|
237 | else // failure |
---|
238 | { |
---|
239 | // get cluster and pointers on calling thread |
---|
240 | cxy_t caller_cxy = local_cxy; |
---|
241 | thread_t * caller_ptr = CURRENT_THREAD; |
---|
242 | xptr_t caller_xp = XPTR( caller_cxy , caller_ptr ); |
---|
243 | |
---|
244 | // block the calling thread |
---|
245 | thread_block( caller_xp , THREAD_BLOCKED_SEM ); |
---|
246 | |
---|
247 | // register calling thread in waiting queue |
---|
248 | xptr_t entry_xp = XPTR( caller_cxy , &caller_ptr->wait_xlist ); |
---|
249 | xlist_add_last( root_xp , entry_xp ); |
---|
250 | |
---|
251 | #if DEBUG_SEM |
---|
252 | if( (uint32_t)hal_get_cycles() > DEBUG_SEM ) |
---|
253 | printk("\n[DBG] %s : thread %x in process %x BLOCK on sem(%x,%x) / value %d\n", |
---|
254 | __FUNCTION__, this->trdid, this->process->pid, sem_cxy, sem_ptr, count ); |
---|
255 | #endif |
---|
256 | // release busylock protecting semaphore |
---|
257 | remote_busylock_release( XPTR( sem_cxy , &sem_ptr->lock ) ); |
---|
258 | |
---|
259 | // deschedule calling thread |
---|
260 | sched_yield("blocked on semaphore"); |
---|
261 | } |
---|
262 | } |
---|
263 | } // end remote_sem_wait() |
---|
264 | |
---|
265 | ///////////////////////////////////// |
---|
266 | void remote_sem_post( xptr_t sem_xp ) |
---|
267 | { |
---|
268 | // memory barrier before sem release |
---|
269 | hal_fence(); |
---|
270 | |
---|
271 | // get semaphore cluster and local pointer |
---|
272 | cxy_t sem_cxy = GET_CXY( sem_xp ); |
---|
273 | remote_sem_t * sem_ptr = GET_PTR( sem_xp ); |
---|
274 | |
---|
275 | // get extended pointers on sem fields |
---|
276 | xptr_t count_xp = XPTR( sem_cxy , &sem_ptr->count ); |
---|
277 | xptr_t root_xp = XPTR( sem_cxy , &sem_ptr->root ); |
---|
278 | xptr_t lock_xp = XPTR( sem_cxy , &sem_ptr->lock ); |
---|
279 | |
---|
280 | // get busylock protecting semaphore |
---|
281 | remote_busylock_acquire( lock_xp ); |
---|
282 | |
---|
283 | // increment semaphore value |
---|
284 | hal_remote_atomic_add( count_xp , 1 ); |
---|
285 | |
---|
286 | #if DEBUG_SEM |
---|
287 | uint32_t count = hal_remote_l32( count_xp ); |
---|
288 | thread_t * this = CURRENT_THREAD; |
---|
289 | if( (uint32_t)hal_get_cycles() > DEBUG_SEM ) |
---|
290 | printk("\n[DBG] %s : thread %x in process %x INCREMENT sem(%x,%x) / value %d\n", |
---|
291 | __FUNCTION__, this->trdid, this->process->pid, sem_cxy, sem_ptr, count ); |
---|
292 | #endif |
---|
293 | |
---|
294 | // scan waiting queue to unblock all waiting threads |
---|
295 | while( xlist_is_empty( root_xp ) == false ) // waiting queue non empty |
---|
296 | { |
---|
297 | // get first waiting thread from queue |
---|
298 | xptr_t thread_xp = XLIST_FIRST( root_xp , thread_t , wait_xlist ); |
---|
299 | cxy_t thread_cxy = GET_CXY( thread_xp ); |
---|
300 | thread_t * thread_ptr = GET_PTR( thread_xp ); |
---|
301 | |
---|
302 | // remove this thread from the waiting queue |
---|
303 | xlist_unlink( XPTR( thread_cxy , &thread_ptr->wait_xlist ) ); |
---|
304 | |
---|
305 | // unblock this waiting thread |
---|
306 | thread_unblock( thread_xp , THREAD_BLOCKED_SEM ); |
---|
307 | |
---|
308 | #if DEBUG_SEM |
---|
309 | if( (uint32_t)hal_get_cycles() > DEBUG_SEM ) |
---|
310 | { |
---|
311 | trdid_t trdid = hal_remote_l32( XPTR( thread_cxy , &thread_ptr->trdid ) ); |
---|
312 | process_t * process = hal_remote_lpt( XPTR( thread_cxy , &thread_ptr->process ) ); |
---|
313 | pid_t pid = hal_remote_l32( XPTR( thread_cxy , &process->pid ) ); |
---|
314 | printk("\n[DBG] %s : thread %x in process %x UNBLOCK thread %x in process %x / sem(%x,%x)\n", |
---|
315 | __FUNCTION__, this->trdid, this->process->pid, trdid, pid, sem_cxy, sem_ptr ); |
---|
316 | } |
---|
317 | #endif |
---|
318 | |
---|
319 | } |
---|
320 | |
---|
321 | // release busylock protecting the semaphore |
---|
322 | remote_busylock_release( XPTR( sem_cxy , &sem_ptr->lock ) ); |
---|
323 | |
---|
324 | } // end remote_sem_post() |
---|
325 | |
---|
326 | |
---|
327 | ////////////////////////////////////////////// |
---|
328 | void remote_sem_get_value( xptr_t sem_xp, |
---|
329 | uint32_t * data ) |
---|
330 | { |
---|
331 | // get semaphore cluster and local pointer |
---|
332 | cxy_t sem_cxy = GET_CXY( sem_xp ); |
---|
333 | remote_sem_t * sem_ptr = GET_PTR( sem_xp ); |
---|
334 | |
---|
335 | *data = hal_remote_l32( XPTR( sem_cxy , &sem_ptr->count ) ); |
---|
336 | |
---|
337 | } // end remote_sem_get_value() |
---|
338 | |
---|
339 | |
---|