main.c 5.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
J
Jeff Dike 已提交
2
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5 6 7
 * Licensed under the GPL
 */

#include <stdio.h>
#include <stdlib.h>
J
Jeff Dike 已提交
8
#include <unistd.h>
L
Linus Torvalds 已提交
9
#include <errno.h>
J
Jeff Dike 已提交
10 11
#include <signal.h>
#include <string.h>
L
Linus Torvalds 已提交
12
#include <sys/resource.h>
13 14 15 16 17
#include <as-layout.h>
#include <init.h>
#include <kern_util.h>
#include <os.h>
#include <um_malloc.h>
L
Linus Torvalds 已提交
18 19 20 21 22

#define PGD_BOUND (4 * 1024 * 1024)
#define STACKSIZE (8 * 1024 * 1024)
#define THREAD_NAME_LEN (256)

23 24
long elf_aux_hwcap;

L
Linus Torvalds 已提交
25 26 27 28
static void set_stklim(void)
{
	struct rlimit lim;

J
Jeff Dike 已提交
29
	if (getrlimit(RLIMIT_STACK, &lim) < 0) {
L
Linus Torvalds 已提交
30 31 32
		perror("getrlimit");
		exit(1);
	}
J
Jeff Dike 已提交
33
	if ((lim.rlim_cur == RLIM_INFINITY) || (lim.rlim_cur > STACKSIZE)) {
L
Linus Torvalds 已提交
34
		lim.rlim_cur = STACKSIZE;
J
Jeff Dike 已提交
35
		if (setrlimit(RLIMIT_STACK, &lim) < 0) {
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46
			perror("setrlimit");
			exit(1);
		}
	}
}

static __init void do_uml_initcalls(void)
{
	initcall_t *call;

	call = &__uml_initcall_start;
J
Jeff Dike 已提交
47
	while (call < &__uml_initcall_end) {
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55 56 57 58
		(*call)();
		call++;
	}
}

static void last_ditch_exit(int sig)
{
	uml_cleanup();
	exit(1);
}

59 60 61 62 63 64 65
static void install_fatal_handler(int sig)
{
	struct sigaction action;

	/* All signals are enabled in this handler ... */
	sigemptyset(&action.sa_mask);

J
Jeff Dike 已提交
66 67
	/*
	 * ... including the signal being handled, plus we want the
68 69 70 71 72 73 74
	 * handler reset to the default behavior, so that if an exit
	 * handler is hanging for some reason, the UML will just die
	 * after this signal is sent a second time.
	 */
	action.sa_flags = SA_RESETHAND | SA_NODEFER;
	action.sa_restorer = NULL;
	action.sa_handler = last_ditch_exit;
J
Jeff Dike 已提交
75
	if (sigaction(sig, &action, NULL) < 0) {
76
		printf("failed to install handler for signal %d - errno = %d\n",
77
		       sig, errno);
78 79 80 81
		exit(1);
	}
}

R
Richard Weinberger 已提交
82
#define UML_LIB_PATH	":" OS_LIB_PATH "/uml"
83 84 85 86 87 88 89 90

static void setup_env_path(void)
{
	char *new_path = NULL;
	char *old_path = NULL;
	int path_len = 0;

	old_path = getenv("PATH");
J
Jeff Dike 已提交
91 92
	/*
	 * if no PATH variable is set or it has an empty value
93 94 95
	 * just use the default + /usr/lib/uml
	 */
	if (!old_path || (path_len = strlen(old_path)) == 0) {
96 97
		if (putenv("PATH=:/bin:/usr/bin/" UML_LIB_PATH))
			perror("couldn't putenv");
98 99 100 101 102 103 104
		return;
	}

	/* append /usr/lib/uml to the existing path */
	path_len += strlen("PATH=" UML_LIB_PATH) + 1;
	new_path = malloc(path_len);
	if (!new_path) {
105
		perror("couldn't malloc to set a new PATH");
106 107 108
		return;
	}
	snprintf(new_path, path_len, "PATH=%s" UML_LIB_PATH, old_path);
109 110 111 112
	if (putenv(new_path)) {
		perror("couldn't putenv to set a new PATH");
		free(new_path);
	}
113 114
}

L
Linus Torvalds 已提交
115 116
extern void scan_elf_aux( char **envp);

