ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / kernel / um_arch.c
1 /* 
2  * Copyright (C) 2000, 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/config.h"
7 #include "linux/kernel.h"
8 #include "linux/sched.h"
9 #include "linux/notifier.h"
10 #include "linux/mm.h"
11 #include "linux/types.h"
12 #include "linux/tty.h"
13 #include "linux/init.h"
14 #include "linux/bootmem.h"
15 #include "linux/spinlock.h"
16 #include "linux/utsname.h"
17 #include "linux/sysrq.h"
18 #include "linux/seq_file.h"
19 #include "linux/delay.h"
20 #include "asm/page.h"
21 #include "asm/pgtable.h"
22 #include "asm/ptrace.h"
23 #include "asm/elf.h"
24 #include "asm/user.h"
25 #include "ubd_user.h"
26 #include "asm/current.h"
27 #include "user_util.h"
28 #include "kern_util.h"
29 #include "kern.h"
30 #include "mprot.h"
31 #include "mem_user.h"
32 #include "mem.h"
33 #include "umid.h"
34 #include "initrd.h"
35 #include "init.h"
36 #include "os.h"
37 #include "choose-mode.h"
38 #include "mode_kern.h"
39 #include "mode.h"
40
41 #define DEFAULT_COMMAND_LINE "root=6200"
42
43 struct cpuinfo_um boot_cpu_data = { 
44         .loops_per_jiffy        = 0,
45         .ipi_pipe               = { -1, -1 }
46 };
47
48 unsigned long thread_saved_pc(struct task_struct *task)
49 {
50         return(os_process_pc(CHOOSE_MODE_PROC(thread_pid_tt, thread_pid_skas,
51                                               task)));
52 }
53
54 static int show_cpuinfo(struct seq_file *m, void *v)
55 {
56         int index;
57
58         index = (struct cpuinfo_um *)v - cpu_data;
59 #ifdef CONFIG_SMP
60         if (!cpu_online(index))
61                 return 0;
62 #endif
63
64         seq_printf(m, "bogomips\t: %lu.%02lu\n",
65                    loops_per_jiffy/(500000/HZ),
66                    (loops_per_jiffy/(5000/HZ)) % 100);
67         seq_printf(m, "host\t\t: %s\n", host_info);
68
69         return(0);
70 }
71
72 static void *c_start(struct seq_file *m, loff_t *pos)
73 {
74         return *pos < NR_CPUS ? cpu_data + *pos : NULL;
75 }
76
77 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
78 {
79         ++*pos;
80         return c_start(m, pos);
81 }
82
83 static void c_stop(struct seq_file *m, void *v)
84 {
85 }
86
87 struct seq_operations cpuinfo_op = {
88         .start  = c_start,
89         .next   = c_next,
90         .stop   = c_stop,
91         .show   = show_cpuinfo,
92 };
93
94 pte_t * __bad_pagetable(void)
95 {
96         panic("Someone should implement __bad_pagetable");
97         return(NULL);
98 }
99
100 /* Set in linux_main */
101 unsigned long host_task_size;
102 unsigned long task_size;
103
104 unsigned long uml_start;
105
106 /* Set in early boot */
107 unsigned long uml_physmem;
108 unsigned long uml_reserved;
109 unsigned long start_vm;
110 unsigned long end_vm;
111 int ncpus = 1;
112
113 #ifdef CONFIG_MODE_TT
114 /* Pointer set in linux_main, the array itself is private to each thread,
115  * and changed at address space creation time so this poses no concurrency
116  * problems.
117  */
118 static char *argv1_begin = NULL;
119 static char *argv1_end = NULL;
120 #endif
121
122 /* Set in early boot */
123 static int have_root __initdata = 0;
124 long physmem_size = 32 * 1024 * 1024;
125
126 void set_cmdline(char *cmd)
127 {
128 #ifdef CONFIG_MODE_TT
129         char *umid, *ptr;
130
131         if(CHOOSE_MODE(honeypot, 0)) return;
132
133         umid = get_umid(1);
134         if(umid != NULL){
135                 snprintf(argv1_begin, 
136                          (argv1_end - argv1_begin) * sizeof(*ptr), 
137                          "(%s)", umid);
138                 ptr = &argv1_begin[strlen(argv1_begin)];
139         }
140         else ptr = argv1_begin;
141
142         snprintf(ptr, (argv1_end - ptr) * sizeof(*ptr), " [%s]", cmd);
143         memset(argv1_begin + strlen(argv1_begin), '\0', 
144                argv1_end - argv1_begin - strlen(argv1_begin));
145 #endif
146 }
147
148 static char *usage_string = 
149 "User Mode Linux v%s\n"
150 "       available at http://user-mode-linux.sourceforge.net/\n\n";
151
152 static int __init uml_version_setup(char *line, int *add)
153 {
154         printf("%s\n", system_utsname.release);
155         exit(0);
156 }
157
158 __uml_setup("--version", uml_version_setup,
159 "--version\n"
160 "    Prints the version number of the kernel.\n\n"
161 );
162
163 static int __init uml_root_setup(char *line, int *add)
164 {
165         have_root = 1;
166         return 0;
167 }
168
169 __uml_setup("root=", uml_root_setup,
170 "root=<file containing the root fs>\n"
171 "    This is actually used by the generic kernel in exactly the same\n"
172 "    way as in any other kernel. If you configure a number of block\n"
173 "    devices and want to boot off something other than ubd0, you \n"
174 "    would use something like:\n"
175 "        root=/dev/ubd5\n\n"
176 );
177
178 #ifdef CONFIG_SMP
179 static int __init uml_ncpus_setup(char *line, int *add)
180 {
181        if (!sscanf(line, "%d", &ncpus)) {
182                printk("Couldn't parse [%s]\n", line);
183                return -1;
184        }
185
186        return 0;
187 }
188
189 __uml_setup("ncpus=", uml_ncpus_setup,
190 "ncpus=<# of desired CPUs>\n"
191 "    This tells an SMP kernel how many virtual processors to start.\n\n" 
192 );
193 #endif
194
195 int force_tt = 0;
196
197 #if defined(CONFIG_MODE_TT) && defined(CONFIG_MODE_SKAS)
198 #define DEFAULT_TT 0
199
200 static int __init mode_tt_setup(char *line, int *add)
201 {
202         force_tt = 1;
203         return(0);
204 }
205
206 #else
207 #ifdef CONFIG_MODE_SKAS
208
209 #define DEFAULT_TT 0
210
211 static int __init mode_tt_setup(char *line, int *add)
212 {
213         printk("CONFIG_MODE_TT disabled - 'mode=tt' ignored\n");
214         return(0);
215 }
216
217 #else
218 #ifdef CONFIG_MODE_TT
219
220 #define DEFAULT_TT 1
221
222 static int __init mode_tt_setup(char *line, int *add)
223 {
224         printk("CONFIG_MODE_SKAS disabled - 'mode=tt' redundant\n");
225         return(0);
226 }
227
228 #else
229
230 #error Either CONFIG_MODE_TT or CONFIG_MODE_SKAS must be enabled
231
232 #endif
233 #endif
234 #endif
235
236 __uml_setup("mode=tt", mode_tt_setup,
237 "mode=tt\n"
238 "    When both CONFIG_MODE_TT and CONFIG_MODE_SKAS are enabled, this option\n"
239 "    forces UML to run in tt (tracing thread) mode.  It is not the default\n"
240 "    because it's slower and less secure than skas mode.\n\n"
241 );
242
243 int mode_tt = DEFAULT_TT;
244
245 static int __init Usage(char *line, int *add)
246 {
247         const char **p;
248
249         printf(usage_string, system_utsname.release);
250         p = &__uml_help_start;
251         while (p < &__uml_help_end) {
252                 printf("%s", *p);
253                 p++;
254         }
255         exit(0);
256 }
257
258 __uml_setup("--help", Usage,
259 "--help\n"
260 "    Prints this message.\n\n"
261 );
262
263 static int __init uml_checksetup(char *line, int *add)
264 {
265         struct uml_param *p;
266
267         p = &__uml_setup_start;
268         while(p < &__uml_setup_end) {
269                 int n;
270
271                 n = strlen(p->str);
272                 if(!strncmp(line, p->str, n)){
273                         if (p->setup_func(line + n, add)) return 1;
274                 }
275                 p++;
276         }
277         return 0;
278 }
279
280 static void __init uml_postsetup(void)
281 {
282         initcall_t *p;
283
284         p = &__uml_postsetup_start;
285         while(p < &__uml_postsetup_end){
286                 (*p)();
287                 p++;
288         }
289         return;
290 }
291
292 /* Set during early boot */
293 unsigned long brk_start;
294 static struct vm_reserved kernel_vm_reserved;
295
296 #define MIN_VMALLOC (32 * 1024 * 1024)
297
298 int linux_main(int argc, char **argv)
299 {
300         unsigned long avail;
301         unsigned long virtmem_size, max_physmem;
302         unsigned int i, add, err;
303
304         for (i = 1; i < argc; i++){
305                 if((i == 1) && (argv[i][0] == ' ')) continue;
306                 add = 1;
307                 uml_checksetup(argv[i], &add);
308                 if(add) add_arg(saved_command_line, argv[i]);
309         }
310         if(have_root == 0) add_arg(saved_command_line, DEFAULT_COMMAND_LINE);
311
312         mode_tt = force_tt ? 1 : !can_do_skas();
313         uml_start = CHOOSE_MODE_PROC(set_task_sizes_tt, set_task_sizes_skas, 0,
314                                      &host_task_size, &task_size);
315
316         brk_start = (unsigned long) sbrk(0);
317         CHOOSE_MODE_PROC(before_mem_tt, before_mem_skas, brk_start);
318
319         uml_physmem = uml_start;
320
321         /* Reserve up to 4M after the current brk */
322         uml_reserved = ROUND_4M(brk_start) + (1 << 22);
323
324         setup_machinename(system_utsname.machine);
325
326 #ifdef CONFIG_MODE_TT
327         argv1_begin = argv[1];
328         argv1_end = &argv[1][strlen(argv[1])];
329 #endif
330   
331         set_usable_vm(uml_physmem, get_kmem_end());
332
333         highmem = 0;
334         max_physmem = get_kmem_end() - uml_physmem - MIN_VMALLOC;
335         if(physmem_size > max_physmem){
336                 highmem = physmem_size - max_physmem;
337                 physmem_size -= highmem;
338 #ifndef CONFIG_HIGHMEM
339                 highmem = 0;
340                 printf("CONFIG_HIGHMEM not enabled - physical memory shrunk "
341                        "to %ld bytes\n", physmem_size);
342 #endif
343         }
344
345         high_physmem = uml_physmem + physmem_size;
346         high_memory = (void *) high_physmem;
347
348         start_vm = VMALLOC_START;
349
350         setup_physmem(uml_physmem, uml_reserved, physmem_size);
351         virtmem_size = physmem_size;
352         avail = get_kmem_end() - start_vm;
353         if(physmem_size > avail) virtmem_size = avail;
354         end_vm = start_vm + virtmem_size;
355
356         if(virtmem_size < physmem_size)
357                 printf("Kernel virtual memory size shrunk to %ld bytes\n",
358                        virtmem_size);
359
360         err = reserve_vm(high_physmem, end_vm, &kernel_vm_reserved);
361         if(err){
362                 printf("Failed to reserve VM area for kernel VM\n");
363                 exit(1);
364         }
365
366         uml_postsetup();
367
368         init_task.thread.kernel_stack = (unsigned long) &init_thread_info + 
369                 2 * PAGE_SIZE;
370
371         task_protections((unsigned long) &init_thread_info);
372
373         return(CHOOSE_MODE(start_uml_tt(), start_uml_skas()));
374 }
375
376 static int panic_exit(struct notifier_block *self, unsigned long unused1,
377                       void *unused2)
378 {
379 #ifdef CONFIG_MAGIC_SYSRQ
380         handle_sysrq('p', &current->thread.regs, NULL, NULL);
381 #endif
382         machine_halt();
383         return(0);
384 }
385
386 static struct notifier_block panic_exit_notifier = {
387         .notifier_call          = panic_exit,
388         .next                   = NULL,
389         .priority               = 0
390 };
391
392 void __init setup_arch(char **cmdline_p)
393 {
394         notifier_chain_register(&panic_notifier_list, &panic_exit_notifier);
395         paging_init();
396         strcpy(command_line, saved_command_line);
397         *cmdline_p = command_line;
398         setup_hostinfo();
399 }
400
401 void __init check_bugs(void)
402 {
403         arch_check_bugs();
404         check_ptrace();
405         check_sigio();
406 }
407
408 /*
409  * Overrides for Emacs so that we follow Linus's tabbing style.
410  * Emacs will notice this stuff at the end of the file and automatically
411  * adjust the settings for this buffer only.  This must remain at the end
412  * of the file.
413  * ---------------------------------------------------------------------------
414  * Local variables:
415  * c-file-style: "linux"
416  * End:
417  */