2 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
12 #include <sys/resource.h>
16 #include "user_util.h"
17 #include "kern_util.h"
23 #include "choose-mode.h"
24 #include "uml-config.h"
27 /* Set in set_stklim, which is called from main and __wrap_malloc.
28 * __wrap_malloc only calls it if main hasn't started.
30 unsigned long stacksizelim;
35 #define PGD_BOUND (4 * 1024 * 1024)
36 #define STACKSIZE (8 * 1024 * 1024)
37 #define THREAD_NAME_LEN (256)
39 static void set_stklim(void)
43 if(getrlimit(RLIMIT_STACK, &lim) < 0){
47 if((lim.rlim_cur == RLIM_INFINITY) || (lim.rlim_cur > STACKSIZE)){
48 lim.rlim_cur = STACKSIZE;
49 if(setrlimit(RLIMIT_STACK, &lim) < 0){
54 stacksizelim = (lim.rlim_cur + PGD_BOUND - 1) & ~(PGD_BOUND - 1);
57 static __init void do_uml_initcalls(void)
61 call = &__uml_initcall_start;
62 while (call < &__uml_initcall_end){;
68 static void last_ditch_exit(int sig)
70 signal(SIGINT, SIG_DFL);
71 signal(SIGTERM, SIG_DFL);
72 signal(SIGHUP, SIG_DFL);
77 extern int uml_exitcode;
79 extern void scan_elf_aux( char **envp);
81 int main(int argc, char **argv, char **envp)
86 #ifdef UML_CONFIG_CMDLINE_ON_HOST
87 /* Allocate memory for thread command lines */
88 if(argc < 2 || strlen(argv[1]) < THREAD_NAME_LEN - 1){
90 char padding[THREAD_NAME_LEN] = {
91 [ 0 ... THREAD_NAME_LEN - 2] = ' ', '\0'
94 new_argv = malloc((argc + 2) * sizeof(char*));
96 perror("Allocating extended argv");
100 new_argv[0] = argv[0];
101 new_argv[1] = padding;
103 for(i = 2; i <= argc; i++)
104 new_argv[i] = argv[i - 1];
105 new_argv[argc + 1] = NULL;
107 execvp(new_argv[0], new_argv);
108 perror("execing with extended args");
113 linux_prog = argv[0];
117 new_argv = malloc((argc + 1) * sizeof(char *));
118 if(new_argv == NULL){
119 perror("Mallocing argv");
123 new_argv[i] = strdup(argv[i]);
124 if(new_argv[i] == NULL){
125 perror("Mallocing an arg");
129 new_argv[argc] = NULL;
131 set_handler(SIGINT, last_ditch_exit, SA_ONESHOT | SA_NODEFER, -1);
132 set_handler(SIGTERM, last_ditch_exit, SA_ONESHOT | SA_NODEFER, -1);
133 set_handler(SIGHUP, last_ditch_exit, SA_ONESHOT | SA_NODEFER, -1);
138 ret = linux_main(argc, argv);
140 /* Disable SIGPROF - I have no idea why libc doesn't do this or turn
141 * off the profiling time, but UML dies with a SIGPROF just before
142 * exiting when profiling is active.
144 change_sig(SIGPROF, 0);
146 /* This signal stuff used to be in the reboot case. However,
147 * sometimes a SIGVTALRM can come in when we're halting (reproducably
148 * when writing out gcov information, presumably because that takes
149 * some time) and cause a segfault.
152 /* stop timers and set SIG*ALRM to be ignored */
155 /* disable SIGIO for the fds and set SIGIO to be ignored */
156 err = deactivate_all_fds();
158 printf("deactivate_all_fds failed, errno = %d\n", -err);
160 /* Let any pending signals fire now. This ensures
161 * that they won't be delivered after the exec, when
162 * they are definitely not expected.
169 execvp(new_argv[0], new_argv);
170 perror("Failed to exec kernel");
174 return(uml_exitcode);
177 #define CAN_KMALLOC() \
178 (kmalloc_ok && CHOOSE_MODE((os_getpid() != tracing_pid), 1))
180 extern void *__real_malloc(int);
182 void *__wrap_malloc(int size)
187 return(__real_malloc(size));
188 else if(size <= PAGE_SIZE) /* finding contiguos pages can be hard*/
189 ret = um_kmalloc(size);
190 else ret = um_vmalloc(size);
192 /* glibc people insist that if malloc fails, errno should be
193 * set by malloc as well. So we do.
201 void *__wrap_calloc(int n, int size)
203 void *ptr = __wrap_malloc(n * size);
205 if(ptr == NULL) return(NULL);
206 memset(ptr, 0, n * size);
210 extern void __real_free(void *);
212 extern unsigned long high_physmem;
214 void __wrap_free(void *ptr)
216 unsigned long addr = (unsigned long) ptr;
218 /* We need to know how the allocation happened, so it can be correctly
219 * freed. This is done by seeing what region of memory the pointer is
221 * physical memory - kmalloc/kfree
222 * kernel virtual memory - vmalloc/vfree
223 * anywhere else - malloc/free
224 * If kmalloc is not yet possible, then either high_physmem and/or
225 * end_vm are still 0 (as at startup), in which case we call free, or
226 * we have set them, but anyway addr has not been allocated from those
227 * areas. So, in both cases __real_free is called.
229 * CAN_KMALLOC is checked because it would be bad to free a buffer
230 * with kmalloc/vmalloc after they have been turned off during
232 * XXX: However, we sometimes shutdown CAN_KMALLOC temporarily, so
233 * there is a possibility for memory leaks.
236 if((addr >= uml_physmem) && (addr < high_physmem)){
240 else if((addr >= start_vm) && (addr < end_vm)){
244 else __real_free(ptr);