blob: 42827cafa6af3ac72f4c57d62e08968b81360faa [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>
Jeff Dike1ffb9162007-05-06 14:51:22 -070016#include "kern_constants.h"
Jeff Dike5134d8f2008-02-08 04:22:08 -080017#include "os.h"
18#include "user.h"
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080019
20void stack_protections(unsigned long address)
21{
Jeff Dike5134d8f2008-02-08 04:22:08 -080022 if (mprotect((void *) address, UM_THREAD_SIZE,
Jeff Dike57598fd2007-05-10 22:22:30 -070023 PROT_READ | PROT_WRITE | PROT_EXEC) < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080024 panic("protecting stack failed, errno = %d", errno);
25}
26
27int raw(int fd)
28{
29 struct termios tt;
30 int err;
31
32 CATCH_EINTR(err = tcgetattr(fd, &tt));
Jeff Dike5134d8f2008-02-08 04:22:08 -080033 if (err < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080034 return -errno;
35
36 cfmakeraw(&tt);
37
38 CATCH_EINTR(err = tcsetattr(fd, TCSADRAIN, &tt));
Jeff Dike5134d8f2008-02-08 04:22:08 -080039 if (err < 0)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080040 return -errno;
41
Jeff Dike5134d8f2008-02-08 04:22:08 -080042 /*
43 * XXX tcsetattr could have applied only some changes
44 * (and cfmakeraw() is a set of changes)
45 */
Jeff Dike57598fd2007-05-10 22:22:30 -070046 return 0;
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080047}
48
49void setup_machinename(char *machine_out)
50{
51 struct utsname host;
52
53 uname(&host);
Paolo 'Blaisorblade' Giarrusso69fada32006-10-11 01:21:36 -070054#ifdef UML_CONFIG_UML_X86
55# ifndef UML_CONFIG_64BIT
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080056 if (!strcmp(host.machine, "x86_64")) {
57 strcpy(machine_out, "i686");
58 return;
59 }
Paolo 'Blaisorblade' Giarrusso69fada32006-10-11 01:21:36 -070060# else
61 if (!strcmp(host.machine, "i686")) {
62 strcpy(machine_out, "x86_64");
63 return;
64 }
65# endif
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080066#endif
67 strcpy(machine_out, host.machine);
68}
69
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070070void setup_hostinfo(char *buf, int len)
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080071{
72 struct utsname host;
73
74 uname(&host);
Jeff Dikeb4ffb6a2007-05-06 14:50:59 -070075 snprintf(buf, len, "%s %s %s %s %s", host.sysname, host.nodename,
76 host.release, host.version, host.machine);
Gennady Sharapov4fef0c12006-01-18 17:42:41 -080077}
78
Richard Weinbergerb2db2192011-05-17 15:44:11 -070079/*
80 * We cannot use glibc's abort(). It makes use of tgkill() which
81 * has no effect within UML's kernel threads.
82 * After that glibc would execute an invalid instruction to kill
83 * the calling process and UML crashes with SIGSEGV.
84 */
85static inline void __attribute__ ((noreturn)) uml_abort(void)
86{
87 sigset_t sig;
88
89 fflush(NULL);
90
91 if (!sigemptyset(&sig) && !sigaddset(&sig, SIGABRT))
92 sigprocmask(SIG_UNBLOCK, &sig, 0);
93
94 for (;;)
95 if (kill(getpid(), SIGABRT) < 0)
96 exit(127);
97}
98
Jeff Dike63843c22007-05-06 14:51:39 -070099void os_dump_core(void)
100{
Lepton Wua24864a2007-10-16 01:27:35 -0700101 int pid;
102
Jeff Dike63843c22007-05-06 14:51:39 -0700103 signal(SIGSEGV, SIG_DFL);
Lepton Wua24864a2007-10-16 01:27:35 -0700104
105 /*
106 * We are about to SIGTERM this entire process group to ensure that
107 * nothing is around to run after the kernel exits. The
108 * kernel wants to abort, not die through SIGTERM, so we
109 * ignore it here.
110 */
111
112 signal(SIGTERM, SIG_IGN);
113 kill(0, SIGTERM);
114 /*
115 * Most of the other processes associated with this UML are
116 * likely sTopped, so give them a SIGCONT so they see the
117 * SIGTERM.
118 */
119 kill(0, SIGCONT);
120
121 /*
122 * Now, having sent signals to everyone but us, make sure they
123 * die by ptrace. Processes can survive what's been done to
124 * them so far - the mechanism I understand is receiving a
125 * SIGSEGV and segfaulting immediately upon return. There is
126 * always a SIGSEGV pending, and (I'm guessing) signals are
127 * processed in numeric order so the SIGTERM (signal 15 vs
128 * SIGSEGV being signal 11) is never handled.
129 *
130 * Run a waitpid loop until we get some kind of error.
131 * Hopefully, it's ECHILD, but there's not a lot we can do if
132 * it's something else. Tell os_kill_ptraced_process not to
133 * wait for the child to report its death because there's
134 * nothing reasonable to do if that fails.
135 */
136
Stanislaw Gruszka4dbed852007-12-17 16:19:46 -0800137 while ((pid = waitpid(-1, NULL, WNOHANG | __WALL)) > 0)
Lepton Wua24864a2007-10-16 01:27:35 -0700138 os_kill_ptraced_process(pid, 0);
139
Richard Weinbergerb2db2192011-05-17 15:44:11 -0700140 uml_abort();
Jeff Dike63843c22007-05-06 14:51:39 -0700141}