[8118303] | 1 | // -*- Mode: CFA -*-
|
---|
| 2 | //
|
---|
| 3 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
| 4 | //
|
---|
| 5 | // The contents of this file are covered under the licence agreement in the
|
---|
| 6 | // file "LICENCE" distributed with Cforall.
|
---|
| 7 | //
|
---|
| 8 | // kernel.c --
|
---|
| 9 | //
|
---|
| 10 | // Author : Thierry Delisle
|
---|
[75f3522] | 11 | // Created On : Tue Jan 17 12:27:26 2017
|
---|
[8118303] | 12 | // Last Modified By : Thierry Delisle
|
---|
| 13 | // Last Modified On : --
|
---|
| 14 | // Update Count : 0
|
---|
| 15 | //
|
---|
| 16 |
|
---|
[9d944b2] | 17 | #include "startup.h"
|
---|
| 18 |
|
---|
[0c92c9f] | 19 | //Start and stop routine for the kernel, declared first to make sure they run first
|
---|
[9d944b2] | 20 | void kernel_startup(void) __attribute__(( constructor( STARTUP_PRIORITY_KERNEL ) ));
|
---|
| 21 | void kernel_shutdown(void) __attribute__(( destructor ( STARTUP_PRIORITY_KERNEL ) ));
|
---|
[0c92c9f] | 22 |
|
---|
[8118303] | 23 | //Header
|
---|
[75f3522] | 24 | #include "kernel_private.h"
|
---|
[8118303] | 25 |
|
---|
| 26 | //C Includes
|
---|
[c84e80a] | 27 | #include <stddef.h>
|
---|
[eb2e723] | 28 | extern "C" {
|
---|
[9d944b2] | 29 | #include <stdio.h>
|
---|
[8fcbb4c] | 30 | #include <fenv.h>
|
---|
[eb2e723] | 31 | #include <sys/resource.h>
|
---|
[9d944b2] | 32 | #include <signal.h>
|
---|
| 33 | #include <unistd.h>
|
---|
[eb2e723] | 34 | }
|
---|
[8118303] | 35 |
|
---|
| 36 | //CFA Includes
|
---|
| 37 | #include "libhdr.h"
|
---|
| 38 |
|
---|
| 39 | //Private includes
|
---|
| 40 | #define __CFA_INVOKE_PRIVATE__
|
---|
| 41 | #include "invoke.h"
|
---|
| 42 |
|
---|
[8def349] | 43 | //-----------------------------------------------------------------------------
|
---|
| 44 | // Kernel storage
|
---|
| 45 | #define KERNEL_STORAGE(T,X) static char X##_storage[sizeof(T)]
|
---|
| 46 |
|
---|
| 47 | KERNEL_STORAGE(processorCtx_t, systemProcessorCtx);
|
---|
| 48 | KERNEL_STORAGE(cluster, systemCluster);
|
---|
| 49 | KERNEL_STORAGE(processor, systemProcessor);
|
---|
[348006f] | 50 | KERNEL_STORAGE(thread_desc, mainThread);
|
---|
[8def349] | 51 | KERNEL_STORAGE(machine_context_t, mainThread_context);
|
---|
| 52 |
|
---|
[bd98b58] | 53 | cluster * systemCluster;
|
---|
[eb2e723] | 54 | processor * systemProcessor;
|
---|
[348006f] | 55 | thread_desc * mainThread;
|
---|
[eb2e723] | 56 |
|
---|
[bd98b58] | 57 | //-----------------------------------------------------------------------------
|
---|
| 58 | // Global state
|
---|
| 59 |
|
---|
[8def349] | 60 | thread_local processor * this_processor;
|
---|
| 61 |
|
---|
[c3acb841] | 62 | coroutine_desc * this_coroutine(void) {
|
---|
[bd98b58] | 63 | return this_processor->current_coroutine;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
[348006f] | 66 | thread_desc * this_thread(void) {
|
---|
[bd98b58] | 67 | return this_processor->current_thread;
|
---|
[c84e80a] | 68 | }
|
---|
| 69 |
|
---|
| 70 | //-----------------------------------------------------------------------------
|
---|
[8def349] | 71 | // Main thread construction
|
---|
| 72 | struct current_stack_info_t {
|
---|
| 73 | machine_context_t ctx;
|
---|
| 74 | unsigned int size; // size of stack
|
---|
| 75 | void *base; // base of stack
|
---|
| 76 | void *storage; // pointer to stack
|
---|
| 77 | void *limit; // stack grows towards stack limit
|
---|
| 78 | void *context; // address of cfa_context_t
|
---|
| 79 | void *top; // address of top of storage
|
---|
[c84e80a] | 80 | };
|
---|
| 81 |
|
---|
[8def349] | 82 | void ?{}( current_stack_info_t * this ) {
|
---|
| 83 | CtxGet( &this->ctx );
|
---|
| 84 | this->base = this->ctx.FP;
|
---|
| 85 | this->storage = this->ctx.SP;
|
---|
| 86 |
|
---|
| 87 | rlimit r;
|
---|
[132fad4] | 88 | getrlimit( RLIMIT_STACK, &r);
|
---|
[8def349] | 89 | this->size = r.rlim_cur;
|
---|
| 90 |
|
---|
| 91 | this->limit = (void *)(((intptr_t)this->base) - this->size);
|
---|
| 92 | this->context = &mainThread_context_storage;
|
---|
| 93 | this->top = this->base;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | void ?{}( coStack_t * this, current_stack_info_t * info) {
|
---|
| 97 | this->size = info->size;
|
---|
| 98 | this->storage = info->storage;
|
---|
| 99 | this->limit = info->limit;
|
---|
| 100 | this->base = info->base;
|
---|
| 101 | this->context = info->context;
|
---|
| 102 | this->top = info->top;
|
---|
| 103 | this->userStack = true;
|
---|
| 104 | }
|
---|
| 105 |
|
---|
[c3acb841] | 106 | void ?{}( coroutine_desc * this, current_stack_info_t * info) {
|
---|
[8def349] | 107 | (&this->stack){ info };
|
---|
| 108 | this->name = "Main Thread";
|
---|
| 109 | this->errno_ = 0;
|
---|
[ee897e4b] | 110 | this->state = Start;
|
---|
[8def349] | 111 | }
|
---|
| 112 |
|
---|
[348006f] | 113 | void ?{}( thread_desc * this, current_stack_info_t * info) {
|
---|
[17af7d1] | 114 | (&this->cor){ info };
|
---|
[8def349] | 115 | }
|
---|
[c84e80a] | 116 |
|
---|
[8def349] | 117 | //-----------------------------------------------------------------------------
|
---|
| 118 | // Processor coroutine
|
---|
[eb2e723] | 119 | void ?{}(processorCtx_t * this, processor * proc) {
|
---|
[17af7d1] | 120 | (&this->__cor){};
|
---|
[c84e80a] | 121 | this->proc = proc;
|
---|
[8fcbb4c] | 122 | proc->runner = this;
|
---|
[8def349] | 123 | }
|
---|
| 124 |
|
---|
| 125 | void ?{}(processorCtx_t * this, processor * proc, current_stack_info_t * info) {
|
---|
[17af7d1] | 126 | (&this->__cor){ info };
|
---|
[8def349] | 127 | this->proc = proc;
|
---|
[8fcbb4c] | 128 | proc->runner = this;
|
---|
[8def349] | 129 | }
|
---|
| 130 |
|
---|
| 131 | void ?{}(processor * this) {
|
---|
| 132 | this{ systemCluster };
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | void ?{}(processor * this, cluster * cltr) {
|
---|
| 136 | this->cltr = cltr;
|
---|
| 137 | this->current_coroutine = NULL;
|
---|
| 138 | this->current_thread = NULL;
|
---|
[db6f06a] | 139 | (&this->terminated){};
|
---|
| 140 | this->is_terminated = false;
|
---|
[8def349] | 141 |
|
---|
| 142 | start( this );
|
---|
[c84e80a] | 143 | }
|
---|
| 144 |
|
---|
[8fcbb4c] | 145 | void ?{}(processor * this, cluster * cltr, processorCtx_t * runner) {
|
---|
[8def349] | 146 | this->cltr = cltr;
|
---|
| 147 | this->current_coroutine = NULL;
|
---|
| 148 | this->current_thread = NULL;
|
---|
[db6f06a] | 149 | (&this->terminated){};
|
---|
| 150 | this->is_terminated = false;
|
---|
[8def349] | 151 |
|
---|
[8fcbb4c] | 152 | this->runner = runner;
|
---|
[9d944b2] | 153 | LIB_DEBUG_PRINT_SAFE("Kernel : constructing processor context %p\n", runner);
|
---|
[8fcbb4c] | 154 | runner{ this };
|
---|
[8def349] | 155 | }
|
---|
| 156 |
|
---|
| 157 | void ^?{}(processor * this) {
|
---|
[db6f06a] | 158 | if( ! this->is_terminated ) {
|
---|
[9d944b2] | 159 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p signaling termination\n", this);
|
---|
[db6f06a] | 160 | this->is_terminated = true;
|
---|
| 161 | wait( &this->terminated );
|
---|
[8def349] | 162 | }
|
---|
| 163 | }
|
---|
| 164 |
|
---|
| 165 | void ?{}(cluster * this) {
|
---|
| 166 | ( &this->ready_queue ){};
|
---|
[eafb094] | 167 | ( &this->lock ){};
|
---|
[8def349] | 168 | }
|
---|
| 169 |
|
---|
| 170 | void ^?{}(cluster * this) {
|
---|
[8fcbb4c] | 171 |
|
---|
[c84e80a] | 172 | }
|
---|
| 173 |
|
---|
[75f3522] | 174 | //=============================================================================================
|
---|
| 175 | // Kernel Scheduling logic
|
---|
| 176 | //=============================================================================================
|
---|
[8fcbb4c] | 177 | //Main of the processor contexts
|
---|
| 178 | void main(processorCtx_t * runner) {
|
---|
| 179 | processor * this = runner->proc;
|
---|
[9d944b2] | 180 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p starting\n", this);
|
---|
[8118303] | 181 |
|
---|
[348006f] | 182 | thread_desc * readyThread = NULL;
|
---|
[db6f06a] | 183 | for( unsigned int spin_count = 0; ! this->is_terminated; spin_count++ )
|
---|
[75f3522] | 184 | {
|
---|
[bd98b58] | 185 | readyThread = nextThread( this->cltr );
|
---|
[8118303] | 186 |
|
---|
[75f3522] | 187 | if(readyThread)
|
---|
| 188 | {
|
---|
| 189 | runThread(this, readyThread);
|
---|
| 190 |
|
---|
| 191 | //Some actions need to be taken from the kernel
|
---|
[db6f06a] | 192 | finishRunning(this);
|
---|
[75f3522] | 193 |
|
---|
[c84e80a] | 194 | spin_count = 0;
|
---|
[75f3522] | 195 | }
|
---|
| 196 | else
|
---|
| 197 | {
|
---|
[c84e80a] | 198 | spin(this, &spin_count);
|
---|
| 199 | }
|
---|
| 200 | }
|
---|
[8118303] | 201 |
|
---|
[9d944b2] | 202 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p unlocking thread\n", this);
|
---|
[db6f06a] | 203 | signal( &this->terminated );
|
---|
[9d944b2] | 204 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p terminated\n", this);
|
---|
[c84e80a] | 205 | }
|
---|
| 206 |
|
---|
[75f3522] | 207 | // runThread runs a thread by context switching
|
---|
[0c92c9f] | 208 | // from the processor coroutine to the target thread
|
---|
[348006f] | 209 | void runThread(processor * this, thread_desc * dst) {
|
---|
[c3acb841] | 210 | coroutine_desc * proc_cor = get_coroutine(this->runner);
|
---|
| 211 | coroutine_desc * thrd_cor = get_coroutine(dst);
|
---|
[75f3522] | 212 |
|
---|
| 213 | //Reset the terminating actions here
|
---|
[db6f06a] | 214 | this->finish.action_code = No_Action;
|
---|
[8fcbb4c] | 215 |
|
---|
[75f3522] | 216 | //Update global state
|
---|
| 217 | this->current_thread = dst;
|
---|
| 218 |
|
---|
| 219 | // Context Switch to the thread
|
---|
| 220 | ThreadCtxSwitch(proc_cor, thrd_cor);
|
---|
| 221 | // when ThreadCtxSwitch returns we are back in the processor coroutine
|
---|
| 222 | }
|
---|
| 223 |
|
---|
| 224 | // Once a thread has finished running, some of
|
---|
| 225 | // its final actions must be executed from the kernel
|
---|
[db6f06a] | 226 | void finishRunning(processor * this) {
|
---|
| 227 | if( this->finish.action_code == Release ) {
|
---|
| 228 | unlock( this->finish.lock );
|
---|
| 229 | }
|
---|
| 230 | else if( this->finish.action_code == Schedule ) {
|
---|
| 231 | ScheduleThread( this->finish.thrd );
|
---|
| 232 | }
|
---|
| 233 | else if( this->finish.action_code == Release_Schedule ) {
|
---|
| 234 | unlock( this->finish.lock );
|
---|
| 235 | ScheduleThread( this->finish.thrd );
|
---|
| 236 | }
|
---|
| 237 | else {
|
---|
| 238 | assert(this->finish.action_code == No_Action);
|
---|
[8fcbb4c] | 239 | }
|
---|
[c84e80a] | 240 | }
|
---|
| 241 |
|
---|
[0c92c9f] | 242 | // Handles spinning logic
|
---|
| 243 | // TODO : find some strategy to put cores to sleep after some time
|
---|
[c84e80a] | 244 | void spin(processor * this, unsigned int * spin_count) {
|
---|
| 245 | (*spin_count)++;
|
---|
| 246 | }
|
---|
| 247 |
|
---|
[0c92c9f] | 248 | // Context invoker for processors
|
---|
| 249 | // This is the entry point for processors (kernel threads)
|
---|
| 250 | // It effectively constructs a coroutine by stealing the pthread stack
|
---|
[8def349] | 251 | void * CtxInvokeProcessor(void * arg) {
|
---|
| 252 | processor * proc = (processor *) arg;
|
---|
| 253 | this_processor = proc;
|
---|
| 254 | // SKULLDUGGERY: We want to create a context for the processor coroutine
|
---|
| 255 | // which is needed for the 2-step context switch. However, there is no reason
|
---|
| 256 | // to waste the perfectly valid stack create by pthread.
|
---|
| 257 | current_stack_info_t info;
|
---|
| 258 | machine_context_t ctx;
|
---|
| 259 | info.context = &ctx;
|
---|
| 260 | processorCtx_t proc_cor_storage = { proc, &info };
|
---|
| 261 |
|
---|
[9d944b2] | 262 | LIB_DEBUG_PRINT_SAFE("Coroutine : created stack %p\n", proc_cor_storage.__cor.stack.base);
|
---|
[8fcbb4c] | 263 |
|
---|
[0c92c9f] | 264 | //Set global state
|
---|
[17af7d1] | 265 | proc->current_coroutine = &proc->runner->__cor;
|
---|
[8def349] | 266 | proc->current_thread = NULL;
|
---|
| 267 |
|
---|
| 268 | //We now have a proper context from which to schedule threads
|
---|
[9d944b2] | 269 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p created (%p, %p)\n", proc, proc->runner, &ctx);
|
---|
[8def349] | 270 |
|
---|
| 271 | // SKULLDUGGERY: Since the coroutine doesn't have its own stack, we can't
|
---|
| 272 | // resume it to start it like it normally would, it will just context switch
|
---|
| 273 | // back to here. Instead directly call the main since we already are on the
|
---|
| 274 | // appropriate stack.
|
---|
[17af7d1] | 275 | proc_cor_storage.__cor.state = Active;
|
---|
[8def349] | 276 | main( &proc_cor_storage );
|
---|
[17af7d1] | 277 | proc_cor_storage.__cor.state = Halted;
|
---|
[8def349] | 278 |
|
---|
[0c92c9f] | 279 | // Main routine of the core returned, the core is now fully terminated
|
---|
[9d944b2] | 280 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p main ended (%p)\n", proc, proc->runner);
|
---|
[8def349] | 281 |
|
---|
| 282 | return NULL;
|
---|
[c84e80a] | 283 | }
|
---|
| 284 |
|
---|
[8def349] | 285 | void start(processor * this) {
|
---|
[9d944b2] | 286 | LIB_DEBUG_PRINT_SAFE("Kernel : Starting core %p\n", this);
|
---|
[8def349] | 287 |
|
---|
[8fcbb4c] | 288 | // pthread_attr_t attributes;
|
---|
| 289 | // pthread_attr_init( &attributes );
|
---|
[eb2e723] | 290 |
|
---|
[8fcbb4c] | 291 | pthread_create( &this->kernel_thread, NULL, CtxInvokeProcessor, (void*)this );
|
---|
[eb2e723] | 292 |
|
---|
[8fcbb4c] | 293 | // pthread_attr_destroy( &attributes );
|
---|
[eb2e723] | 294 |
|
---|
[9d944b2] | 295 | LIB_DEBUG_PRINT_SAFE("Kernel : core %p started\n", this);
|
---|
[eb2e723] | 296 | }
|
---|
| 297 |
|
---|
[8def349] | 298 | //-----------------------------------------------------------------------------
|
---|
| 299 | // Scheduler routines
|
---|
[348006f] | 300 | void ScheduleThread( thread_desc * thrd ) {
|
---|
[8def349] | 301 | assertf( thrd->next == NULL, "Expected null got %p", thrd->next );
|
---|
| 302 |
|
---|
[db6f06a] | 303 | lock( &systemProcessor->cltr->lock );
|
---|
[8def349] | 304 | append( &systemProcessor->cltr->ready_queue, thrd );
|
---|
[db6f06a] | 305 | unlock( &systemProcessor->cltr->lock );
|
---|
| 306 | }
|
---|
| 307 |
|
---|
[348006f] | 308 | thread_desc * nextThread(cluster * this) {
|
---|
[db6f06a] | 309 | lock( &this->lock );
|
---|
[348006f] | 310 | thread_desc * head = pop_head( &this->ready_queue );
|
---|
[db6f06a] | 311 | unlock( &this->lock );
|
---|
| 312 | return head;
|
---|
[eb2e723] | 313 | }
|
---|
| 314 |
|
---|
[75f3522] | 315 | void ScheduleInternal() {
|
---|
| 316 | suspend();
|
---|
| 317 | }
|
---|
| 318 |
|
---|
[db6f06a] | 319 | void ScheduleInternal( spinlock * lock ) {
|
---|
[89a3df5] | 320 | this_processor->finish.action_code = Release;
|
---|
| 321 | this_processor->finish.lock = lock;
|
---|
[db6f06a] | 322 | suspend();
|
---|
| 323 | }
|
---|
| 324 |
|
---|
[348006f] | 325 | void ScheduleInternal( thread_desc * thrd ) {
|
---|
[89a3df5] | 326 | this_processor->finish.action_code = Schedule;
|
---|
| 327 | this_processor->finish.thrd = thrd;
|
---|
[db6f06a] | 328 | suspend();
|
---|
| 329 | }
|
---|
| 330 |
|
---|
[348006f] | 331 | void ScheduleInternal( spinlock * lock, thread_desc * thrd ) {
|
---|
[89a3df5] | 332 | this_processor->finish.action_code = Release_Schedule;
|
---|
| 333 | this_processor->finish.lock = lock;
|
---|
| 334 | this_processor->finish.thrd = thrd;
|
---|
[db6f06a] | 335 | suspend();
|
---|
[eb2e723] | 336 | }
|
---|
| 337 |
|
---|
| 338 | //-----------------------------------------------------------------------------
|
---|
| 339 | // Kernel boot procedures
|
---|
| 340 | void kernel_startup(void) {
|
---|
[9d944b2] | 341 | LIB_DEBUG_PRINT_SAFE("Kernel : Starting\n");
|
---|
[eb2e723] | 342 |
|
---|
| 343 | // Start by initializing the main thread
|
---|
[8fcbb4c] | 344 | // SKULLDUGGERY: the mainThread steals the process main thread
|
---|
| 345 | // which will then be scheduled by the systemProcessor normally
|
---|
[348006f] | 346 | mainThread = (thread_desc *)&mainThread_storage;
|
---|
[8fcbb4c] | 347 | current_stack_info_t info;
|
---|
[8def349] | 348 | mainThread{ &info };
|
---|
[eb2e723] | 349 |
|
---|
[bd98b58] | 350 | // Initialize the system cluster
|
---|
| 351 | systemCluster = (cluster *)&systemCluster_storage;
|
---|
| 352 | systemCluster{};
|
---|
| 353 |
|
---|
[8def349] | 354 | // Initialize the system processor and the system processor ctx
|
---|
[eb2e723] | 355 | // (the coroutine that contains the processing control flow)
|
---|
[8def349] | 356 | systemProcessor = (processor *)&systemProcessor_storage;
|
---|
| 357 | systemProcessor{ systemCluster, (processorCtx_t *)&systemProcessorCtx_storage };
|
---|
[eb2e723] | 358 |
|
---|
[dcb42b8] | 359 | // Add the main thread to the ready queue
|
---|
| 360 | // once resume is called on systemProcessor->ctx the mainThread needs to be scheduled like any normal thread
|
---|
[75f3522] | 361 | ScheduleThread(mainThread);
|
---|
[eb2e723] | 362 |
|
---|
[dcb42b8] | 363 | //initialize the global state variables
|
---|
[bd98b58] | 364 | this_processor = systemProcessor;
|
---|
| 365 | this_processor->current_thread = mainThread;
|
---|
[17af7d1] | 366 | this_processor->current_coroutine = &mainThread->cor;
|
---|
[eb2e723] | 367 |
|
---|
[dcb42b8] | 368 | // SKULLDUGGERY: Force a context switch to the system processor to set the main thread's context to the current UNIX
|
---|
| 369 | // context. Hence, the main thread does not begin through CtxInvokeThread, like all other threads. The trick here is that
|
---|
| 370 | // mainThread is on the ready queue when this call is made.
|
---|
[8fcbb4c] | 371 | resume(systemProcessor->runner);
|
---|
[eb2e723] | 372 |
|
---|
[dcb42b8] | 373 |
|
---|
| 374 |
|
---|
| 375 | // THE SYSTEM IS NOW COMPLETELY RUNNING
|
---|
[9d944b2] | 376 | LIB_DEBUG_PRINT_SAFE("Kernel : Started\n--------------------------------------------------\n\n");
|
---|
[eb2e723] | 377 | }
|
---|
| 378 |
|
---|
[dcb42b8] | 379 | void kernel_shutdown(void) {
|
---|
[9d944b2] | 380 | LIB_DEBUG_PRINT_SAFE("\n--------------------------------------------------\nKernel : Shutting down\n");
|
---|
[eb2e723] | 381 |
|
---|
[dcb42b8] | 382 | // SKULLDUGGERY: Notify the systemProcessor it needs to terminates.
|
---|
| 383 | // When its coroutine terminates, it return control to the mainThread
|
---|
| 384 | // which is currently here
|
---|
[db6f06a] | 385 | systemProcessor->is_terminated = true;
|
---|
[eb2e723] | 386 | suspend();
|
---|
| 387 |
|
---|
[dcb42b8] | 388 | // THE SYSTEM IS NOW COMPLETELY STOPPED
|
---|
[eb2e723] | 389 |
|
---|
[dcb42b8] | 390 | // Destroy the system processor and its context in reverse order of construction
|
---|
| 391 | // These were manually constructed so we need manually destroy them
|
---|
[8fcbb4c] | 392 | ^(systemProcessor->runner){};
|
---|
[eb2e723] | 393 | ^(systemProcessor){};
|
---|
| 394 |
|
---|
[dcb42b8] | 395 | // Final step, destroy the main thread since it is no longer needed
|
---|
| 396 | // Since we provided a stack to this taxk it will not destroy anything
|
---|
[eb2e723] | 397 | ^(mainThread){};
|
---|
| 398 |
|
---|
[9d944b2] | 399 | LIB_DEBUG_PRINT_SAFE("Kernel : Shutdown complete\n");
|
---|
| 400 | }
|
---|
| 401 |
|
---|
| 402 | static spinlock kernel_abort_lock;
|
---|
| 403 | static spinlock kernel_debug_lock;
|
---|
| 404 | static bool kernel_abort_called = false;
|
---|
| 405 |
|
---|
| 406 | void * kernel_abort (void) __attribute__ ((__nothrow__)) {
|
---|
| 407 | // abort cannot be recursively entered by the same or different processors because all signal handlers return when
|
---|
| 408 | // the globalAbort flag is true.
|
---|
| 409 | lock( &kernel_abort_lock );
|
---|
| 410 |
|
---|
| 411 | // first task to abort ?
|
---|
| 412 | if ( !kernel_abort_called ) { // not first task to abort ?
|
---|
| 413 | kernel_abort_called = true;
|
---|
| 414 | unlock( &kernel_abort_lock );
|
---|
| 415 | }
|
---|
| 416 | else {
|
---|
| 417 | unlock( &kernel_abort_lock );
|
---|
| 418 |
|
---|
| 419 | sigset_t mask;
|
---|
| 420 | sigemptyset( &mask );
|
---|
| 421 | sigaddset( &mask, SIGALRM ); // block SIGALRM signals
|
---|
| 422 | sigaddset( &mask, SIGUSR1 ); // block SIGUSR1 signals
|
---|
| 423 | sigsuspend( &mask ); // block the processor to prevent further damage during abort
|
---|
| 424 | _exit( EXIT_FAILURE ); // if processor unblocks before it is killed, terminate it
|
---|
| 425 | }
|
---|
| 426 |
|
---|
| 427 | return this_thread();
|
---|
| 428 | }
|
---|
| 429 |
|
---|
| 430 | void kernel_abort_msg( void * kernel_data, char * abort_text, int abort_text_size ) {
|
---|
| 431 | thread_desc * thrd = kernel_data;
|
---|
| 432 |
|
---|
| 433 | int len = snprintf( abort_text, abort_text_size, "Error occurred while executing task %.256s (%p)", thrd->cor.name, thrd );
|
---|
| 434 | __lib_debug_write( STDERR_FILENO, abort_text, len );
|
---|
| 435 |
|
---|
| 436 | if ( thrd != this_coroutine() ) {
|
---|
| 437 | len = snprintf( abort_text, abort_text_size, " in coroutine %.256s (%p).\n", this_coroutine()->name, this_coroutine() );
|
---|
| 438 | __lib_debug_write( STDERR_FILENO, abort_text, len );
|
---|
| 439 | }
|
---|
| 440 | else {
|
---|
| 441 | __lib_debug_write( STDERR_FILENO, ".\n", 2 );
|
---|
| 442 | }
|
---|
| 443 | }
|
---|
| 444 |
|
---|
| 445 | extern "C" {
|
---|
| 446 | void __lib_debug_acquire() {
|
---|
| 447 | lock(&kernel_debug_lock);
|
---|
| 448 | }
|
---|
| 449 |
|
---|
| 450 | void __lib_debug_release() {
|
---|
| 451 | unlock(&kernel_debug_lock);
|
---|
| 452 | }
|
---|
[8118303] | 453 | }
|
---|
| 454 |
|
---|
[bd98b58] | 455 | //-----------------------------------------------------------------------------
|
---|
| 456 | // Locks
|
---|
[db6f06a] | 457 | void ?{}( spinlock * this ) {
|
---|
| 458 | this->lock = 0;
|
---|
[bd98b58] | 459 | }
|
---|
[db6f06a] | 460 | void ^?{}( spinlock * this ) {
|
---|
[bd98b58] | 461 |
|
---|
[db6f06a] | 462 | }
|
---|
| 463 |
|
---|
| 464 | void lock( spinlock * this ) {
|
---|
| 465 | for ( unsigned int i = 1;; i += 1 ) {
|
---|
| 466 | if ( this->lock == 0 && __sync_lock_test_and_set_4( &this->lock, 1 ) == 0 ) break;
|
---|
| 467 | }
|
---|
| 468 | }
|
---|
[bd98b58] | 469 |
|
---|
[db6f06a] | 470 | void unlock( spinlock * this ) {
|
---|
| 471 | __sync_lock_release_4( &this->lock );
|
---|
[bd98b58] | 472 | }
|
---|
| 473 |
|
---|
[db6f06a] | 474 | void ?{}( signal_once * this ) {
|
---|
| 475 | this->condition = false;
|
---|
| 476 | }
|
---|
| 477 | void ^?{}( signal_once * this ) {
|
---|
| 478 |
|
---|
| 479 | }
|
---|
| 480 |
|
---|
| 481 | void wait( signal_once * this ) {
|
---|
| 482 | lock( &this->lock );
|
---|
| 483 | if( !this->condition ) {
|
---|
[8def349] | 484 | append( &this->blocked, this_thread() );
|
---|
[db6f06a] | 485 | ScheduleInternal( &this->lock );
|
---|
| 486 | lock( &this->lock );
|
---|
[8def349] | 487 | }
|
---|
[db6f06a] | 488 | unlock( &this->lock );
|
---|
[bd98b58] | 489 | }
|
---|
| 490 |
|
---|
[db6f06a] | 491 | void signal( signal_once * this ) {
|
---|
| 492 | lock( &this->lock );
|
---|
| 493 | {
|
---|
| 494 | this->condition = true;
|
---|
| 495 |
|
---|
[348006f] | 496 | thread_desc * it;
|
---|
[db6f06a] | 497 | while( it = pop_head( &this->blocked) ) {
|
---|
| 498 | ScheduleThread( it );
|
---|
| 499 | }
|
---|
[bd98b58] | 500 | }
|
---|
[db6f06a] | 501 | unlock( &this->lock );
|
---|
[bd98b58] | 502 | }
|
---|
| 503 |
|
---|
| 504 | //-----------------------------------------------------------------------------
|
---|
| 505 | // Queues
|
---|
| 506 | void ?{}( simple_thread_list * this ) {
|
---|
| 507 | this->head = NULL;
|
---|
| 508 | this->tail = &this->head;
|
---|
| 509 | }
|
---|
| 510 |
|
---|
[348006f] | 511 | void append( simple_thread_list * this, thread_desc * t ) {
|
---|
[f07e037] | 512 | assert(this->tail != NULL);
|
---|
[bd98b58] | 513 | *this->tail = t;
|
---|
| 514 | this->tail = &t->next;
|
---|
| 515 | }
|
---|
| 516 |
|
---|
[348006f] | 517 | thread_desc * pop_head( simple_thread_list * this ) {
|
---|
| 518 | thread_desc * head = this->head;
|
---|
[bd98b58] | 519 | if( head ) {
|
---|
| 520 | this->head = head->next;
|
---|
| 521 | if( !head->next ) {
|
---|
| 522 | this->tail = &this->head;
|
---|
| 523 | }
|
---|
| 524 | head->next = NULL;
|
---|
| 525 | }
|
---|
| 526 | return head;
|
---|
| 527 | }
|
---|
[8118303] | 528 | // Local Variables: //
|
---|
| 529 | // mode: c //
|
---|
| 530 | // tab-width: 4 //
|
---|
| 531 | // End: //
|
---|