[IPV4]: Correct rp_filter help text.
[linux-2.6/verdex.git] / arch / um / os-Linux / util.c
blob7cbcf484e13d3337d8bbaaa06d3fed165a02f377
1 /*
2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <unistd.h>
9 #include <limits.h>
10 #include <sys/mman.h>
11 #include <sys/stat.h>
12 #include <sys/utsname.h>
13 #include <sys/param.h>
14 #include <sys/time.h>
15 #include "asm/types.h"
16 #include <ctype.h>
17 #include <signal.h>
18 #include <wait.h>
19 #include <errno.h>
20 #include <stdarg.h>
21 #include <sched.h>
22 #include <termios.h>
23 #include <string.h>
24 #include "kern_util.h"
25 #include "user.h"
26 #include "mem_user.h"
27 #include "init.h"
28 #include "ptrace_user.h"
29 #include "uml-config.h"
30 #include "os.h"
31 #include "longjmp.h"
32 #include "kern_constants.h"
34 void stack_protections(unsigned long address)
36 if(mprotect((void *) address, UM_THREAD_SIZE,
37 PROT_READ | PROT_WRITE | PROT_EXEC) < 0)
38 panic("protecting stack failed, errno = %d", errno);
41 int raw(int fd)
43 struct termios tt;
44 int err;
46 CATCH_EINTR(err = tcgetattr(fd, &tt));
47 if(err < 0)
48 return -errno;
50 cfmakeraw(&tt);
52 CATCH_EINTR(err = tcsetattr(fd, TCSADRAIN, &tt));
53 if(err < 0)
54 return -errno;
56 /* XXX tcsetattr could have applied only some changes
57 * (and cfmakeraw() is a set of changes) */
58 return 0;
61 void setup_machinename(char *machine_out)
63 struct utsname host;
65 uname(&host);
66 #ifdef UML_CONFIG_UML_X86
67 # ifndef UML_CONFIG_64BIT
68 if (!strcmp(host.machine, "x86_64")) {
69 strcpy(machine_out, "i686");
70 return;
72 # else
73 if (!strcmp(host.machine, "i686")) {
74 strcpy(machine_out, "x86_64");
75 return;
77 # endif
78 #endif
79 strcpy(machine_out, host.machine);
82 void setup_hostinfo(char *buf, int len)
84 struct utsname host;
86 uname(&host);
87 snprintf(buf, len, "%s %s %s %s %s", host.sysname, host.nodename,
88 host.release, host.version, host.machine);
91 int setjmp_wrapper(void (*proc)(void *, void *), ...)
93 va_list args;
94 jmp_buf buf;
95 int n;
97 n = UML_SETJMP(&buf);
98 if(n == 0){
99 va_start(args, proc);
100 (*proc)(&buf, &args);
102 va_end(args);
103 return n;
106 void os_dump_core(void)
108 signal(SIGSEGV, SIG_DFL);
109 abort();