2 * Copyright (C) 2000, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #include "linux/kernel.h"
7 #include "linux/sched.h"
8 #include "linux/notifier.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"
20 #include "linux/utsname.h"
22 #include "asm/pgtable.h"
23 #include "asm/ptrace.h"
26 #include "asm/setup.h"
28 #include "asm/current.h"
29 #include "kern_util.h"
30 #include "as-layout.h"
38 #include "choose-mode.h"
39 #include "mode_kern.h"
41 #ifdef UML_CONFIG_MODE_SKAS
45 #define DEFAULT_COMMAND_LINE "root=98:0"
47 /* Changed in linux_main and setup_arch, which run before SMP is started */
48 static char __initdata command_line
[COMMAND_LINE_SIZE
] = { 0 };
50 static void __init
add_arg(char *arg
)
52 if (strlen(command_line
) + strlen(arg
) + 1 > COMMAND_LINE_SIZE
) {
53 printf("add_arg: Too many command line arguments!\n");
56 if(strlen(command_line
) > 0)
57 strcat(command_line
, " ");
58 strcat(command_line
, arg
);
61 struct cpuinfo_um boot_cpu_data
= {
63 .ipi_pipe
= { -1, -1 }
66 unsigned long thread_saved_pc(struct task_struct
*task
)
68 return os_process_pc(CHOOSE_MODE_PROC(thread_pid_tt
, thread_pid_skas
,
72 /* Changed in setup_arch, which is called in early boot */
73 static char host_info
[(__NEW_UTS_LEN
+ 1) * 5];
75 static int show_cpuinfo(struct seq_file
*m
, void *v
)
80 index
= (struct cpuinfo_um
*) v
- cpu_data
;
81 if (!cpu_online(index
))
85 seq_printf(m
, "processor\t: %d\n", index
);
86 seq_printf(m
, "vendor_id\t: User Mode Linux\n");
87 seq_printf(m
, "model name\t: UML\n");
88 seq_printf(m
, "mode\t\t: %s\n", CHOOSE_MODE("tt", "skas"));
89 seq_printf(m
, "host\t\t: %s\n", host_info
);
90 seq_printf(m
, "bogomips\t: %lu.%02lu\n\n",
91 loops_per_jiffy
/(500000/HZ
),
92 (loops_per_jiffy
/(5000/HZ
)) % 100);
97 static void *c_start(struct seq_file
*m
, loff_t
*pos
)
99 return *pos
< NR_CPUS
? cpu_data
+ *pos
: NULL
;
102 static void *c_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
105 return c_start(m
, pos
);
108 static void c_stop(struct seq_file
*m
, void *v
)
112 const struct seq_operations cpuinfo_op
= {
116 .show
= show_cpuinfo
,
119 /* Set in linux_main */
120 unsigned long host_task_size
;
121 unsigned long task_size
;
123 unsigned long uml_start
;
125 /* Set in early boot */
126 unsigned long uml_physmem
;
127 unsigned long uml_reserved
;
128 unsigned long start_vm
;
129 unsigned long end_vm
;
132 #ifdef CONFIG_CMDLINE_ON_HOST
133 /* Pointer set in linux_main, the array itself is private to each thread,
134 * and changed at address space creation time so this poses no concurrency
137 static char *argv1_begin
= NULL
;
138 static char *argv1_end
= NULL
;
141 /* Set in early boot */
142 static int have_root __initdata
= 0;
143 long long physmem_size
= 32 * 1024 * 1024;
145 void set_cmdline(char *cmd
)
147 #ifdef CONFIG_CMDLINE_ON_HOST
150 if(CHOOSE_MODE(honeypot
, 0)) return;
154 snprintf(argv1_begin
,
155 (argv1_end
- argv1_begin
) * sizeof(*ptr
),
157 ptr
= &argv1_begin
[strlen(argv1_begin
)];
159 else ptr
= argv1_begin
;
161 snprintf(ptr
, (argv1_end
- ptr
) * sizeof(*ptr
), "[%s]", cmd
);
162 memset(argv1_begin
+ strlen(argv1_begin
), '\0',
163 argv1_end
- argv1_begin
- strlen(argv1_begin
));
167 static char *usage_string
=
168 "User Mode Linux v%s\n"
169 " available at http://user-mode-linux.sourceforge.net/\n\n";
171 static int __init
uml_version_setup(char *line
, int *add
)
173 printf("%s\n", init_utsname()->release
);
179 __uml_setup("--version", uml_version_setup
,
181 " Prints the version number of the kernel.\n\n"
184 static int __init
uml_root_setup(char *line
, int *add
)
190 __uml_setup("root=", uml_root_setup
,
191 "root=<file containing the root fs>\n"
192 " This is actually used by the generic kernel in exactly the same\n"
193 " way as in any other kernel. If you configure a number of block\n"
194 " devices and want to boot off something other than ubd0, you \n"
195 " would use something like:\n"
196 " root=/dev/ubd5\n\n"
199 #ifndef CONFIG_MODE_TT
201 static int __init
no_skas_debug_setup(char *line
, int *add
)
203 printf("'debug' is not necessary to gdb UML in skas mode - run \n");
204 printf("'gdb linux' and disable CONFIG_CMDLINE_ON_HOST if gdb \n");
205 printf("doesn't work as expected\n");
210 __uml_setup("debug", no_skas_debug_setup
,
212 " this flag is not needed to run gdb on UML in skas mode\n\n"
218 static int __init
uml_ncpus_setup(char *line
, int *add
)
220 if (!sscanf(line
, "%d", &ncpus
)) {
221 printf("Couldn't parse [%s]\n", line
);
228 __uml_setup("ncpus=", uml_ncpus_setup
,
229 "ncpus=<# of desired CPUs>\n"
230 " This tells an SMP kernel how many virtual processors to start.\n\n"
234 static int force_tt
= 0;
236 #if defined(CONFIG_MODE_TT) && defined(CONFIG_MODE_SKAS)
239 static int __init
mode_tt_setup(char *line
, int *add
)
246 #ifdef CONFIG_MODE_SKAS
250 static int __init
mode_tt_setup(char *line
, int *add
)
252 printf("CONFIG_MODE_TT disabled - 'mode=tt' ignored\n");
257 #ifdef CONFIG_MODE_TT
261 static int __init
mode_tt_setup(char *line
, int *add
)
263 printf("CONFIG_MODE_SKAS disabled - 'mode=tt' redundant\n");
271 __uml_setup("mode=tt", mode_tt_setup
,
273 " When both CONFIG_MODE_TT and CONFIG_MODE_SKAS are enabled, this option\n"
274 " forces UML to run in tt (tracing thread) mode. It is not the default\n"
275 " because it's slower and less secure than skas mode.\n\n"
278 int mode_tt
= DEFAULT_TT
;
280 static int __init
Usage(char *line
, int *add
)
284 printf(usage_string
, init_utsname()->release
);
285 p
= &__uml_help_start
;
286 while (p
< &__uml_help_end
) {
294 __uml_setup("--help", Usage
,
296 " Prints this message.\n\n"
299 static int __init
uml_checksetup(char *line
, int *add
)
303 p
= &__uml_setup_start
;
304 while(p
< &__uml_setup_end
) {
308 if(!strncmp(line
, p
->str
, n
)){
309 if (p
->setup_func(line
+ n
, add
)) return 1;
316 static void __init
uml_postsetup(void)
320 p
= &__uml_postsetup_start
;
321 while(p
< &__uml_postsetup_end
){
328 /* Set during early boot */
329 unsigned long brk_start
;
330 unsigned long end_iomem
;
331 EXPORT_SYMBOL(end_iomem
);
333 #define MIN_VMALLOC (32 * 1024 * 1024)
335 extern char __binary_start
;
337 int __init
linux_main(int argc
, char **argv
)
339 unsigned long avail
, diff
;
340 unsigned long virtmem_size
, max_physmem
;
344 for (i
= 1; i
< argc
; i
++){
345 if((i
== 1) && (argv
[i
][0] == ' ')) continue;
347 uml_checksetup(argv
[i
], &add
);
352 add_arg(DEFAULT_COMMAND_LINE
);
357 mode_tt
= force_tt
? 1 : !can_do_skas();
358 #ifndef CONFIG_MODE_TT
360 /*Since CONFIG_MODE_TT is #undef'ed, force_tt cannot be 1. So,
361 * can_do_skas() returned 0, and the message is correct. */
362 printf("Support for TT mode is disabled, and no SKAS support is present on the host.\n");
367 #ifndef CONFIG_MODE_SKAS
370 /* Show to the user the result of selection */
373 else if (proc_mm
&& ptrace_faultinfo
)
379 printf("UML running in %s mode\n", mode
);
381 uml_start
= (unsigned long) &__binary_start
;
382 host_task_size
= CHOOSE_MODE_PROC(set_task_sizes_tt
,
383 set_task_sizes_skas
, &task_size
);
386 * Setting up handlers to 'sig_info' struct
388 os_fill_handlinfo(handlinfo_kern
);
390 brk_start
= (unsigned long) sbrk(0);
391 CHOOSE_MODE_PROC(before_mem_tt
, before_mem_skas
, brk_start
);
392 /* Increase physical memory size for exec-shield users
393 so they actually get what they asked for. This should
394 add zero for non-exec shield users */
396 diff
= UML_ROUND_UP(brk_start
) - UML_ROUND_UP(&_end
);
397 if(diff
> 1024 * 1024){
398 printf("Adding %ld bytes to physical memory to account for "
399 "exec-shield gap\n", diff
);
400 physmem_size
+= UML_ROUND_UP(brk_start
) - UML_ROUND_UP(&_end
);
403 uml_physmem
= uml_start
& PAGE_MASK
;
405 /* Reserve up to 4M after the current brk */
406 uml_reserved
= ROUND_4M(brk_start
) + (1 << 22);
408 setup_machinename(init_utsname()->machine
);
410 #ifdef CONFIG_CMDLINE_ON_HOST
411 argv1_begin
= argv
[1];
412 argv1_end
= &argv
[1][strlen(argv
[1])];
416 iomem_size
= (iomem_size
+ PAGE_SIZE
- 1) & PAGE_MASK
;
417 max_physmem
= get_kmem_end() - uml_physmem
- iomem_size
- MIN_VMALLOC
;
419 /* Zones have to begin on a 1 << MAX_ORDER page boundary,
420 * so this makes sure that's true for highmem
422 max_physmem
&= ~((1 << (PAGE_SHIFT
+ MAX_ORDER
)) - 1);
423 if(physmem_size
+ iomem_size
> max_physmem
){
424 highmem
= physmem_size
+ iomem_size
- max_physmem
;
425 physmem_size
-= highmem
;
426 #ifndef CONFIG_HIGHMEM
428 printf("CONFIG_HIGHMEM not enabled - physical memory shrunk "
429 "to %Lu bytes\n", physmem_size
);
433 high_physmem
= uml_physmem
+ physmem_size
;
434 end_iomem
= high_physmem
+ iomem_size
;
435 high_memory
= (void *) end_iomem
;
437 start_vm
= VMALLOC_START
;
439 setup_physmem(uml_physmem
, uml_reserved
, physmem_size
, highmem
);
440 if(init_maps(physmem_size
, iomem_size
, highmem
)){
441 printf("Failed to allocate mem_map for %Lu bytes of physical "
442 "memory and %Lu bytes of highmem\n", physmem_size
,
447 virtmem_size
= physmem_size
;
448 avail
= get_kmem_end() - start_vm
;
449 if(physmem_size
> avail
) virtmem_size
= avail
;
450 end_vm
= start_vm
+ virtmem_size
;
452 if(virtmem_size
< physmem_size
)
453 printf("Kernel virtual memory size shrunk to %lu bytes\n",
458 task_protections((unsigned long) &init_thread_info
);
461 return CHOOSE_MODE(start_uml_tt(), start_uml_skas());
464 extern int uml_exitcode
;
466 static int panic_exit(struct notifier_block
*self
, unsigned long unused1
,
470 show_regs(&(current
->thread
.regs
));
477 static struct notifier_block panic_exit_notifier
= {
478 .notifier_call
= panic_exit
,
483 void __init
setup_arch(char **cmdline_p
)
485 atomic_notifier_chain_register(&panic_notifier_list
,
486 &panic_exit_notifier
);
488 strlcpy(boot_command_line
, command_line
, COMMAND_LINE_SIZE
);
489 *cmdline_p
= command_line
;
490 setup_hostinfo(host_info
, sizeof host_info
);
493 void __init
check_bugs(void)
499 void apply_alternatives(struct alt_instr
*start
, struct alt_instr
*end
)
504 void alternatives_smp_module_add(struct module
*mod
, char *name
,
505 void *locks
, void *locks_end
,
506 void *text
, void *text_end
)
510 void alternatives_smp_module_del(struct module
*mod
)