J
Jeff Dike 已提交
117
int __init main(int argc, char **argv, char **envp)
L
Linus Torvalds 已提交
118 119
{
	char **new_argv;
120
	int ret, i, err;
L
Linus Torvalds 已提交
121 122 123

	set_stklim();

124 125
	setup_env_path();

126 127
	setsid();

L
Linus Torvalds 已提交
128
	new_argv = malloc((argc + 1) * sizeof(char *));
J
Jeff Dike 已提交
129
	if (new_argv == NULL) {
L
Linus Torvalds 已提交
130 131 132
		perror("Mallocing argv");
		exit(1);
	}
J
Jeff Dike 已提交
133
	for (i = 0; i < argc; i++) {
L
Linus Torvalds 已提交
134
		new_argv[i] = strdup(argv[i]);
J
Jeff Dike 已提交
135
		if (new_argv[i] == NULL) {
L
Linus Torvalds 已提交
136 137 138 139 140 141
			perror("Mallocing an arg");
			exit(1);
		}
	}
	new_argv[argc] = NULL;

J
Jeff Dike 已提交
142 143
	/*
	 * Allow these signals to bring down a UML if all other
144 145 146 147
	 * methods of control fail.
	 */
	install_fatal_handler(SIGINT);
	install_fatal_handler(SIGTERM);
L
Linus Torvalds 已提交
148

149
#ifdef CONFIG_ARCH_REUSE_HOST_VSYSCALL_AREA
J
Jeff Dike 已提交
150
	scan_elf_aux(envp);
151
#endif
L
Linus Torvalds 已提交
152 153

	do_uml_initcalls();
A
Anton Ivanov 已提交
154
	change_sig(SIGPIPE, 0);
L
Linus Torvalds 已提交
155 156
	ret = linux_main(argc, argv);

J
Jeff Dike 已提交
157 158
	/*
	 * Disable SIGPROF - I have no idea why libc doesn't do this or turn
L
Linus Torvalds 已提交
159 160 161 162 163
	 * off the profiling time, but UML dies with a SIGPROF just before
	 * exiting when profiling is active.
	 */
	change_sig(SIGPROF, 0);

J
Jeff Dike 已提交
164 165
	/*
	 * This signal stuff used to be in the reboot case.  However,
166 167 168 169 170
	 * sometimes a SIGVTALRM can come in when we're halting (reproducably
	 * when writing out gcov information, presumably because that takes
	 * some time) and cause a segfault.
	 */

J
Jeff Dike 已提交
171
	/* stop timers and set SIGVTALRM to be ignored */
172 173 174 175
	disable_timer();

	/* disable SIGIO for the fds and set SIGIO to be ignored */
	err = deactivate_all_fds();
J
Jeff Dike 已提交
176
	if (err)
177 178
		printf("deactivate_all_fds failed, errno = %d\n", -err);

J
Jeff Dike 已提交
179 180
	/*
	 * Let any pending signals fire now.  This ensures
181 182 183 184
	 * that they won't be delivered after the exec, when
	 * they are definitely not expected.
	 */
	unblock_signals();
L
Linus Torvalds 已提交
185

186
	/* Reboot */
J
Jeff Dike 已提交
187
	if (ret) {
188
		printf("\n");
L
Linus Torvalds 已提交
189 190 191 192 193
		execvp(new_argv[0], new_argv);
		perror("Failed to exec kernel");
		ret = 1;
	}
	printf("\n");
J
Jeff Dike 已提交
194
	return uml_exitcode;
L
Linus Torvalds 已提交
195 196 197 198 199 200 201 202
}

extern void *__real_malloc(int);

void *__wrap_malloc(int size)
{
	void *ret;

J
Jeff Dike 已提交
203
	if (!kmalloc_ok)
J
Jeff Dike 已提交
204
		return __real_malloc(size);
J
Jeff Dike 已提交
205
	else if (size <= UM_KERN_PAGE_SIZE)
J
Jeff Dike 已提交
206
		/* finding contiguous pages can be hard*/
J
Jeff Dike 已提交
207
		ret = uml_kmalloc(size, UM_GFP_KERNEL);
208
	else ret = vmalloc(size);
L
Linus Torvalds 已提交
209

J
Jeff Dike 已提交
210 211
	/*
	 * glibc people insist that if malloc fails, errno should be
L
Linus Torvalds 已提交
212 213
	 * set by malloc as well. So we do.
	 */
J
Jeff Dike 已提交
214
	if (ret == NULL)
L
Linus Torvalds 已提交
215 216
		errno = ENOMEM;

J
Jeff Dike 已提交
217
	return ret;
L
Linus Torvalds 已提交
218 219 220 221 222 223
}

void *__wrap_calloc(int n, int size)
{
	void *ptr = __wrap_malloc(n * size);

J
Jeff Dike 已提交
224
	if (ptr == NULL)
J
Jeff Dike 已提交
225
		return NULL;
L
Linus Torvalds 已提交
226
	memset(ptr, 0, n * size);
J
Jeff Dike 已提交
227
	return ptr;
L
Linus Torvalds 已提交
228 229 230 231 232 233 234 235 236 237
}

extern void __real_free(void *);

extern unsigned long high_physmem;

void __wrap_free(void *ptr)
{
	unsigned long addr = (unsigned long) ptr;

J
Jeff Dike 已提交
238 239
	/*
	 * We need to know how the allocation happened, so it can be correctly
L
Linus Torvalds 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
	 * freed.  This is done by seeing what region of memory the pointer is
	 * in -
	 * 	physical memory - kmalloc/kfree
	 *	kernel virtual memory - vmalloc/vfree
	 * 	anywhere else - malloc/free
	 * If kmalloc is not yet possible, then either high_physmem and/or
	 * end_vm are still 0 (as at startup), in which case we call free, or
	 * we have set them, but anyway addr has not been allocated from those
	 * areas. So, in both cases __real_free is called.
	 *
	 * CAN_KMALLOC is checked because it would be bad to free a buffer
	 * with kmalloc/vmalloc after they have been turned off during
	 * shutdown.
	 * XXX: However, we sometimes shutdown CAN_KMALLOC temporarily, so
	 * there is a possibility for memory leaks.
	 */

J
Jeff Dike 已提交
257 258
	if ((addr >= uml_physmem) && (addr < high_physmem)) {
		if (kmalloc_ok)
L
Linus Torvalds 已提交
259 260
			kfree(ptr);
	}
J
Jeff Dike 已提交
261 262
	else if ((addr >= start_vm) && (addr < end_vm)) {
		if (kmalloc_ok)
L
Linus Torvalds 已提交
263 264 265 266
			vfree(ptr);
	}
	else __real_free(ptr);
}