blob: faee55ef6d2f4954aa9770c2d8985554e40797d7 [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>
Al Viro37185b32012-10-08 03:27:32 +010016#include <os.h>
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080017
18void stack_protections(unsigned long address)
19{
Jeff Dike5134d8f2008-02-08 04:22:08 -080020 if (mprotect((void *) address, UM_THREAD_SIZE,
Jeff Dike57598fd2007-05-10 22:22:30 -070021 PROT_READ | PROT_WRITE | PROT_EXEC) < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080022 panic("protecting stack failed, errno = %d", errno);
23}
24
25int raw(int fd)
26{
27 struct termios tt;
28 int err;
29
30 CATCH_EINTR(err = tcgetattr(fd, &tt));
Jeff Dike5134d8f2008-02-08 04:22:08 -080031 if (err < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080032 return -errno;
33
34 cfmakeraw(&tt);
35
36 CATCH_EINTR(err = tcsetattr(fd, TCSADRAIN, &tt));
Jeff Dike5134d8f2008-02-08 04:22:08 -080037 if (err < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080038 return -errno;
39
Jeff Dike5134d8f2008-02-08 04:22:08 -080040 /*
41 * XXX tcsetattr could have applied only some changes
42 * (and cfmakeraw() is a set of changes)
43 */
Jeff Dike57598fd2007-05-10 22:22:30 -070044 return 0;
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080045}
46
47void setup_machinename(char *machine_out)
48{
49 struct utsname host;
50
51 uname(&host);
Paolo 'Blaisorblade' Giarrusso69fada32006-10-11 01:21:36 -070052#ifdef UML_CONFIG_UML_X86
53# ifndef UML_CONFIG_64BIT
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080054 if (!strcmp(host.machine, "x86_64")) {
55 strcpy(machine_out, "i686");
56 return;
57 }
Paolo 'Blaisorblade' Giarrusso69fada32006-10-11 01:21:36 -070058# else
59 if (!strcmp(host.machine, "i686")) {
60 strcpy(machine_out, "x86_64");
61 return;
62 }
63# endif
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080064#endif
65 strcpy(machine_out, host.machine);
66}
67
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070068void setup_hostinfo(char *buf, int len)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080069{
70 struct utsname host;
71
72 uname(&host);
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070073 snprintf(buf, len, "%s %s %s %s %s", host.sysname, host.nodename,
74 host.release, host.version, host.machine);
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080075}
76
Richard Weinbergerb2db2192011-05-17 15:44:11 -070077/*
78 * We cannot use glibc's abort(). It makes use of tgkill() which
79 * has no effect within UML's kernel threads.
80 * After that glibc would execute an invalid instruction to kill
81 * the calling process and UML crashes with SIGSEGV.
82 */
83static inline void __attribute__ ((noreturn)) uml_abort(void)
84{
85 sigset_t sig;
86
87 fflush(NULL);
88
89 if (!sigemptyset(&sig) && !sigaddset(&sig, SIGABRT))
90 sigprocmask(SIG_UNBLOCK, &sig, 0);
91
92 for (;;)
93 if (kill(getpid(), SIGABRT) < 0)
94 exit(127);
95}
96
Richard Weinberger91d44ff2013-08-18 13:30:08 +020097/*
98 * UML helper threads must not handle SIGWINCH/INT/TERM
99 */
100void os_fix_helper_signals(void)
101{
102 signal(SIGWINCH, SIG_IGN);
103 signal(SIGINT, SIG_DFL);
104 signal(SIGTERM, SIG_DFL);
105}
106
Jeff Dike63843c22007-05-06 14:51:39 -0700107void os_dump_core(void)
108{
Lepton Wua24864a2007-10-16 01:27:35 -0700109 int pid;
110
Jeff Dike63843c22007-05-06 14:51:39 -0700111 signal(SIGSEGV, SIG_DFL);
Lepton Wua24864a2007-10-16 01:27:35 -0700112
113 /*
114 * We are about to SIGTERM this entire process group to ensure that
115 * nothing is around to run after the kernel exits. The
116 * kernel wants to abort, not die through SIGTERM, so we
117 * ignore it here.
118 */
119
120 signal(SIGTERM, SIG_IGN);
121 kill(0, SIGTERM);
122 /*
123 * Most of the other processes associated with this UML are
124 * likely sTopped, so give them a SIGCONT so they see the
125 * SIGTERM.
126 */
127 kill(0, SIGCONT);
128
129 /*
130 * Now, having sent signals to everyone but us, make sure they
131 * die by ptrace. Processes can survive what's been done to
132 * them so far - the mechanism I understand is receiving a
133 * SIGSEGV and segfaulting immediately upon return. There is
134 * always a SIGSEGV pending, and (I'm guessing) signals are
135 * processed in numeric order so the SIGTERM (signal 15 vs
136 * SIGSEGV being signal 11) is never handled.
137 *
138 * Run a waitpid loop until we get some kind of error.
139 * Hopefully, it's ECHILD, but there's not a lot we can do if
140 * it's something else. Tell os_kill_ptraced_process not to
141 * wait for the child to report its death because there's
142 * nothing reasonable to do if that fails.
143 */
144
Stanislaw Gruszka4dbed852007-12-17 16:19:46 -0800145 while ((pid = waitpid(-1, NULL, WNOHANG | __WALL)) > 0)
Lepton Wua24864a2007-10-16 01:27:35 -0700146 os_kill_ptraced_process(pid, 0);
147
Richard Weinbergerb2db2192011-05-17 15:44:11 -0700148 uml_abort();
Jeff Dike63843c22007-05-06 14:51:39 -0700149}
Richard Weinbergerd634f192011-05-24 17:13:01 -0700150
151void um_early_printk(const char *s, unsigned int n)
152{
153 printf("%.*s", n, s);
154}