123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- /*
- * Copyright (c) 2012-2019 Richard Braun.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <errno.h>
- #include <stddef.h>
- #include <stdio.h>
- #include <string.h>
- #include <kern/capability.h>
- #include <kern/cspace.h>
- #include <kern/init.h>
- #include <kern/kmem.h>
- #include <kern/list.h>
- #include <kern/log.h>
- #include <kern/macros.h>
- #include <kern/shell.h>
- #include <kern/spinlock.h>
- #include <kern/task.h>
- #include <kern/thread.h>
- #include <kern/user.h>
- #include <vm/map.h>
- #ifdef __LP64__
- #define TASK_INFO_ADDR_FMT "%016lx"
- #else
- #define TASK_INFO_ADDR_FMT "%08lx"
- #endif
- struct task task_kernel_task;
- // Cache for allocated tasks.
- static struct kmem_cache task_cache;
- // Global list of tasks.
- static struct list task_list;
- static struct spinlock task_list_lock;
- static void
- task_init (struct task *task, const char *name, struct vm_map *map)
- {
- kuid_head_init (&task->kuid);
- spinlock_init (&task->lock);
- list_init (&task->threads);
- task->map = map;
- strlcpy (task->name, name, sizeof (task->name));
- bulletin_init (&task->dead_subs);
- }
- #ifdef CONFIG_SHELL
- static void
- task_shell_info (struct shell *shell, int argc, char **argv)
- {
- if (argc == 1)
- {
- task_info (NULL, shell->stream);
- return;
- }
-
- struct task *task = task_lookup (argv[1]);
- if (! task)
- {
- fmt_xprintf (shell->stream, "task not found: %s\n", argv[1]);
- return;
- }
-
- task_info (task, shell->stream);
- task_unref (task);
- }
- static struct shell_cmd task_shell_cmds[] =
- {
- SHELL_CMD_INITIALIZER ("task_info", task_shell_info,
- "task_info [<task_name>]",
- "display tasks and threads"),
- };
- static int __init
- task_setup_shell (void)
- {
- SHELL_REGISTER_CMDS (task_shell_cmds, shell_get_main_cmd_set ());
- return (0);
- }
- INIT_OP_DEFINE (task_setup_shell,
- INIT_OP_DEP (printf_setup, true),
- INIT_OP_DEP (shell_setup, true),
- INIT_OP_DEP (task_setup, true),
- INIT_OP_DEP (thread_setup, true));
- #endif
- static int __init
- task_setup (void)
- {
- struct task *kernel_task = task_get_kernel_task ();
- kmem_cache_init (&task_cache, "task", sizeof (struct task), 0, NULL, 0);
- list_init (&task_list);
- spinlock_init (&task_list_lock);
- task_init (kernel_task, "x15", vm_map_get_kernel_map ());
- list_insert_head (&task_list, &kernel_task->node);
- return (0);
- }
- INIT_OP_DEFINE (task_setup,
- INIT_OP_DEP (kmem_setup, true),
- INIT_OP_DEP (spinlock_setup, true),
- INIT_OP_DEP (vm_map_setup, true));
- int
- task_create (struct task **taskp, const char *name)
- {
- struct vm_map *map;
- int error = vm_map_create (&map);
- if (error)
- return (error);
- error = task_create2 (taskp, name, map);
- if (error)
- vm_map_destroy (map);
- return (error);
- }
- int
- task_create2 (struct task **taskp, const char *name, struct vm_map *map)
- {
- struct task *task = kmem_cache_alloc (&task_cache);
- if (! task)
- return (ENOMEM);
- task_init (task, name, map);
- int error = kuid_alloc (&task->kuid, KUID_TASK);
- if (error)
- {
- kmem_cache_free (&task_cache, task);
- return (error);
- }
- cspace_init (&task->caps);
- spinlock_lock (&task_list_lock);
- list_insert_tail (&task_list, &task->node);
- spinlock_unlock (&task_list_lock);
- *taskp = task;
- return (0);
- }
- void
- task_destroy (struct task *task)
- {
- spinlock_lock (&task_list_lock);
- list_remove (&task->node);
- spinlock_unlock (&task_list_lock);
- cspace_destroy (&task->caps);
- vm_map_destroy (task->map);
- kuid_remove (&task->kuid, KUID_TASK);
- kmem_cache_free (&task_cache, task);
- }
- struct task*
- task_lookup (const char *name)
- {
- SPINLOCK_GUARD (&task_list_lock);
- struct task *task;
- list_for_each_entry (&task_list, task, node)
- {
- SPINLOCK_GUARD (&task->lock);
- if (strcmp (task->name, name) == 0)
- {
- task_ref (task);
- return (task);
- }
- }
- return (NULL);
- }
- void
- task_add_thread (struct task *task, struct thread *thread)
- {
- SPINLOCK_GUARD (&task->lock);
- list_insert_tail (&task->threads, &thread->task_node);
- }
- void
- task_remove_thread (struct task *task, struct thread *thread)
- {
- spinlock_lock (&task->lock);
- list_remove (&thread->task_node);
- bool last = list_empty (&task->threads);
- spinlock_unlock (&task->lock);
- if (last)
- { // Destroy the cspace early to avoid circular references.
- cspace_destroy (&task->caps);
- cap_notify_dead (&task->dead_subs);
- task_unref (task);
- }
- }
- struct thread*
- task_lookup_thread (struct task *task, const char *name)
- {
- SPINLOCK_GUARD (&task->lock);
- struct thread *thread;
- list_for_each_entry (&task->threads, thread, task_node)
- if (strcmp (thread_name (thread), name) == 0)
- {
- thread_ref (thread);
- return (thread);
- }
- return (NULL);
- }
- void
- task_info (struct task *task, struct stream *stream)
- {
- if (! task)
- {
- SPINLOCK_GUARD (&task_list_lock);
- list_for_each_entry (&task_list, task, node)
- task_info (task, stream);
- return;
- }
- SPINLOCK_GUARD (&task->lock);
- fmt_xprintf (stream, "task: name: %s, threads:\n", task->name);
- if (list_empty (&task->threads))
- {
- stream_puts (stream, "(empty)\n");
- return;
- }
- /*
- * Don't grab any lock when accessing threads, so that the function
- * can be used to debug in the middle of most critical sections.
- * Threads are only destroyed after being removed from their task
- * so holding the task lock is enough to guarantee existence.
- */
- struct thread *thread;
- list_for_each_entry (&task->threads, thread, task_node)
- fmt_xprintf (stream, TASK_INFO_ADDR_FMT " %c %8s:" TASK_INFO_ADDR_FMT
- " %.2s:%02hu %02u %s\n",
- (uintptr_t)thread,
- thread_state_to_chr (thread_state (thread)),
- thread_wchan_desc (thread),
- (uintptr_t)thread_wchan_addr (thread),
- thread_sched_class_to_str (thread_user_sched_class (thread)),
- thread_user_priority (thread),
- thread_real_global_priority (thread),
- thread_name (thread));
- }
- #define TASK_IPC_NEEDS_COPY \
- ((1u << TASK_IPC_GET_NAME) | (1u << TASK_IPC_GET_ID))
- static ssize_t
- task_name_impl (struct task *task, char *name, bool set)
- {
- SPINLOCK_GUARD (&task->lock);
- if (set)
- memcpy (task->name, name, sizeof (task->name));
- else
- memcpy (name, task->name, sizeof (task->name));
- return (0);
- }
- ssize_t
- task_handle_msg (struct task *task, struct cap_iters *src,
- struct cap_iters *dst, struct ipc_msg_data *data)
- {
- struct task_ipc_msg tmsg;
- struct ipc_iov_iter k_it;
- ipc_iov_iter_init_buf (&k_it, &tmsg, sizeof (tmsg));
- ssize_t rv = user_copyv_from (&k_it, &src->iov);
- if (rv < 0)
- return (rv);
- switch (tmsg.op)
- {
- case TASK_IPC_GET_NAME:
- case TASK_IPC_SET_NAME:
- rv = task_name_impl (task, tmsg.name, tmsg.op == TASK_IPC_SET_NAME);
- break;
- case TASK_IPC_GET_ID:
- tmsg.id = task_id (task);
- break;
- default:
- return (-EINVAL);
- }
- if (rv >= 0 && ((1u << tmsg.op) & TASK_IPC_NEEDS_COPY))
- {
- ipc_iov_iter_init_buf (&k_it, &tmsg, sizeof (tmsg));
- rv = user_copyv_to (&dst->iov, &k_it);
- }
- (void)data;
- return (rv < 0 ? rv : 0);
- }
|