source: mainline/kernel/generic/src/main/kinit.c@ 5861b60

Last change on this file since 5861b60 was 40eab9f, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 20 months ago

Print symbol names and line numbers in stacktraces for init tasks

Only useful in select few situations, but useful nonetheless.

  • Property mode set to 100644
File size: 8.4 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2001-2004 Jakub Jermar
[f761f1eb]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[e88eb48]29/** @addtogroup kernel_generic
[b45c443]30 * @{
31 */
32
[9179d0a]33/**
[b45c443]34 * @file
[2f57690]35 * @brief Kernel initialization thread.
[9179d0a]36 *
37 * This file contains kinit kernel thread which carries out
38 * high level system initialization.
39 *
40 * This file is responsible for finishing SMP configuration
41 * and creation of userspace init tasks.
42 */
43
[63e27ef]44#include <assert.h>
[f761f1eb]45#include <main/kinit.h>
[2677758]46#include <config.h>
47#include <arch.h>
[f761f1eb]48#include <proc/scheduler.h>
49#include <proc/task.h>
50#include <proc/thread.h>
[c98e6ee]51#include <proc/program.h>
[f761f1eb]52#include <panic.h>
[b2e121a]53#include <halt.h>
[f761f1eb]54#include <cpu.h>
55#include <arch/asm.h>
56#include <mm/page.h>
57#include <arch/mm/page.h>
[20d50a1]58#include <mm/as.h>
[ff3b3197]59#include <mm/frame.h>
[32817cc]60#include <mm/km.h>
[bab75df6]61#include <stdio.h>
[b2fa1204]62#include <log.h>
[b169619]63#include <memw.h>
[ff3b3197]64#include <console/console.h>
[aace6624]65#include <interrupt.h>
[f4338d2]66#include <console/kconsole.h>
[719a208]67#include <security/perm.h>
[d4b5542]68#include <lib/rd.h>
[b3f8fb7]69#include <ipc/ipc.h>
[19f857a]70#include <str.h>
[fdfb24e]71#include <str_error.h>
[9dae191e]72#include <sysinfo/stats.h>
[c8cbd39]73#include <sysinfo/sysinfo.h>
[32817cc]74#include <align.h>
[aafed15]75#include <stdlib.h>
[da13982]76#include <debug/register.h>
[f761f1eb]77
[5f85c91]78#ifdef CONFIG_SMP
[26678e5]79#include <smp/smp.h>
[5f85c91]80#endif /* CONFIG_SMP */
[f761f1eb]81
82#include <synch/waitq.h>
83#include <synch/spinlock.h>
84
[c19a4169]85#define ALIVE_CHARS 4
86
[753d851]87#ifdef CONFIG_KCONSOLE
[c19a4169]88static char alive[ALIVE_CHARS] = "-\\|/";
[753d851]89#endif
[c19a4169]90
[da581872]91#define INIT_PREFIX "init:"
92#define INIT_PREFIX_LEN 5
[20f1597]93
[880de6e]94/** Kernel initialization thread.
95 *
96 * kinit takes care of higher level kernel
97 * initialization (i.e. thread creation,
98 * userspace initialization etc.).
99 *
100 * @param arg Not used.
101 */
[f761f1eb]102void kinit(void *arg)
103{
[76fca31]104 thread_t *thread;
[a35b458]105
[22f7769]106 interrupts_disable();
[a35b458]107
[2f57690]108#ifdef CONFIG_SMP
[f761f1eb]109 if (config.cpu_count > 1) {
[7c5320c]110 semaphore_initialize(&ap_completion_semaphore, 0);
[a35b458]111
[f761f1eb]112 /*
113 * Create the kmp thread and wait for its completion.
114 * cpu1 through cpuN-1 will come up consecutively and
[169c408]115 * not mess together with kcpulb threads.
[f761f1eb]116 * Just a beautification.
117 */
[6eef3c4]118 thread = thread_create(kmp, NULL, TASK,
119 THREAD_FLAG_UNCOUNTED, "kmp");
[abf6c01]120 if (!thread)
[f651e80]121 panic("Unable to create kmp thread.");
[a35b458]122
[abf6c01]123 thread_wire(thread, &cpus[0]);
[1871118]124 thread_ready(thread_ref(thread));
[76fca31]125 thread_join(thread);
[1871118]126 thread_put(thread);
[a35b458]127
[76cec1e]128 /*
[f761f1eb]129 * For each CPU, create its load balancing thread.
130 */
[7e752b2]131 unsigned int i;
[a35b458]132
[f761f1eb]133 for (i = 0; i < config.cpu_count; i++) {
[6eef3c4]134 thread = thread_create(kcpulb, NULL, TASK,
135 THREAD_FLAG_UNCOUNTED, "kcpulb");
[76fca31]136 if (thread != NULL) {
[6eef3c4]137 thread_wire(thread, &cpus[i]);
[76fca31]138 thread_ready(thread);
[8e3bf3e2]139 } else
[b2fa1204]140 log(LF_OTHER, LVL_ERROR,
141 "Unable to create kcpulb thread for cpu%u", i);
[f761f1eb]142 }
143 }
[5f85c91]144#endif /* CONFIG_SMP */
[a35b458]145
[a83a802]146 /*
147 * At this point SMP, if present, is configured.
148 */
[36df4109]149 ARCH_OP(post_smp_init);
[a35b458]150
[9dae191e]151 /* Start thread computing system load */
[6eef3c4]152 thread = thread_create(kload, NULL, TASK, THREAD_FLAG_NONE,
153 "kload");
[9dae191e]154 if (thread != NULL)
155 thread_ready(thread);
156 else
[b2fa1204]157 log(LF_OTHER, LVL_ERROR, "Unable to create kload thread");
[a35b458]158
[76fca31]159#ifdef CONFIG_KCONSOLE
160 if (stdin) {
161 /*
162 * Create kernel console.
163 */
[6eef3c4]164 thread = thread_create(kconsole_thread, NULL, TASK,
165 THREAD_FLAG_NONE, "kconsole");
[76fca31]166 if (thread != NULL)
167 thread_ready(thread);
168 else
[b2fa1204]169 log(LF_OTHER, LVL_ERROR,
170 "Unable to create kconsole thread");
[76fca31]171 }
172#endif /* CONFIG_KCONSOLE */
[a35b458]173
[0aae87a6]174 /*
175 * Store the default stack size in sysinfo so that uspace can create
176 * stack with this default size.
177 */
[67b152e]178 sysinfo_set_item_val("default.stack_size", NULL, STACK_SIZE_USER);
[a35b458]179
[22f7769]180 interrupts_enable();
[a35b458]181
[49eec93]182 /*
183 * Create user tasks, load RAM disk images.
184 */
[98000fb]185 size_t i;
[da13982]186 program_t programs[CONFIG_INIT_TASKS] = { };
[a35b458]187
[c8cbd39]188 // FIXME: do not propagate arguments through sysinfo
189 // but pass them directly to the tasks
190 for (i = 0; i < init.cnt; i++) {
191 const char *arguments = init.tasks[i].arguments;
192 if (str_length(arguments) == 0)
193 continue;
194 if (str_length(init.tasks[i].name) == 0)
195 continue;
196 size_t arguments_size = str_size(arguments);
197
[11b285d]198 void *arguments_copy = malloc(arguments_size);
[c8cbd39]199 if (arguments_copy == NULL)
200 continue;
201 memcpy(arguments_copy, arguments, arguments_size);
202
203 char item_name[CONFIG_TASK_NAME_BUFLEN + 15];
204 snprintf(item_name, CONFIG_TASK_NAME_BUFLEN + 15,
205 "init_args.%s", init.tasks[i].name);
206
207 sysinfo_set_item_data(item_name, NULL, arguments_copy, arguments_size);
208 }
209
[b6b576c]210 for (i = 0; i < init.cnt; i++) {
[32817cc]211 if (init.tasks[i].paddr % FRAME_SIZE) {
[b2fa1204]212 log(LF_OTHER, LVL_ERROR,
213 "init[%zu]: Address is not frame aligned", i);
[2319df3]214 programs[i].task = NULL;
[228b135]215 continue;
216 }
[a35b458]217
[20f1597]218 /*
[da581872]219 * Construct task name from the 'init:' prefix and the
[20f1597]220 * name stored in the init structure (if any).
221 */
[a35b458]222
[2f57690]223 char namebuf[TASK_NAME_BUFLEN];
[a35b458]224
[a000878c]225 const char *name = init.tasks[i].name;
[b60c582]226 if (name[0] == 0)
[2f57690]227 name = "<unknown>";
[a35b458]228
[63e27ef]229 static_assert(TASK_NAME_BUFLEN >= INIT_PREFIX_LEN, "");
[f4b1535]230 str_cpy(namebuf, TASK_NAME_BUFLEN, INIT_PREFIX);
231 str_cpy(namebuf + INIT_PREFIX_LEN,
232 TASK_NAME_BUFLEN - INIT_PREFIX_LEN, name);
[a35b458]233
[32817cc]234 /*
235 * Create virtual memory mappings for init task images.
236 */
[221c9ec]237 uintptr_t page = km_map(init.tasks[i].paddr,
[6bf5b8c]238 init.tasks[i].size, PAGE_SIZE,
[221c9ec]239 PAGE_READ | PAGE_WRITE | PAGE_CACHEABLE);
[63e27ef]240 assert(page);
[a35b458]241
[da13982]242 if (str_cmp(name, "kernel.dbg") == 0) {
243 /*
244 * Not an actual init task, but rather debug sections extracted
245 * from the kernel ELF file and handed to us here so we can use
246 * it for debugging.
247 */
248
249 register_debug_data((void *) page, init.tasks[i].size);
250 programs[i].task = NULL;
251 continue;
252 }
253
[57d44dd]254 if (str_cmp(name, "loader") == 0) {
255 /* Register image as the program loader */
256 if (program_loader == NULL) {
257 program_loader = (void *) page;
258 log(LF_OTHER, LVL_NOTE, "Program loader at %p",
259 program_loader);
260 } else {
261 log(LF_OTHER, LVL_ERROR,
262 "init[%zu]: Second binary named \"loader\""
263 " present.", i);
264 }
[1cac875]265
266 programs[i].task = NULL;
[57d44dd]267 continue;
268 }
269
[40eab9f]270 errno_t rc = program_create_from_image((void *) page, init.tasks[i].size, namebuf,
[32817cc]271 &programs[i]);
[a35b458]272
[fb48a0e]273 if (rc == 0) {
[57d44dd]274 assert(programs[i].task != NULL);
275
276 /*
277 * Set permissions to init userspace tasks.
278 */
279 perm_set(programs[i].task,
280 PERM_PERM | PERM_MEM_MANAGER |
281 PERM_IO_MANAGER | PERM_IRQ_REG);
282
283 if (!ipc_box_0) {
284 ipc_box_0 = &programs[i].task->answerbox;
[fb48a0e]285 /*
[57d44dd]286 * Hold the first task so that
287 * ipc_box_0 remains a valid pointer
288 * even if the first task exits for
289 * whatever reason.
[fb48a0e]290 */
[57d44dd]291 task_hold(programs[i].task);
[fb48a0e]292 }
[a35b458]293
[fb48a0e]294 } else if (i == init.cnt - 1) {
295 /*
296 * Assume the last task is the RAM disk.
297 */
[221c9ec]298 init_rd((void *) init.tasks[i].paddr, init.tasks[i].size);
[57d44dd]299 } else {
[b2fa1204]300 log(LF_OTHER, LVL_ERROR,
301 "init[%zu]: Init binary load failed "
[bdca26a]302 "(error %s, loader status %s)", i,
303 str_error_name(rc), str_error_name(programs[i].loader_status));
[57d44dd]304 }
[49eec93]305 }
[a35b458]306
[49eec93]307 /*
[566f4cfb]308 * Run user tasks.
[49eec93]309 */
310 for (i = 0; i < init.cnt; i++) {
[566f4cfb]311 if (programs[i].task != NULL)
[c98e6ee]312 program_ready(&programs[i]);
[44c259c]313 }
[a35b458]314
[76fca31]315#ifdef CONFIG_KCONSOLE
[ff3b3197]316 if (!stdin) {
[c19a4169]317 thread_sleep(10);
[eddf924]318 printf("kinit: No stdin\nKernel alive: .");
[a35b458]319
[c19a4169]320 unsigned int i = 0;
321 while (true) {
322 printf("\b%c", alive[i % ALIVE_CHARS]);
[ff3b3197]323 thread_sleep(1);
[76fca31]324 i++;
[ff3b3197]325 }
[f761f1eb]326 }
[76fca31]327#endif /* CONFIG_KCONSOLE */
[f761f1eb]328}
[b45c443]329
[8e3bf3e2]330/** @}
[b45c443]331 */
Note: See TracBrowser for help on using the repository browser.