2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
13 #include <sys/ptrace.h>
14 #include <sys/utsname.h>
15 #include <sys/param.h>
17 #include "asm/types.h"
26 #include "user_util.h"
27 #include "kern_util.h"
32 #include "uml-config.h"
34 #define COMMAND_LINE_SIZE _POSIX_ARG_MAX
36 /* Changed in linux_main and setup_arch, which run before SMP is started */
37 char command_line
[COMMAND_LINE_SIZE
] = { 0 };
39 void add_arg(char *cmd_line
, char *arg
)
41 if (strlen(cmd_line
) + strlen(arg
) + 1 > COMMAND_LINE_SIZE
) {
42 printf("add_arg: Too much command line!\n");
45 if(strlen(cmd_line
) > 0) strcat(cmd_line
, " ");
46 strcat(cmd_line
, arg
);
51 while(1) sleep(1000000);
54 void stack_protections(unsigned long address
)
56 int prot
= PROT_READ
| PROT_WRITE
| PROT_EXEC
;
58 if(mprotect((void *) address
, page_size(), prot
) < 0)
59 panic("protecting stack failed, errno = %d", errno
);
62 void task_protections(unsigned long address
)
64 unsigned long guard
= address
+ page_size();
65 unsigned long stack
= guard
+ page_size();
69 if(mprotect((void *) stack
, page_size(), prot
) < 0)
70 panic("protecting guard page failed, errno = %d", errno
);
72 pages
= (1 << UML_CONFIG_KERNEL_STACK_ORDER
) - 2;
73 prot
= PROT_READ
| PROT_WRITE
| PROT_EXEC
;
74 if(mprotect((void *) stack
, pages
* page_size(), prot
) < 0)
75 panic("protecting stack failed, errno = %d", errno
);
78 int wait_for_stop(int pid
, int sig
, int cont_type
, void *relay
)
80 sigset_t
*relay_signals
= relay
;
84 CATCH_EINTR(ret
= waitpid(pid
, &status
, WUNTRACED
));
86 !WIFSTOPPED(status
) || (WSTOPSIG(status
) != sig
)){
88 printk("wait failed, errno = %d\n",
91 else if(WIFEXITED(status
))
92 printk("process %d exited with status %d\n",
93 pid
, WEXITSTATUS(status
));
94 else if(WIFSIGNALED(status
))
95 printk("process %d exited with signal %d\n",
96 pid
, WTERMSIG(status
));
97 else if((WSTOPSIG(status
) == SIGVTALRM
) ||
98 (WSTOPSIG(status
) == SIGALRM
) ||
99 (WSTOPSIG(status
) == SIGIO
) ||
100 (WSTOPSIG(status
) == SIGPROF
) ||
101 (WSTOPSIG(status
) == SIGCHLD
) ||
102 (WSTOPSIG(status
) == SIGWINCH
) ||
103 (WSTOPSIG(status
) == SIGINT
)){
104 ptrace(cont_type
, pid
, 0, WSTOPSIG(status
));
107 else if((relay_signals
!= NULL
) &&
108 sigismember(relay_signals
, WSTOPSIG(status
))){
109 ptrace(cont_type
, pid
, 0, WSTOPSIG(status
));
112 else printk("process %d stopped with signal %d\n",
113 pid
, WSTOPSIG(status
));
114 panic("wait_for_stop failed to wait for %d to stop "
115 "with %d\n", pid
, sig
);
126 CATCH_EINTR(err
= tcgetattr(fd
, &tt
));
128 printk("tcgetattr failed, errno = %d\n", errno
);
134 CATCH_EINTR(err
= tcsetattr(fd
, TCSADRAIN
, &tt
));
136 printk("tcsetattr failed, errno = %d\n", errno
);
140 /* XXX tcsetattr could have applied only some changes
141 * (and cfmakeraw() is a set of changes) */
145 void setup_machinename(char *machine_out
)
150 strcpy(machine_out
, host
.machine
);
153 char host_info
[(_UTSNAME_LENGTH
+ 1) * 4 + _UTSNAME_NODENAME_LENGTH
+ 1];
155 void setup_hostinfo(void)
160 sprintf(host_info
, "%s %s %s %s %s", host
.sysname
, host
.nodename
,
161 host
.release
, host
.version
, host
.machine
);
164 int setjmp_wrapper(void (*proc
)(void *, void *), ...)
170 n
= sigsetjmp(buf
, 1);
172 va_start(args
, proc
);
173 (*proc
)(&buf
, &args
);
180 * Overrides for Emacs so that we follow Linus's tabbing style.
181 * Emacs will notice this stuff at the end of the file and automatically
182 * adjust the settings for this buffer only. This must remain at the end
184 * ---------------------------------------------------------------------------
186 * c-file-style: "linux"