blob: aa7b067565d9ffe5870b34eaeff80a131994f389 [file] [log] [blame]
Gennady Sharapovea2ba7d2006-01-08 01:01:31 -08001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2000, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "linux/kernel.h"
7#include "linux/sched.h"
8#include "linux/notifier.h"
9#include "linux/mm.h"
10#include "linux/types.h"
11#include "linux/tty.h"
12#include "linux/init.h"
13#include "linux/bootmem.h"
14#include "linux/spinlock.h"
15#include "linux/utsname.h"
16#include "linux/sysrq.h"
17#include "linux/seq_file.h"
18#include "linux/delay.h"
19#include "linux/module.h"
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070020#include "linux/utsname.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "asm/page.h"
22#include "asm/pgtable.h"
23#include "asm/ptrace.h"
24#include "asm/elf.h"
25#include "asm/user.h"
Jeff Dike16c11162005-05-06 21:30:45 -070026#include "asm/setup.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "ubd_user.h"
28#include "asm/current.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "kern_util.h"
Jeff Dike4ff83ce2007-05-06 14:51:08 -070030#include "as-layout.h"
Jeff Dikeeb830752007-05-06 14:51:07 -070031#include "arch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "kern.h"
33#include "mem_user.h"
34#include "mem.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "initrd.h"
36#include "init.h"
37#include "os.h"
38#include "choose-mode.h"
39#include "mode_kern.h"
40#include "mode.h"
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -070041#include "skas.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define DEFAULT_COMMAND_LINE "root=98:0"
44
Jeff Dike1d1497e2007-05-06 14:51:26 -070045/* Changed in add_arg and setup_arch, which run before SMP is started */
Alon Bar-Lev7a3a06d02007-02-12 00:54:26 -080046static char __initdata command_line[COMMAND_LINE_SIZE] = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Alon Bar-Lev7a3a06d02007-02-12 00:54:26 -080048static void __init add_arg(char *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 if (strlen(command_line) + strlen(arg) + 1 > COMMAND_LINE_SIZE) {
51 printf("add_arg: Too many command line arguments!\n");
52 exit(1);
53 }
54 if(strlen(command_line) > 0)
55 strcat(command_line, " ");
56 strcat(command_line, arg);
57}
58
Jeff Dike1d1497e2007-05-06 14:51:26 -070059/*
60 * These fields are initialized at boot time and not changed.
61 * XXX This structure is used only in the non-SMP case. Maybe this
62 * should be moved to smp.c.
63 */
64struct cpuinfo_um boot_cpu_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .loops_per_jiffy = 0,
66 .ipi_pipe = { -1, -1 }
67};
68
69unsigned long thread_saved_pc(struct task_struct *task)
70{
Jeff Dikea5ed1ff2007-05-06 14:50:58 -070071 return os_process_pc(CHOOSE_MODE_PROC(thread_pid_tt, thread_pid_skas,
72 task));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070075/* Changed in setup_arch, which is called in early boot */
76static char host_info[(__NEW_UTS_LEN + 1) * 5];
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static int show_cpuinfo(struct seq_file *m, void *v)
79{
80 int index = 0;
81
82#ifdef CONFIG_SMP
83 index = (struct cpuinfo_um *) v - cpu_data;
84 if (!cpu_online(index))
85 return 0;
86#endif
87
88 seq_printf(m, "processor\t: %d\n", index);
89 seq_printf(m, "vendor_id\t: User Mode Linux\n");
90 seq_printf(m, "model name\t: UML\n");
91 seq_printf(m, "mode\t\t: %s\n", CHOOSE_MODE("tt", "skas"));
92 seq_printf(m, "host\t\t: %s\n", host_info);
93 seq_printf(m, "bogomips\t: %lu.%02lu\n\n",
94 loops_per_jiffy/(500000/HZ),
95 (loops_per_jiffy/(5000/HZ)) % 100);
96
Jeff Dikea5ed1ff2007-05-06 14:50:58 -070097 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static void *c_start(struct seq_file *m, loff_t *pos)
101{
102 return *pos < NR_CPUS ? cpu_data + *pos : NULL;
103}
104
105static void *c_next(struct seq_file *m, void *v, loff_t *pos)
106{
107 ++*pos;
108 return c_start(m, pos);
109}
110
111static void c_stop(struct seq_file *m, void *v)
112{
113}
114
Jeff Dike5e7672e2006-09-27 01:50:33 -0700115const struct seq_operations cpuinfo_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .start = c_start,
117 .next = c_next,
118 .stop = c_stop,
119 .show = show_cpuinfo,
120};
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/* Set in linux_main */
123unsigned long host_task_size;
124unsigned long task_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125unsigned long uml_physmem;
Jeff Dike1d1497e2007-05-06 14:51:26 -0700126unsigned long uml_reserved; /* Also modified in mem_init */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127unsigned long start_vm;
128unsigned long end_vm;
Jeff Dike1d1497e2007-05-06 14:51:26 -0700129
130/* Set in uml_ncpus_setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131int ncpus = 1;
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* Set in early boot */
134static int have_root __initdata = 0;
Jeff Dike1d1497e2007-05-06 14:51:26 -0700135
136/* Set in uml_mem_setup and modified in linux_main */
Jeff Dikeae173812005-11-07 00:58:57 -0800137long long physmem_size = 32 * 1024 * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static char *usage_string =
140"User Mode Linux v%s\n"
141" available at http://user-mode-linux.sourceforge.net/\n\n";
142
143static int __init uml_version_setup(char *line, int *add)
144{
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700145 printf("%s\n", init_utsname()->release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 exit(0);
147
148 return 0;
149}
150
151__uml_setup("--version", uml_version_setup,
152"--version\n"
153" Prints the version number of the kernel.\n\n"
154);
155
156static int __init uml_root_setup(char *line, int *add)
157{
158 have_root = 1;
159 return 0;
160}
161
162__uml_setup("root=", uml_root_setup,
163"root=<file containing the root fs>\n"
164" This is actually used by the generic kernel in exactly the same\n"
165" way as in any other kernel. If you configure a number of block\n"
166" devices and want to boot off something other than ubd0, you \n"
167" would use something like:\n"
168" root=/dev/ubd5\n\n"
169);
170
Jeff Dikefbd55772006-02-07 12:58:40 -0800171static int __init no_skas_debug_setup(char *line, int *add)
172{
173 printf("'debug' is not necessary to gdb UML in skas mode - run \n");
Jeff Dike42fda662007-10-16 01:26:50 -0700174 printf("'gdb linux'");
Jeff Dikefbd55772006-02-07 12:58:40 -0800175
176 return 0;
177}
178
179__uml_setup("debug", no_skas_debug_setup,
180"debug\n"
181" this flag is not needed to run gdb on UML in skas mode\n\n"
182);
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#ifdef CONFIG_SMP
185static int __init uml_ncpus_setup(char *line, int *add)
186{
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700187 if (!sscanf(line, "%d", &ncpus)) {
188 printf("Couldn't parse [%s]\n", line);
189 return -1;
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195__uml_setup("ncpus=", uml_ncpus_setup,
196"ncpus=<# of desired CPUs>\n"
197" This tells an SMP kernel how many virtual processors to start.\n\n"
198);
199#endif
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201static int __init Usage(char *line, int *add)
202{
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700203 const char **p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700205 printf(usage_string, init_utsname()->release);
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700206 p = &__uml_help_start;
207 while (p < &__uml_help_end) {
208 printf("%s", *p);
209 p++;
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213}
214
215__uml_setup("--help", Usage,
216"--help\n"
217" Prints this message.\n\n"
218);
219
220static int __init uml_checksetup(char *line, int *add)
221{
222 struct uml_param *p;
223
224 p = &__uml_setup_start;
225 while(p < &__uml_setup_end) {
226 int n;
227
228 n = strlen(p->str);
229 if(!strncmp(line, p->str, n)){
230 if (p->setup_func(line + n, add)) return 1;
231 }
232 p++;
233 }
234 return 0;
235}
236
237static void __init uml_postsetup(void)
238{
239 initcall_t *p;
240
241 p = &__uml_postsetup_start;
242 while(p < &__uml_postsetup_end){
243 (*p)();
244 p++;
245 }
246 return;
247}
248
249/* Set during early boot */
250unsigned long brk_start;
251unsigned long end_iomem;
252EXPORT_SYMBOL(end_iomem);
253
254#define MIN_VMALLOC (32 * 1024 * 1024)
255
Jeff Dike23bbd582006-07-10 04:45:06 -0700256extern char __binary_start;
257
Alon Bar-Lev7a3a06d02007-02-12 00:54:26 -0800258int __init linux_main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 unsigned long avail, diff;
261 unsigned long virtmem_size, max_physmem;
262 unsigned int i, add;
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700263 char * mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 for (i = 1; i < argc; i++){
266 if((i == 1) && (argv[i][0] == ' ')) continue;
267 add = 1;
268 uml_checksetup(argv[i], &add);
269 if (add)
270 add_arg(argv[i]);
271 }
272 if(have_root == 0)
273 add_arg(DEFAULT_COMMAND_LINE);
274
Gennady Sharapov60d339f2005-09-03 15:57:47 -0700275 os_early_checks();
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700276
Jeff Dike42fda662007-10-16 01:26:50 -0700277 can_do_skas();
278
279 if (proc_mm && ptrace_faultinfo)
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700280 mode = "SKAS3";
281 else
282 mode = "SKAS0";
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700283
284 printf("UML running in %s mode\n", mode);
285
Jeff Dike23bbd582006-07-10 04:45:06 -0700286 host_task_size = CHOOSE_MODE_PROC(set_task_sizes_tt,
287 set_task_sizes_skas, &task_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Gennady Sharapovea2ba7d2006-01-08 01:01:31 -0800289 /*
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700290 * Setting up handlers to 'sig_info' struct
291 */
Gennady Sharapovea2ba7d2006-01-08 01:01:31 -0800292 os_fill_handlinfo(handlinfo_kern);
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 brk_start = (unsigned long) sbrk(0);
295 CHOOSE_MODE_PROC(before_mem_tt, before_mem_skas, brk_start);
296 /* Increase physical memory size for exec-shield users
297 so they actually get what they asked for. This should
298 add zero for non-exec shield users */
299
300 diff = UML_ROUND_UP(brk_start) - UML_ROUND_UP(&_end);
301 if(diff > 1024 * 1024){
302 printf("Adding %ld bytes to physical memory to account for "
303 "exec-shield gap\n", diff);
304 physmem_size += UML_ROUND_UP(brk_start) - UML_ROUND_UP(&_end);
305 }
306
Jeff Dike1d1497e2007-05-06 14:51:26 -0700307 uml_physmem = (unsigned long) &__binary_start & PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /* Reserve up to 4M after the current brk */
310 uml_reserved = ROUND_4M(brk_start) + (1 << 22);
311
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700312 setup_machinename(init_utsname()->machine);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 highmem = 0;
315 iomem_size = (iomem_size + PAGE_SIZE - 1) & PAGE_MASK;
316 max_physmem = get_kmem_end() - uml_physmem - iomem_size - MIN_VMALLOC;
317
318 /* Zones have to begin on a 1 << MAX_ORDER page boundary,
319 * so this makes sure that's true for highmem
320 */
321 max_physmem &= ~((1 << (PAGE_SHIFT + MAX_ORDER)) - 1);
322 if(physmem_size + iomem_size > max_physmem){
323 highmem = physmem_size + iomem_size - max_physmem;
324 physmem_size -= highmem;
325#ifndef CONFIG_HIGHMEM
326 highmem = 0;
327 printf("CONFIG_HIGHMEM not enabled - physical memory shrunk "
Jeff Diked9f8b622006-03-27 01:14:29 -0800328 "to %Lu bytes\n", physmem_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#endif
330 }
331
332 high_physmem = uml_physmem + physmem_size;
333 end_iomem = high_physmem + iomem_size;
334 high_memory = (void *) end_iomem;
335
336 start_vm = VMALLOC_START;
337
338 setup_physmem(uml_physmem, uml_reserved, physmem_size, highmem);
339 if(init_maps(physmem_size, iomem_size, highmem)){
Jeff Diked9f8b622006-03-27 01:14:29 -0800340 printf("Failed to allocate mem_map for %Lu bytes of physical "
341 "memory and %Lu bytes of highmem\n", physmem_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 highmem);
343 exit(1);
344 }
345
346 virtmem_size = physmem_size;
347 avail = get_kmem_end() - start_vm;
348 if(physmem_size > avail) virtmem_size = avail;
349 end_vm = start_vm + virtmem_size;
350
351 if(virtmem_size < physmem_size)
Jeff Dikeae173812005-11-07 00:58:57 -0800352 printf("Kernel virtual memory size shrunk to %lu bytes\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 virtmem_size);
354
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700355 uml_postsetup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Jeff Dike57598fd2007-05-10 22:22:30 -0700357 stack_protections((unsigned long) &init_thread_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 os_flush_stdout();
359
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700360 return CHOOSE_MODE(start_uml_tt(), start_uml_skas());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363extern int uml_exitcode;
364
365static int panic_exit(struct notifier_block *self, unsigned long unused1,
366 void *unused2)
367{
368 bust_spinlocks(1);
369 show_regs(&(current->thread.regs));
370 bust_spinlocks(0);
371 uml_exitcode = 1;
Jeff Dike63843c22007-05-06 14:51:39 -0700372 os_dump_core();
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376static struct notifier_block panic_exit_notifier = {
377 .notifier_call = panic_exit,
378 .next = NULL,
379 .priority = 0
380};
381
382void __init setup_arch(char **cmdline_p)
383{
Alan Sterne041c682006-03-27 01:16:30 -0800384 atomic_notifier_chain_register(&panic_notifier_list,
385 &panic_exit_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 paging_init();
Alon Bar-Lev19bf7e72007-02-12 00:54:23 -0800387 strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700388 *cmdline_p = command_line;
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -0700389 setup_hostinfo(host_info, sizeof host_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392void __init check_bugs(void)
393{
394 arch_check_bugs();
Jeff Dikea5ed1ff2007-05-06 14:50:58 -0700395 os_check_bugs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800398void apply_alternatives(struct alt_instr *start, struct alt_instr *end)
399{
400}
401
Theodore Tsoc61a8412006-07-03 00:24:09 -0700402#ifdef CONFIG_SMP
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800403void alternatives_smp_module_add(struct module *mod, char *name,
404 void *locks, void *locks_end,
405 void *text, void *text_end)
406{
407}
408
409void alternatives_smp_module_del(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411}
Theodore Tsoc61a8412006-07-03 00:24:09 -0700412#endif