1 | /*
|
---|
2 | * Copyright (c) 2010 Jakub Jermar
|
---|
3 | * Copyright (c) 2018 Jiri Svoboda
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup kernel_generic_proc
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * @file
|
---|
36 | * @brief Task management.
|
---|
37 | */
|
---|
38 |
|
---|
39 | #include <assert.h>
|
---|
40 | #include <proc/thread.h>
|
---|
41 | #include <proc/task.h>
|
---|
42 | #include <mm/as.h>
|
---|
43 | #include <mm/slab.h>
|
---|
44 | #include <atomic.h>
|
---|
45 | #include <synch/futex.h>
|
---|
46 | #include <synch/spinlock.h>
|
---|
47 | #include <synch/waitq.h>
|
---|
48 | #include <arch.h>
|
---|
49 | #include <barrier.h>
|
---|
50 | #include <adt/list.h>
|
---|
51 | #include <adt/odict.h>
|
---|
52 | #include <cap/cap.h>
|
---|
53 | #include <ipc/ipc.h>
|
---|
54 | #include <ipc/ipcrsc.h>
|
---|
55 | #include <ipc/event.h>
|
---|
56 | #include <stdio.h>
|
---|
57 | #include <errno.h>
|
---|
58 | #include <halt.h>
|
---|
59 | #include <str.h>
|
---|
60 | #include <syscall/copy.h>
|
---|
61 | #include <macros.h>
|
---|
62 |
|
---|
63 | /** Spinlock protecting the @c tasks ordered dictionary. */
|
---|
64 | IRQ_SPINLOCK_INITIALIZE(tasks_lock);
|
---|
65 |
|
---|
66 | /** Ordered dictionary of active tasks by task ID.
|
---|
67 | *
|
---|
68 | * Members are task_t structures.
|
---|
69 | *
|
---|
70 | * The task is guaranteed to exist after it was found in the @c tasks
|
---|
71 | * dictionary as long as:
|
---|
72 | *
|
---|
73 | * @li the tasks_lock is held,
|
---|
74 | * @li the task's lock is held when task's lock is acquired before releasing
|
---|
75 | * tasks_lock or
|
---|
76 | * @li the task's refcount is greater than 0
|
---|
77 | *
|
---|
78 | */
|
---|
79 | odict_t tasks;
|
---|
80 |
|
---|
81 | static task_id_t task_counter = 0;
|
---|
82 |
|
---|
83 | static slab_cache_t *task_cache;
|
---|
84 |
|
---|
85 | /* Forward declarations. */
|
---|
86 | static void task_kill_internal(task_t *);
|
---|
87 | static errno_t tsk_constructor(void *, unsigned int);
|
---|
88 | static size_t tsk_destructor(void *);
|
---|
89 |
|
---|
90 | static void *tasks_getkey(odlink_t *);
|
---|
91 | static int tasks_cmp(void *, void *);
|
---|
92 |
|
---|
93 | /** Initialize kernel tasks support.
|
---|
94 | *
|
---|
95 | */
|
---|
96 | void task_init(void)
|
---|
97 | {
|
---|
98 | TASK = NULL;
|
---|
99 | odict_initialize(&tasks, tasks_getkey, tasks_cmp);
|
---|
100 | task_cache = slab_cache_create("task_t", sizeof(task_t), 0,
|
---|
101 | tsk_constructor, tsk_destructor, 0);
|
---|
102 | }
|
---|
103 |
|
---|
104 | /** Kill all tasks except the current task.
|
---|
105 | *
|
---|
106 | */
|
---|
107 | void task_done(void)
|
---|
108 | {
|
---|
109 | size_t tasks_left;
|
---|
110 | task_t *task;
|
---|
111 |
|
---|
112 | if (ipc_box_0) {
|
---|
113 | task_t *task_0 = ipc_box_0->task;
|
---|
114 | ipc_box_0 = NULL;
|
---|
115 | /*
|
---|
116 | * The first task is held by kinit(), we need to release it or
|
---|
117 | * it will never finish cleanup.
|
---|
118 | */
|
---|
119 | task_release(task_0);
|
---|
120 | }
|
---|
121 |
|
---|
122 | /* Repeat until there are any tasks except TASK */
|
---|
123 | do {
|
---|
124 | #ifdef CONFIG_DEBUG
|
---|
125 | printf("Killing tasks... ");
|
---|
126 | #endif
|
---|
127 | irq_spinlock_lock(&tasks_lock, true);
|
---|
128 | tasks_left = 0;
|
---|
129 |
|
---|
130 | task = task_first();
|
---|
131 | while (task != NULL) {
|
---|
132 | if (task != TASK) {
|
---|
133 | tasks_left++;
|
---|
134 | #ifdef CONFIG_DEBUG
|
---|
135 | printf("[%" PRIu64 "] ", task->taskid);
|
---|
136 | #endif
|
---|
137 | task_kill_internal(task);
|
---|
138 | }
|
---|
139 |
|
---|
140 | task = task_next(task);
|
---|
141 | }
|
---|
142 |
|
---|
143 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
144 |
|
---|
145 | thread_sleep(1);
|
---|
146 |
|
---|
147 | #ifdef CONFIG_DEBUG
|
---|
148 | printf("\n");
|
---|
149 | #endif
|
---|
150 | } while (tasks_left > 0);
|
---|
151 | }
|
---|
152 |
|
---|
153 | errno_t tsk_constructor(void *obj, unsigned int kmflags)
|
---|
154 | {
|
---|
155 | task_t *task = (task_t *) obj;
|
---|
156 |
|
---|
157 | errno_t rc = caps_task_alloc(task);
|
---|
158 | if (rc != EOK)
|
---|
159 | return rc;
|
---|
160 |
|
---|
161 | atomic_store(&task->refcount, 0);
|
---|
162 | atomic_store(&task->lifecount, 0);
|
---|
163 |
|
---|
164 | irq_spinlock_initialize(&task->lock, "task_t_lock");
|
---|
165 |
|
---|
166 | list_initialize(&task->threads);
|
---|
167 |
|
---|
168 | ipc_answerbox_init(&task->answerbox, task);
|
---|
169 |
|
---|
170 | spinlock_initialize(&task->active_calls_lock, "active_calls_lock");
|
---|
171 | list_initialize(&task->active_calls);
|
---|
172 |
|
---|
173 | #ifdef CONFIG_UDEBUG
|
---|
174 | /* Init kbox stuff */
|
---|
175 | task->kb.thread = NULL;
|
---|
176 | ipc_answerbox_init(&task->kb.box, task);
|
---|
177 | mutex_initialize(&task->kb.cleanup_lock, MUTEX_PASSIVE);
|
---|
178 | #endif
|
---|
179 |
|
---|
180 | return EOK;
|
---|
181 | }
|
---|
182 |
|
---|
183 | size_t tsk_destructor(void *obj)
|
---|
184 | {
|
---|
185 | task_t *task = (task_t *) obj;
|
---|
186 |
|
---|
187 | caps_task_free(task);
|
---|
188 | return 0;
|
---|
189 | }
|
---|
190 |
|
---|
191 | /** Create new task with no threads.
|
---|
192 | *
|
---|
193 | * @param as Task's address space.
|
---|
194 | * @param name Symbolic name (a copy is made).
|
---|
195 | *
|
---|
196 | * @return New task's structure.
|
---|
197 | *
|
---|
198 | */
|
---|
199 | task_t *task_create(as_t *as, const char *name)
|
---|
200 | {
|
---|
201 | task_t *task = (task_t *) slab_alloc(task_cache, 0);
|
---|
202 | if (task == NULL) {
|
---|
203 | return NULL;
|
---|
204 | }
|
---|
205 |
|
---|
206 | task_create_arch(task);
|
---|
207 |
|
---|
208 | task->as = as;
|
---|
209 | str_cpy(task->name, TASK_NAME_BUFLEN, name);
|
---|
210 |
|
---|
211 | task->container = CONTAINER;
|
---|
212 | task->perms = 0;
|
---|
213 | task->ucycles = 0;
|
---|
214 | task->kcycles = 0;
|
---|
215 |
|
---|
216 | caps_task_init(task);
|
---|
217 |
|
---|
218 | task->ipc_info.call_sent = 0;
|
---|
219 | task->ipc_info.call_received = 0;
|
---|
220 | task->ipc_info.answer_sent = 0;
|
---|
221 | task->ipc_info.answer_received = 0;
|
---|
222 | task->ipc_info.irq_notif_received = 0;
|
---|
223 | task->ipc_info.forwarded = 0;
|
---|
224 |
|
---|
225 | event_task_init(task);
|
---|
226 |
|
---|
227 | task->answerbox.active = true;
|
---|
228 |
|
---|
229 | #ifdef CONFIG_UDEBUG
|
---|
230 | /* Init debugging stuff */
|
---|
231 | udebug_task_init(&task->udebug);
|
---|
232 |
|
---|
233 | /* Init kbox stuff */
|
---|
234 | task->kb.box.active = true;
|
---|
235 | task->kb.finished = false;
|
---|
236 | #endif
|
---|
237 |
|
---|
238 | if ((ipc_box_0) &&
|
---|
239 | (container_check(ipc_box_0->task->container, task->container))) {
|
---|
240 | cap_phone_handle_t phone_handle;
|
---|
241 | errno_t rc = phone_alloc(task, true, &phone_handle, NULL);
|
---|
242 | if (rc != EOK) {
|
---|
243 | task->as = NULL;
|
---|
244 | task_destroy_arch(task);
|
---|
245 | slab_free(task_cache, task);
|
---|
246 | return NULL;
|
---|
247 | }
|
---|
248 |
|
---|
249 | kobject_t *phone_obj = kobject_get(task, phone_handle,
|
---|
250 | KOBJECT_TYPE_PHONE);
|
---|
251 | (void) ipc_phone_connect(phone_obj->phone, ipc_box_0);
|
---|
252 | }
|
---|
253 |
|
---|
254 | futex_task_init(task);
|
---|
255 |
|
---|
256 | irq_spinlock_lock(&tasks_lock, true);
|
---|
257 |
|
---|
258 | task->taskid = ++task_counter;
|
---|
259 | odlink_initialize(&task->ltasks);
|
---|
260 | odict_insert(&task->ltasks, &tasks, NULL);
|
---|
261 |
|
---|
262 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
263 |
|
---|
264 | return task;
|
---|
265 | }
|
---|
266 |
|
---|
267 | /** Destroy task.
|
---|
268 | *
|
---|
269 | * @param task Task to be destroyed.
|
---|
270 | *
|
---|
271 | */
|
---|
272 | void task_destroy(task_t *task)
|
---|
273 | {
|
---|
274 | /*
|
---|
275 | * Remove the task from the task B+tree.
|
---|
276 | */
|
---|
277 | irq_spinlock_lock(&tasks_lock, true);
|
---|
278 | odict_remove(&task->ltasks);
|
---|
279 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
280 |
|
---|
281 | /*
|
---|
282 | * Perform architecture specific task destruction.
|
---|
283 | */
|
---|
284 | task_destroy_arch(task);
|
---|
285 |
|
---|
286 | /*
|
---|
287 | * Drop our reference to the address space.
|
---|
288 | */
|
---|
289 | as_release(task->as);
|
---|
290 |
|
---|
291 | slab_free(task_cache, task);
|
---|
292 | }
|
---|
293 |
|
---|
294 | /** Hold a reference to a task.
|
---|
295 | *
|
---|
296 | * Holding a reference to a task prevents destruction of that task.
|
---|
297 | *
|
---|
298 | * @param task Task to be held.
|
---|
299 | *
|
---|
300 | */
|
---|
301 | void task_hold(task_t *task)
|
---|
302 | {
|
---|
303 | atomic_inc(&task->refcount);
|
---|
304 | }
|
---|
305 |
|
---|
306 | /** Release a reference to a task.
|
---|
307 | *
|
---|
308 | * The last one to release a reference to a task destroys the task.
|
---|
309 | *
|
---|
310 | * @param task Task to be released.
|
---|
311 | *
|
---|
312 | */
|
---|
313 | void task_release(task_t *task)
|
---|
314 | {
|
---|
315 | if ((atomic_predec(&task->refcount)) == 0)
|
---|
316 | task_destroy(task);
|
---|
317 | }
|
---|
318 |
|
---|
319 | #ifdef __32_BITS__
|
---|
320 |
|
---|
321 | /** Syscall for reading task ID from userspace (32 bits)
|
---|
322 | *
|
---|
323 | * @param uspace_taskid Pointer to user-space buffer
|
---|
324 | * where to store current task ID.
|
---|
325 | *
|
---|
326 | * @return Zero on success or an error code from @ref errno.h.
|
---|
327 | *
|
---|
328 | */
|
---|
329 | sys_errno_t sys_task_get_id(sysarg64_t *uspace_taskid)
|
---|
330 | {
|
---|
331 | /*
|
---|
332 | * No need to acquire lock on TASK because taskid remains constant for
|
---|
333 | * the lifespan of the task.
|
---|
334 | */
|
---|
335 | return (sys_errno_t) copy_to_uspace(uspace_taskid, &TASK->taskid,
|
---|
336 | sizeof(TASK->taskid));
|
---|
337 | }
|
---|
338 |
|
---|
339 | #endif /* __32_BITS__ */
|
---|
340 |
|
---|
341 | #ifdef __64_BITS__
|
---|
342 |
|
---|
343 | /** Syscall for reading task ID from userspace (64 bits)
|
---|
344 | *
|
---|
345 | * @return Current task ID.
|
---|
346 | *
|
---|
347 | */
|
---|
348 | sysarg_t sys_task_get_id(void)
|
---|
349 | {
|
---|
350 | /*
|
---|
351 | * No need to acquire lock on TASK because taskid remains constant for
|
---|
352 | * the lifespan of the task.
|
---|
353 | */
|
---|
354 | return TASK->taskid;
|
---|
355 | }
|
---|
356 |
|
---|
357 | #endif /* __64_BITS__ */
|
---|
358 |
|
---|
359 | /** Syscall for setting the task name.
|
---|
360 | *
|
---|
361 | * The name simplifies identifying the task in the task list.
|
---|
362 | *
|
---|
363 | * @param name The new name for the task. (typically the same
|
---|
364 | * as the command used to execute it).
|
---|
365 | *
|
---|
366 | * @return 0 on success or an error code from @ref errno.h.
|
---|
367 | *
|
---|
368 | */
|
---|
369 | sys_errno_t sys_task_set_name(const char *uspace_name, size_t name_len)
|
---|
370 | {
|
---|
371 | char namebuf[TASK_NAME_BUFLEN];
|
---|
372 |
|
---|
373 | /* Cap length of name and copy it from userspace. */
|
---|
374 | if (name_len > TASK_NAME_BUFLEN - 1)
|
---|
375 | name_len = TASK_NAME_BUFLEN - 1;
|
---|
376 |
|
---|
377 | errno_t rc = copy_from_uspace(namebuf, uspace_name, name_len);
|
---|
378 | if (rc != EOK)
|
---|
379 | return (sys_errno_t) rc;
|
---|
380 |
|
---|
381 | namebuf[name_len] = '\0';
|
---|
382 |
|
---|
383 | /*
|
---|
384 | * As the task name is referenced also from the
|
---|
385 | * threads, lock the threads' lock for the course
|
---|
386 | * of the update.
|
---|
387 | */
|
---|
388 |
|
---|
389 | irq_spinlock_lock(&tasks_lock, true);
|
---|
390 | irq_spinlock_lock(&TASK->lock, false);
|
---|
391 | irq_spinlock_lock(&threads_lock, false);
|
---|
392 |
|
---|
393 | /* Set task name */
|
---|
394 | str_cpy(TASK->name, TASK_NAME_BUFLEN, namebuf);
|
---|
395 |
|
---|
396 | irq_spinlock_unlock(&threads_lock, false);
|
---|
397 | irq_spinlock_unlock(&TASK->lock, false);
|
---|
398 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
399 |
|
---|
400 | return EOK;
|
---|
401 | }
|
---|
402 |
|
---|
403 | /** Syscall to forcefully terminate a task
|
---|
404 | *
|
---|
405 | * @param uspace_taskid Pointer to task ID in user space.
|
---|
406 | *
|
---|
407 | * @return 0 on success or an error code from @ref errno.h.
|
---|
408 | *
|
---|
409 | */
|
---|
410 | sys_errno_t sys_task_kill(task_id_t *uspace_taskid)
|
---|
411 | {
|
---|
412 | task_id_t taskid;
|
---|
413 | errno_t rc = copy_from_uspace(&taskid, uspace_taskid, sizeof(taskid));
|
---|
414 | if (rc != EOK)
|
---|
415 | return (sys_errno_t) rc;
|
---|
416 |
|
---|
417 | return (sys_errno_t) task_kill(taskid);
|
---|
418 | }
|
---|
419 |
|
---|
420 | /** Find task structure corresponding to task ID.
|
---|
421 | *
|
---|
422 | * The tasks_lock must be already held by the caller of this function and
|
---|
423 | * interrupts must be disabled.
|
---|
424 | *
|
---|
425 | * @param id Task ID.
|
---|
426 | *
|
---|
427 | * @return Task structure address or NULL if there is no such task ID.
|
---|
428 | *
|
---|
429 | */
|
---|
430 | task_t *task_find_by_id(task_id_t id)
|
---|
431 | {
|
---|
432 | assert(interrupts_disabled());
|
---|
433 | assert(irq_spinlock_locked(&tasks_lock));
|
---|
434 |
|
---|
435 | odlink_t *odlink = odict_find_eq(&tasks, &id, NULL);
|
---|
436 | if (odlink != NULL)
|
---|
437 | return odict_get_instance(odlink, task_t, ltasks);
|
---|
438 |
|
---|
439 | return NULL;
|
---|
440 | }
|
---|
441 |
|
---|
442 | /** Get count of tasks.
|
---|
443 | *
|
---|
444 | * @return Number of tasks in the system
|
---|
445 | */
|
---|
446 | size_t task_count(void)
|
---|
447 | {
|
---|
448 | assert(interrupts_disabled());
|
---|
449 | assert(irq_spinlock_locked(&tasks_lock));
|
---|
450 |
|
---|
451 | return odict_count(&tasks);
|
---|
452 | }
|
---|
453 |
|
---|
454 | /** Get first task (task with lowest ID).
|
---|
455 | *
|
---|
456 | * @return Pointer to first task or @c NULL if there are none.
|
---|
457 | */
|
---|
458 | task_t *task_first(void)
|
---|
459 | {
|
---|
460 | odlink_t *odlink;
|
---|
461 |
|
---|
462 | assert(interrupts_disabled());
|
---|
463 | assert(irq_spinlock_locked(&tasks_lock));
|
---|
464 |
|
---|
465 | odlink = odict_first(&tasks);
|
---|
466 | if (odlink == NULL)
|
---|
467 | return NULL;
|
---|
468 |
|
---|
469 | return odict_get_instance(odlink, task_t, ltasks);
|
---|
470 | }
|
---|
471 |
|
---|
472 | /** Get next task (with higher task ID).
|
---|
473 | *
|
---|
474 | * @param cur Current task
|
---|
475 | * @return Pointer to next task or @c NULL if there are no more tasks.
|
---|
476 | */
|
---|
477 | task_t *task_next(task_t *cur)
|
---|
478 | {
|
---|
479 | odlink_t *odlink;
|
---|
480 |
|
---|
481 | assert(interrupts_disabled());
|
---|
482 | assert(irq_spinlock_locked(&tasks_lock));
|
---|
483 |
|
---|
484 | odlink = odict_next(&cur->ltasks, &tasks);
|
---|
485 | if (odlink == NULL)
|
---|
486 | return NULL;
|
---|
487 |
|
---|
488 | return odict_get_instance(odlink, task_t, ltasks);
|
---|
489 | }
|
---|
490 |
|
---|
491 | /** Get accounting data of given task.
|
---|
492 | *
|
---|
493 | * Note that task lock of 'task' must be already held and interrupts must be
|
---|
494 | * already disabled.
|
---|
495 | *
|
---|
496 | * @param task Pointer to the task.
|
---|
497 | * @param ucycles Out pointer to sum of all user cycles.
|
---|
498 | * @param kcycles Out pointer to sum of all kernel cycles.
|
---|
499 | *
|
---|
500 | */
|
---|
501 | void task_get_accounting(task_t *task, uint64_t *ucycles, uint64_t *kcycles)
|
---|
502 | {
|
---|
503 | assert(interrupts_disabled());
|
---|
504 | assert(irq_spinlock_locked(&task->lock));
|
---|
505 |
|
---|
506 | /* Accumulated values of task */
|
---|
507 | uint64_t uret = task->ucycles;
|
---|
508 | uint64_t kret = task->kcycles;
|
---|
509 |
|
---|
510 | /* Current values of threads */
|
---|
511 | list_foreach(task->threads, th_link, thread_t, thread) {
|
---|
512 | irq_spinlock_lock(&thread->lock, false);
|
---|
513 |
|
---|
514 | /* Process only counted threads */
|
---|
515 | if (!thread->uncounted) {
|
---|
516 | if (thread == THREAD) {
|
---|
517 | /* Update accounting of current thread */
|
---|
518 | thread_update_accounting(false);
|
---|
519 | }
|
---|
520 |
|
---|
521 | uret += thread->ucycles;
|
---|
522 | kret += thread->kcycles;
|
---|
523 | }
|
---|
524 |
|
---|
525 | irq_spinlock_unlock(&thread->lock, false);
|
---|
526 | }
|
---|
527 |
|
---|
528 | *ucycles = uret;
|
---|
529 | *kcycles = kret;
|
---|
530 | }
|
---|
531 |
|
---|
532 | static void task_kill_internal(task_t *task)
|
---|
533 | {
|
---|
534 | irq_spinlock_lock(&task->lock, false);
|
---|
535 | irq_spinlock_lock(&threads_lock, false);
|
---|
536 |
|
---|
537 | /*
|
---|
538 | * Interrupt all threads.
|
---|
539 | */
|
---|
540 |
|
---|
541 | list_foreach(task->threads, th_link, thread_t, thread) {
|
---|
542 | bool sleeping = false;
|
---|
543 |
|
---|
544 | irq_spinlock_lock(&thread->lock, false);
|
---|
545 |
|
---|
546 | thread->interrupted = true;
|
---|
547 | if (thread->state == Sleeping)
|
---|
548 | sleeping = true;
|
---|
549 |
|
---|
550 | irq_spinlock_unlock(&thread->lock, false);
|
---|
551 |
|
---|
552 | if (sleeping)
|
---|
553 | waitq_interrupt_sleep(thread);
|
---|
554 | }
|
---|
555 |
|
---|
556 | irq_spinlock_unlock(&threads_lock, false);
|
---|
557 | irq_spinlock_unlock(&task->lock, false);
|
---|
558 | }
|
---|
559 |
|
---|
560 | /** Kill task.
|
---|
561 | *
|
---|
562 | * This function is idempotent.
|
---|
563 | * It signals all the task's threads to bail it out.
|
---|
564 | *
|
---|
565 | * @param id ID of the task to be killed.
|
---|
566 | *
|
---|
567 | * @return Zero on success or an error code from errno.h.
|
---|
568 | *
|
---|
569 | */
|
---|
570 | errno_t task_kill(task_id_t id)
|
---|
571 | {
|
---|
572 | if (id == 1)
|
---|
573 | return EPERM;
|
---|
574 |
|
---|
575 | irq_spinlock_lock(&tasks_lock, true);
|
---|
576 |
|
---|
577 | task_t *task = task_find_by_id(id);
|
---|
578 | if (!task) {
|
---|
579 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
580 | return ENOENT;
|
---|
581 | }
|
---|
582 |
|
---|
583 | task_kill_internal(task);
|
---|
584 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
585 |
|
---|
586 | return EOK;
|
---|
587 | }
|
---|
588 |
|
---|
589 | /** Kill the currently running task.
|
---|
590 | *
|
---|
591 | * @param notify Send out fault notifications.
|
---|
592 | *
|
---|
593 | * @return Zero on success or an error code from errno.h.
|
---|
594 | *
|
---|
595 | */
|
---|
596 | void task_kill_self(bool notify)
|
---|
597 | {
|
---|
598 | /*
|
---|
599 | * User space can subscribe for FAULT events to take action
|
---|
600 | * whenever a task faults (to take a dump, run a debugger, etc.).
|
---|
601 | * The notification is always available, but unless udebug is enabled,
|
---|
602 | * that's all you get.
|
---|
603 | */
|
---|
604 | if (notify) {
|
---|
605 | /* Notify the subscriber that a fault occurred. */
|
---|
606 | if (event_notify_3(EVENT_FAULT, false, LOWER32(TASK->taskid),
|
---|
607 | UPPER32(TASK->taskid), (sysarg_t) THREAD) == EOK) {
|
---|
608 | #ifdef CONFIG_UDEBUG
|
---|
609 | /* Wait for a debugging session. */
|
---|
610 | udebug_thread_fault();
|
---|
611 | #endif
|
---|
612 | }
|
---|
613 | }
|
---|
614 |
|
---|
615 | irq_spinlock_lock(&tasks_lock, true);
|
---|
616 | task_kill_internal(TASK);
|
---|
617 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
618 |
|
---|
619 | thread_exit();
|
---|
620 | }
|
---|
621 |
|
---|
622 | /** Process syscall to terminate the current task.
|
---|
623 | *
|
---|
624 | * @param notify Send out fault notifications.
|
---|
625 | *
|
---|
626 | */
|
---|
627 | sys_errno_t sys_task_exit(sysarg_t notify)
|
---|
628 | {
|
---|
629 | task_kill_self(notify);
|
---|
630 |
|
---|
631 | /* Unreachable */
|
---|
632 | return EOK;
|
---|
633 | }
|
---|
634 |
|
---|
635 | static void task_print(task_t *task, bool additional)
|
---|
636 | {
|
---|
637 | irq_spinlock_lock(&task->lock, false);
|
---|
638 |
|
---|
639 | uint64_t ucycles;
|
---|
640 | uint64_t kcycles;
|
---|
641 | char usuffix, ksuffix;
|
---|
642 | task_get_accounting(task, &ucycles, &kcycles);
|
---|
643 | order_suffix(ucycles, &ucycles, &usuffix);
|
---|
644 | order_suffix(kcycles, &kcycles, &ksuffix);
|
---|
645 |
|
---|
646 | #ifdef __32_BITS__
|
---|
647 | if (additional)
|
---|
648 | printf("%-8" PRIu64 " %9zu", task->taskid,
|
---|
649 | atomic_load(&task->refcount));
|
---|
650 | else
|
---|
651 | printf("%-8" PRIu64 " %-14s %-5" PRIu32 " %10p %10p"
|
---|
652 | " %9" PRIu64 "%c %9" PRIu64 "%c\n", task->taskid,
|
---|
653 | task->name, task->container, task, task->as,
|
---|
654 | ucycles, usuffix, kcycles, ksuffix);
|
---|
655 | #endif
|
---|
656 |
|
---|
657 | #ifdef __64_BITS__
|
---|
658 | if (additional)
|
---|
659 | printf("%-8" PRIu64 " %9" PRIu64 "%c %9" PRIu64 "%c "
|
---|
660 | "%9zu\n", task->taskid, ucycles, usuffix, kcycles,
|
---|
661 | ksuffix, atomic_load(&task->refcount));
|
---|
662 | else
|
---|
663 | printf("%-8" PRIu64 " %-14s %-5" PRIu32 " %18p %18p\n",
|
---|
664 | task->taskid, task->name, task->container, task, task->as);
|
---|
665 | #endif
|
---|
666 |
|
---|
667 | irq_spinlock_unlock(&task->lock, false);
|
---|
668 | }
|
---|
669 |
|
---|
670 | /** Print task list
|
---|
671 | *
|
---|
672 | * @param additional Print additional information.
|
---|
673 | *
|
---|
674 | */
|
---|
675 | void task_print_list(bool additional)
|
---|
676 | {
|
---|
677 | /* Messing with task structures, avoid deadlock */
|
---|
678 | irq_spinlock_lock(&tasks_lock, true);
|
---|
679 |
|
---|
680 | #ifdef __32_BITS__
|
---|
681 | if (additional)
|
---|
682 | printf("[id ] [threads] [calls] [callee\n");
|
---|
683 | else
|
---|
684 | printf("[id ] [name ] [ctn] [address ] [as ]"
|
---|
685 | " [ucycles ] [kcycles ]\n");
|
---|
686 | #endif
|
---|
687 |
|
---|
688 | #ifdef __64_BITS__
|
---|
689 | if (additional)
|
---|
690 | printf("[id ] [ucycles ] [kcycles ] [threads] [calls]"
|
---|
691 | " [callee\n");
|
---|
692 | else
|
---|
693 | printf("[id ] [name ] [ctn] [address ]"
|
---|
694 | " [as ]\n");
|
---|
695 | #endif
|
---|
696 |
|
---|
697 | task_t *task;
|
---|
698 |
|
---|
699 | task = task_first();
|
---|
700 | while (task != NULL) {
|
---|
701 | task_print(task, additional);
|
---|
702 | task = task_next(task);
|
---|
703 | }
|
---|
704 |
|
---|
705 | irq_spinlock_unlock(&tasks_lock, true);
|
---|
706 | }
|
---|
707 |
|
---|
708 | /** Get key function for the @c tasks ordered dictionary.
|
---|
709 | *
|
---|
710 | * @param odlink Link
|
---|
711 | * @return Pointer to task ID cast as 'void *'
|
---|
712 | */
|
---|
713 | static void *tasks_getkey(odlink_t *odlink)
|
---|
714 | {
|
---|
715 | task_t *task = odict_get_instance(odlink, task_t, ltasks);
|
---|
716 | return (void *) &task->taskid;
|
---|
717 | }
|
---|
718 |
|
---|
719 | /** Key comparison function for the @c tasks ordered dictionary.
|
---|
720 | *
|
---|
721 | * @param a Pointer to thread A ID
|
---|
722 | * @param b Pointer to thread B ID
|
---|
723 | * @return -1, 0, 1 iff ID A is less than, equal to, greater than B
|
---|
724 | */
|
---|
725 | static int tasks_cmp(void *a, void *b)
|
---|
726 | {
|
---|
727 | task_id_t ida = *(task_id_t *)a;
|
---|
728 | task_id_t idb = *(task_id_t *)b;
|
---|
729 |
|
---|
730 | if (ida < idb)
|
---|
731 | return -1;
|
---|
732 | else if (ida == idb)
|
---|
733 | return 0;
|
---|
734 | else
|
---|
735 | return +1;
|
---|
736 | }
|
---|
737 |
|
---|
738 | /** @}
|
---|
739 | */
|
---|