| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 1 | /* | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 3 | * Licensed under the GPL | 
|  | 4 | */ | 
|  | 5 |  | 
|  | 6 | #include <stdio.h> | 
|  | 7 | #include <stdlib.h> | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 8 | #include <errno.h> | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 9 | #include <signal.h> | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 10 | #include <string.h> | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 11 | #include <termios.h> | 
|  | 12 | #include <wait.h> | 
|  | 13 | #include <sys/mman.h> | 
|  | 14 | #include <sys/utsname.h> | 
| Jeff Dike | 1ffb916 | 2007-05-06 14:51:22 -0700 | [diff] [blame] | 15 | #include "kern_constants.h" | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 16 | #include "os.h" | 
|  | 17 | #include "user.h" | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 18 |  | 
|  | 19 | void stack_protections(unsigned long address) | 
|  | 20 | { | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 21 | if (mprotect((void *) address, UM_THREAD_SIZE, | 
| Jeff Dike | 57598fd | 2007-05-10 22:22:30 -0700 | [diff] [blame] | 22 | PROT_READ | PROT_WRITE | PROT_EXEC) < 0) | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 23 | panic("protecting stack failed, errno = %d", errno); | 
|  | 24 | } | 
|  | 25 |  | 
|  | 26 | int raw(int fd) | 
|  | 27 | { | 
|  | 28 | struct termios tt; | 
|  | 29 | int err; | 
|  | 30 |  | 
|  | 31 | CATCH_EINTR(err = tcgetattr(fd, &tt)); | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 32 | if (err < 0) | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 33 | return -errno; | 
|  | 34 |  | 
|  | 35 | cfmakeraw(&tt); | 
|  | 36 |  | 
|  | 37 | CATCH_EINTR(err = tcsetattr(fd, TCSADRAIN, &tt)); | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 38 | if (err < 0) | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 39 | return -errno; | 
|  | 40 |  | 
| Jeff Dike | 5134d8f | 2008-02-08 04:22:08 -0800 | [diff] [blame] | 41 | /* | 
|  | 42 | * XXX tcsetattr could have applied only some changes | 
|  | 43 | * (and cfmakeraw() is a set of changes) | 
|  | 44 | */ | 
| Jeff Dike | 57598fd | 2007-05-10 22:22:30 -0700 | [diff] [blame] | 45 | return 0; | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 46 | } | 
|  | 47 |  | 
|  | 48 | void setup_machinename(char *machine_out) | 
|  | 49 | { | 
|  | 50 | struct utsname host; | 
|  | 51 |  | 
|  | 52 | uname(&host); | 
| Paolo 'Blaisorblade' Giarrusso | 69fada3 | 2006-10-11 01:21:36 -0700 | [diff] [blame] | 53 | #ifdef UML_CONFIG_UML_X86 | 
|  | 54 | # ifndef UML_CONFIG_64BIT | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 55 | if (!strcmp(host.machine, "x86_64")) { | 
|  | 56 | strcpy(machine_out, "i686"); | 
|  | 57 | return; | 
|  | 58 | } | 
| Paolo 'Blaisorblade' Giarrusso | 69fada3 | 2006-10-11 01:21:36 -0700 | [diff] [blame] | 59 | # else | 
|  | 60 | if (!strcmp(host.machine, "i686")) { | 
|  | 61 | strcpy(machine_out, "x86_64"); | 
|  | 62 | return; | 
|  | 63 | } | 
|  | 64 | # endif | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 65 | #endif | 
|  | 66 | strcpy(machine_out, host.machine); | 
|  | 67 | } | 
|  | 68 |  | 
| Jeff Dike | b4ffb6a | 2007-05-06 14:50:59 -0700 | [diff] [blame] | 69 | void setup_hostinfo(char *buf, int len) | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 70 | { | 
|  | 71 | struct utsname host; | 
|  | 72 |  | 
|  | 73 | uname(&host); | 
| Jeff Dike | b4ffb6a | 2007-05-06 14:50:59 -0700 | [diff] [blame] | 74 | snprintf(buf, len, "%s %s %s %s %s", host.sysname, host.nodename, | 
|  | 75 | host.release, host.version, host.machine); | 
| Gennady Sharapov | 4fef0c1 | 2006-01-18 17:42:41 -0800 | [diff] [blame] | 76 | } | 
|  | 77 |  | 
| Jeff Dike | 63843c2 | 2007-05-06 14:51:39 -0700 | [diff] [blame] | 78 | void os_dump_core(void) | 
|  | 79 | { | 
| Lepton Wu | a24864a | 2007-10-16 01:27:35 -0700 | [diff] [blame] | 80 | int pid; | 
|  | 81 |  | 
| Jeff Dike | 63843c2 | 2007-05-06 14:51:39 -0700 | [diff] [blame] | 82 | signal(SIGSEGV, SIG_DFL); | 
| Lepton Wu | a24864a | 2007-10-16 01:27:35 -0700 | [diff] [blame] | 83 |  | 
|  | 84 | /* | 
|  | 85 | * We are about to SIGTERM this entire process group to ensure that | 
|  | 86 | * nothing is around to run after the kernel exits.  The | 
|  | 87 | * kernel wants to abort, not die through SIGTERM, so we | 
|  | 88 | * ignore it here. | 
|  | 89 | */ | 
|  | 90 |  | 
|  | 91 | signal(SIGTERM, SIG_IGN); | 
|  | 92 | kill(0, SIGTERM); | 
|  | 93 | /* | 
|  | 94 | * Most of the other processes associated with this UML are | 
|  | 95 | * likely sTopped, so give them a SIGCONT so they see the | 
|  | 96 | * SIGTERM. | 
|  | 97 | */ | 
|  | 98 | kill(0, SIGCONT); | 
|  | 99 |  | 
|  | 100 | /* | 
|  | 101 | * Now, having sent signals to everyone but us, make sure they | 
|  | 102 | * die by ptrace.  Processes can survive what's been done to | 
|  | 103 | * them so far - the mechanism I understand is receiving a | 
|  | 104 | * SIGSEGV and segfaulting immediately upon return.  There is | 
|  | 105 | * always a SIGSEGV pending, and (I'm guessing) signals are | 
|  | 106 | * processed in numeric order so the SIGTERM (signal 15 vs | 
|  | 107 | * SIGSEGV being signal 11) is never handled. | 
|  | 108 | * | 
|  | 109 | * Run a waitpid loop until we get some kind of error. | 
|  | 110 | * Hopefully, it's ECHILD, but there's not a lot we can do if | 
|  | 111 | * it's something else.  Tell os_kill_ptraced_process not to | 
|  | 112 | * wait for the child to report its death because there's | 
|  | 113 | * nothing reasonable to do if that fails. | 
|  | 114 | */ | 
|  | 115 |  | 
| Stanislaw Gruszka | 4dbed85 | 2007-12-17 16:19:46 -0800 | [diff] [blame] | 116 | while ((pid = waitpid(-1, NULL, WNOHANG | __WALL)) > 0) | 
| Lepton Wu | a24864a | 2007-10-16 01:27:35 -0700 | [diff] [blame] | 117 | os_kill_ptraced_process(pid, 0); | 
|  | 118 |  | 
| Jeff Dike | 63843c2 | 2007-05-06 14:51:39 -0700 | [diff] [blame] | 119 | abort(); | 
|  | 120 | } |