source: mainline/kernel/generic/src/proc/task.c@ 77a0119

Last change on this file since 77a0119 was f35749e, checked in by Jiri Svoboda <jiri@…>, 4 months ago

System restart via shutdown -r

  • Property mode set to 100644
File size: 16.1 KB
Line 
1/*
2 * Copyright (c) 2025 Jiri Svoboda
3 * Copyright (c) 2010 Jakub Jermar
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/spinlock.h>
46#include <synch/waitq.h>
47#include <arch.h>
48#include <barrier.h>
49#include <adt/list.h>
50#include <adt/odict.h>
51#include <cap/cap.h>
52#include <ipc/ipc.h>
53#include <ipc/ipcrsc.h>
54#include <ipc/event.h>
55#include <stdio.h>
56#include <errno.h>
57#include <halt.h>
58#include <str.h>
59#include <syscall/copy.h>
60#include <macros.h>
61
62/** Spinlock protecting the @c tasks ordered dictionary. */
63IRQ_SPINLOCK_INITIALIZE(tasks_lock);
64
65/** Ordered dictionary of active tasks by task ID.
66 *
67 * Members are task_t structures.
68 *
69 * The task is guaranteed to exist after it was found in the @c tasks
70 * dictionary as long as:
71 *
72 * @li the tasks_lock is held,
73 * @li the task's lock is held when task's lock is acquired before releasing
74 * tasks_lock or
75 * @li the task's refcount is greater than 0
76 *
77 */
78odict_t tasks;
79
80static task_id_t task_counter = 0;
81
82static slab_cache_t *task_cache;
83
84/* Forward declarations. */
85static void task_kill_internal(task_t *);
86static errno_t tsk_constructor(void *, unsigned int);
87static size_t tsk_destructor(void *);
88
89static void *tasks_getkey(odlink_t *);
90static int tasks_cmp(void *, void *);
91
92/** Initialize kernel tasks support.
93 *
94 */
95void task_init(void)
96{
97 TASK = NULL;
98 odict_initialize(&tasks, tasks_getkey, tasks_cmp);
99 task_cache = slab_cache_create("task_t", sizeof(task_t), 0,
100 tsk_constructor, tsk_destructor, 0);
101}
102
103/** Kill all tasks except the current task.
104 *
105 */
106void task_done(task_t *cur_task)
107{
108 size_t tasks_left;
109 task_t *task;
110
111 if (ipc_box_0) {
112 task_t *task_0 = ipc_box_0->task;
113 ipc_box_0 = NULL;
114
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 != cur_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
153errno_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->lifecount, 0);
162
163 irq_spinlock_initialize(&task->lock, "task_t_lock");
164
165 list_initialize(&task->threads);
166
167 ipc_answerbox_init(&task->answerbox, task);
168
169 spinlock_initialize(&task->active_calls_lock, "active_calls_lock");
170 list_initialize(&task->active_calls);
171
172#ifdef CONFIG_UDEBUG
173 /* Init kbox stuff */
174 task->kb.thread = NULL;
175 ipc_answerbox_init(&task->kb.box, task);
176 mutex_initialize(&task->kb.cleanup_lock, MUTEX_PASSIVE);
177#endif
178
179 return EOK;
180}
181
182size_t tsk_destructor(void *obj)
183{
184 task_t *task = (task_t *) obj;
185
186 caps_task_free(task);
187 return 0;
188}
189
190/** Create new task with no threads.
191 *
192 * @param as Task's address space.
193 * @param name Symbolic name (a copy is made).
194 *
195 * @return New task's structure.
196 *
197 */
198task_t *task_create(as_t *as, const char *name)
199{
200 task_t *task = (task_t *) slab_alloc(task_cache, FRAME_ATOMIC);
201 if (!task)
202 return NULL;
203
204 refcount_init(&task->refcount);
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 task->debug_sections = NULL;
230
231#ifdef CONFIG_UDEBUG
232 /* Init debugging stuff */
233 udebug_task_init(&task->udebug);
234
235 /* Init kbox stuff */
236 task->kb.box.active = true;
237 task->kb.finished = false;
238#endif
239
240 if ((ipc_box_0) &&
241 (container_check(ipc_box_0->task->container, task->container))) {
242 cap_phone_handle_t phone_handle;
243 errno_t rc = phone_alloc(task, true, &phone_handle, NULL);
244 if (rc != EOK) {
245 task->as = NULL;
246 task_destroy_arch(task);
247 slab_free(task_cache, task);
248 return NULL;
249 }
250
251 kobject_t *phone_obj = kobject_get(task, phone_handle,
252 KOBJECT_TYPE_PHONE);
253 (void) ipc_phone_connect(phone_obj->phone, ipc_box_0);
254 }
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 */
272static void task_destroy(task_t *task)
273{
274 /*
275 * Remove the task from the task odict.
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 */
301void task_hold(task_t *task)
302{
303 refcount_up(&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 */
313void task_release(task_t *task)
314{
315 if (refcount_down(&task->refcount))
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 */
329sys_errno_t sys_task_get_id(uspace_ptr_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 */
348sysarg_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 */
369sys_errno_t sys_task_set_name(const uspace_ptr_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
392 /* Set task name */
393 str_cpy(TASK->name, TASK_NAME_BUFLEN, namebuf);
394
395 irq_spinlock_unlock(&TASK->lock, false);
396 irq_spinlock_unlock(&tasks_lock, true);
397
398 return EOK;
399}
400
401/** Syscall to forcefully terminate a task
402 *
403 * @param uspace_taskid Pointer to task ID in user space.
404 *
405 * @return 0 on success or an error code from @ref errno.h.
406 *
407 */
408sys_errno_t sys_task_kill(uspace_ptr_task_id_t uspace_taskid)
409{
410 task_id_t taskid;
411 errno_t rc = copy_from_uspace(&taskid, uspace_taskid, sizeof(taskid));
412 if (rc != EOK)
413 return (sys_errno_t) rc;
414
415 return (sys_errno_t) task_kill(taskid);
416}
417
418/** Find task structure corresponding to task ID.
419 *
420 * @param id Task ID.
421 *
422 * @return Task reference or NULL if there is no such task ID.
423 *
424 */
425task_t *task_find_by_id(task_id_t id)
426{
427 task_t *task = NULL;
428
429 irq_spinlock_lock(&tasks_lock, true);
430
431 odlink_t *odlink = odict_find_eq(&tasks, &id, NULL);
432 if (odlink != NULL) {
433 task = odict_get_instance(odlink, task_t, ltasks);
434
435 /*
436 * The directory of tasks can't hold a reference, since that would
437 * prevent task from ever being destroyed. That means we have to
438 * check for the case where the task is already being destroyed, but
439 * not yet removed from the directory.
440 */
441 if (!refcount_try_up(&task->refcount))
442 task = NULL;
443 }
444
445 irq_spinlock_unlock(&tasks_lock, true);
446
447 return task;
448}
449
450/** Get count of tasks.
451 *
452 * @return Number of tasks in the system
453 */
454size_t task_count(void)
455{
456 assert(interrupts_disabled());
457 assert(irq_spinlock_locked(&tasks_lock));
458
459 return odict_count(&tasks);
460}
461
462/** Get first task (task with lowest ID).
463 *
464 * @return Pointer to first task or @c NULL if there are none.
465 */
466task_t *task_first(void)
467{
468 odlink_t *odlink;
469
470 assert(interrupts_disabled());
471 assert(irq_spinlock_locked(&tasks_lock));
472
473 odlink = odict_first(&tasks);
474 if (odlink == NULL)
475 return NULL;
476
477 return odict_get_instance(odlink, task_t, ltasks);
478}
479
480/** Get next task (with higher task ID).
481 *
482 * @param cur Current task
483 * @return Pointer to next task or @c NULL if there are no more tasks.
484 */
485task_t *task_next(task_t *cur)
486{
487 odlink_t *odlink;
488
489 assert(interrupts_disabled());
490 assert(irq_spinlock_locked(&tasks_lock));
491
492 odlink = odict_next(&cur->ltasks, &tasks);
493 if (odlink == NULL)
494 return NULL;
495
496 return odict_get_instance(odlink, task_t, ltasks);
497}
498
499/** Get accounting data of given task.
500 *
501 * Note that task lock of 'task' must be already held and interrupts must be
502 * already disabled.
503 *
504 * @param task Pointer to the task.
505 * @param ucycles Out pointer to sum of all user cycles.
506 * @param kcycles Out pointer to sum of all kernel cycles.
507 *
508 */
509void task_get_accounting(task_t *task, uint64_t *ucycles, uint64_t *kcycles)
510{
511 assert(interrupts_disabled());
512 assert(irq_spinlock_locked(&task->lock));
513
514 /* Accumulated values of task */
515 uint64_t uret = task->ucycles;
516 uint64_t kret = task->kcycles;
517
518 /* Current values of threads */
519 list_foreach(task->threads, th_link, thread_t, thread) {
520 /* Process only counted threads */
521 if (!thread->uncounted) {
522 if (thread == THREAD) {
523 /* Update accounting of current thread */
524 thread_update_accounting(false);
525 }
526
527 uret += atomic_time_read(&thread->ucycles);
528 kret += atomic_time_read(&thread->kcycles);
529 }
530 }
531
532 *ucycles = uret;
533 *kcycles = kret;
534}
535
536static void task_kill_internal(task_t *task)
537{
538 irq_spinlock_lock(&task->lock, true);
539
540 /*
541 * Interrupt all threads.
542 */
543
544 list_foreach(task->threads, th_link, thread_t, thread) {
545 thread_interrupt(thread);
546 }
547
548 irq_spinlock_unlock(&task->lock, true);
549}
550
551/** Kill task.
552 *
553 * This function is idempotent.
554 * It signals all the task's threads to bail it out.
555 *
556 * @param id ID of the task to be killed.
557 *
558 * @return Zero on success or an error code from errno.h.
559 *
560 */
561errno_t task_kill(task_id_t id)
562{
563 if (id == 1)
564 return EPERM;
565
566 task_t *task = task_find_by_id(id);
567 if (!task)
568 return ENOENT;
569
570 task_kill_internal(task);
571 task_release(task);
572 return EOK;
573}
574
575/** Kill the currently running task.
576 *
577 * @param notify Send out fault notifications.
578 *
579 * @return Zero on success or an error code from errno.h.
580 *
581 */
582void task_kill_self(bool notify)
583{
584 /*
585 * User space can subscribe for FAULT events to take action
586 * whenever a task faults (to take a dump, run a debugger, etc.).
587 * The notification is always available, but unless udebug is enabled,
588 * that's all you get.
589 */
590 if (notify) {
591 /* Notify the subscriber that a fault occurred. */
592 if (event_notify_3(EVENT_FAULT, false, LOWER32(TASK->taskid),
593 UPPER32(TASK->taskid), (sysarg_t) THREAD) == EOK) {
594#ifdef CONFIG_UDEBUG
595 /* Wait for a debugging session. */
596 udebug_thread_fault();
597#endif
598 }
599 }
600
601 task_kill_internal(TASK);
602 thread_exit();
603}
604
605/** Process syscall to terminate the current task.
606 *
607 * @param notify Send out fault notifications.
608 *
609 */
610sys_errno_t sys_task_exit(sysarg_t notify)
611{
612 task_kill_self(notify);
613 unreachable();
614}
615
616static void task_print(task_t *task, bool additional)
617{
618 irq_spinlock_lock(&task->lock, false);
619
620 uint64_t ucycles;
621 uint64_t kcycles;
622 char usuffix, ksuffix;
623 task_get_accounting(task, &ucycles, &kcycles);
624 order_suffix(ucycles, &ucycles, &usuffix);
625 order_suffix(kcycles, &kcycles, &ksuffix);
626
627#ifdef __32_BITS__
628 if (additional)
629 printf("%-8" PRIu64 " %9zu", task->taskid,
630 atomic_load(&task->lifecount));
631 else
632 printf("%-8" PRIu64 " %-14s %-5" PRIu32 " %10p %10p"
633 " %9" PRIu64 "%c %9" PRIu64 "%c\n", task->taskid,
634 task->name, task->container, task, task->as,
635 ucycles, usuffix, kcycles, ksuffix);
636#endif
637
638#ifdef __64_BITS__
639 if (additional)
640 printf("%-8" PRIu64 " %9" PRIu64 "%c %9" PRIu64 "%c "
641 "%9zu\n", task->taskid, ucycles, usuffix, kcycles,
642 ksuffix, atomic_load(&task->lifecount));
643 else
644 printf("%-8" PRIu64 " %-14s %-5" PRIu32 " %18p %18p\n",
645 task->taskid, task->name, task->container, task, task->as);
646#endif
647
648 irq_spinlock_unlock(&task->lock, false);
649}
650
651/** Print task list
652 *
653 * @param additional Print additional information.
654 *
655 */
656void task_print_list(bool additional)
657{
658 /* Messing with task structures, avoid deadlock */
659 irq_spinlock_lock(&tasks_lock, true);
660
661#ifdef __32_BITS__
662 if (additional)
663 printf("[id ] [threads] [calls] [callee\n");
664 else
665 printf("[id ] [name ] [ctn] [address ] [as ]"
666 " [ucycles ] [kcycles ]\n");
667#endif
668
669#ifdef __64_BITS__
670 if (additional)
671 printf("[id ] [ucycles ] [kcycles ] [threads] [calls]"
672 " [callee\n");
673 else
674 printf("[id ] [name ] [ctn] [address ]"
675 " [as ]\n");
676#endif
677
678 task_t *task;
679
680 task = task_first();
681 while (task != NULL) {
682 task_print(task, additional);
683 task = task_next(task);
684 }
685
686 irq_spinlock_unlock(&tasks_lock, true);
687}
688
689/** Get key function for the @c tasks ordered dictionary.
690 *
691 * @param odlink Link
692 * @return Pointer to task ID cast as 'void *'
693 */
694static void *tasks_getkey(odlink_t *odlink)
695{
696 task_t *task = odict_get_instance(odlink, task_t, ltasks);
697 return (void *) &task->taskid;
698}
699
700/** Key comparison function for the @c tasks ordered dictionary.
701 *
702 * @param a Pointer to thread A ID
703 * @param b Pointer to thread B ID
704 * @return -1, 0, 1 iff ID A is less than, equal to, greater than B
705 */
706static int tasks_cmp(void *a, void *b)
707{
708 task_id_t ida = *(task_id_t *)a;
709 task_id_t idb = *(task_id_t *)b;
710
711 if (ida < idb)
712 return -1;
713 else if (ida == idb)
714 return 0;
715 else
716 return +1;
717}
718
719/** @}
720 */
Note: See TracBrowser for help on using the repository browser.