blob: 8cc8b2617a670cc3f6ba475c07c21e62f2f37bd4 [file] [log] [blame]
Gennady Sharapov4fef0c12006-01-18 17:42:41 -08001/*
Jeff Dike5134d8f2008-02-08 04:22:08 -08002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -08003 * Licensed under the GPL
4 */
5
6#include <stdio.h>
7#include <stdlib.h>
Richard Weinbergerb2db2192011-05-17 15:44:11 -07008#include <unistd.h>
Gennady Sharapov4fef0c12006-01-18 17:42:41 -08009#include <errno.h>
Jeff Dike5134d8f2008-02-08 04:22:08 -080010#include <signal.h>
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080011#include <string.h>
Jeff Dike5134d8f2008-02-08 04:22:08 -080012#include <termios.h>
13#include <wait.h>
14#include <sys/mman.h>
15#include <sys/utsname.h>
Masami Hiramatsuf7887ee2017-05-18 02:16:05 +090016#include <init.h>
Al Viro37185b32012-10-08 03:27:32 +010017#include <os.h>
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080018
19void stack_protections(unsigned long address)
20{
Jeff Dike5134d8f2008-02-08 04:22:08 -080021 if (mprotect((void *) address, UM_THREAD_SIZE,
Jeff Dike57598fd2007-05-10 22:22:30 -070022 PROT_READ | PROT_WRITE | PROT_EXEC) < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080023 panic("protecting stack failed, errno = %d", errno);
24}
25
26int raw(int fd)
27{
28 struct termios tt;
29 int err;
30
31 CATCH_EINTR(err = tcgetattr(fd, &tt));
Jeff Dike5134d8f2008-02-08 04:22:08 -080032 if (err < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080033 return -errno;
34
35 cfmakeraw(&tt);
36
37 CATCH_EINTR(err = tcsetattr(fd, TCSADRAIN, &tt));
Jeff Dike5134d8f2008-02-08 04:22:08 -080038 if (err < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080039 return -errno;
40
Jeff Dike5134d8f2008-02-08 04:22:08 -080041 /*
42 * XXX tcsetattr could have applied only some changes
43 * (and cfmakeraw() is a set of changes)
44 */
Jeff Dike57598fd2007-05-10 22:22:30 -070045 return 0;
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080046}
47
48void setup_machinename(char *machine_out)
49{
50 struct utsname host;
51
52 uname(&host);
Paolo 'Blaisorblade' Giarrusso69fada32006-10-11 01:21:36 -070053#ifdef UML_CONFIG_UML_X86
54# ifndef UML_CONFIG_64BIT
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080055 if (!strcmp(host.machine, "x86_64")) {
56 strcpy(machine_out, "i686");
57 return;
58 }
Paolo 'Blaisorblade' Giarrusso69fada32006-10-11 01:21:36 -070059# else
60 if (!strcmp(host.machine, "i686")) {
61 strcpy(machine_out, "x86_64");
62 return;
63 }
64# endif
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080065#endif
66 strcpy(machine_out, host.machine);
67}
68
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070069void setup_hostinfo(char *buf, int len)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080070{
71 struct utsname host;
72
73 uname(&host);
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070074 snprintf(buf, len, "%s %s %s %s %s", host.sysname, host.nodename,
75 host.release, host.version, host.machine);
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080076}
77
Richard Weinbergerb2db2192011-05-17 15:44:11 -070078/*
79 * We cannot use glibc's abort(). It makes use of tgkill() which
80 * has no effect within UML's kernel threads.
81 * After that glibc would execute an invalid instruction to kill
82 * the calling process and UML crashes with SIGSEGV.
83 */
84static inline void __attribute__ ((noreturn)) uml_abort(void)
85{
86 sigset_t sig;
87
88 fflush(NULL);
89
90 if (!sigemptyset(&sig) && !sigaddset(&sig, SIGABRT))
91 sigprocmask(SIG_UNBLOCK, &sig, 0);
92
93 for (;;)
94 if (kill(getpid(), SIGABRT) < 0)
95 exit(127);
96}
97
Richard Weinberger91d44ff2013-08-18 13:30:08 +020098/*
99 * UML helper threads must not handle SIGWINCH/INT/TERM
100 */
101void os_fix_helper_signals(void)
102{
103 signal(SIGWINCH, SIG_IGN);
104 signal(SIGINT, SIG_DFL);
105 signal(SIGTERM, SIG_DFL);
106}
107
Jeff Dike63843c22007-05-06 14:51:39 -0700108void os_dump_core(void)
109{
Lepton Wua24864a2007-10-16 01:27:35 -0700110 int pid;
111
Jeff Dike63843c22007-05-06 14:51:39 -0700112 signal(SIGSEGV, SIG_DFL);
Lepton Wua24864a2007-10-16 01:27:35 -0700113
114 /*
115 * We are about to SIGTERM this entire process group to ensure that
116 * nothing is around to run after the kernel exits. The
117 * kernel wants to abort, not die through SIGTERM, so we
118 * ignore it here.
119 */
120
121 signal(SIGTERM, SIG_IGN);
122 kill(0, SIGTERM);
123 /*
124 * Most of the other processes associated with this UML are
125 * likely sTopped, so give them a SIGCONT so they see the
126 * SIGTERM.
127 */
128 kill(0, SIGCONT);
129
130 /*
131 * Now, having sent signals to everyone but us, make sure they
132 * die by ptrace. Processes can survive what's been done to
133 * them so far - the mechanism I understand is receiving a
134 * SIGSEGV and segfaulting immediately upon return. There is
135 * always a SIGSEGV pending, and (I'm guessing) signals are
136 * processed in numeric order so the SIGTERM (signal 15 vs
137 * SIGSEGV being signal 11) is never handled.
138 *
139 * Run a waitpid loop until we get some kind of error.
140 * Hopefully, it's ECHILD, but there's not a lot we can do if
141 * it's something else. Tell os_kill_ptraced_process not to
142 * wait for the child to report its death because there's
143 * nothing reasonable to do if that fails.
144 */
145
Stanislaw Gruszka4dbed852007-12-17 16:19:46 -0800146 while ((pid = waitpid(-1, NULL, WNOHANG | __WALL)) > 0)
Lepton Wua24864a2007-10-16 01:27:35 -0700147 os_kill_ptraced_process(pid, 0);
148
Richard Weinbergerb2db2192011-05-17 15:44:11 -0700149 uml_abort();
Jeff Dike63843c22007-05-06 14:51:39 -0700150}
Richard Weinbergerd634f192011-05-24 17:13:01 -0700151
152void um_early_printk(const char *s, unsigned int n)
153{
154 printf("%.*s", n, s);
155}
Masami Hiramatsuf7887ee2017-05-18 02:16:05 +0900156
157static int quiet_info;
158
159static int __init quiet_cmd_param(char *str, int *add)
160{
161 quiet_info = 1;
162 return 0;
163}
164
165__uml_setup("quiet", quiet_cmd_param,
166"quiet\n"
167" Turns off information messages during boot.\n\n");
168
169void os_info(const char *fmt, ...)
170{
171 va_list list;
172
173 if (quiet_info)
174 return;
175
176 va_start(list, fmt);
177 vfprintf(stderr, fmt, list);
178 va_end(list);
179}
Masami Hiramatsu721ccae2017-05-18 02:18:22 +0900180
181void os_warn(const char *fmt, ...)
182{
183 va_list list;
184
185 va_start(list, fmt);
186 vfprintf(stderr, fmt, list);
187 va_end(list);
188}