Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Linux32/linux64 allows for changing uname emulation. |
| 4 | * |
| 5 | * Copyright 2002 Andi Kleen, SuSE Labs. |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 6 | * |
| 7 | * Licensed under GPL v2 or later, see file License for details. |
| 8 | */ |
| 9 | |
| 10 | #include <stdlib.h> |
| 11 | #include <unistd.h> |
| 12 | #include <string.h> |
| 13 | #include <errno.h> |
| 14 | #include <stdio.h> |
| 15 | #include <sys/personality.h> |
| 16 | |
| 17 | #include "busybox.h" |
| 18 | |
| 19 | int setarch_main(int argc, char **argv) |
| 20 | { |
| 21 | int pers = -1; |
| 22 | |
| 23 | /* Figure out what personality we are supposed to switch to ... |
| 24 | * we can be invoked as either: |
| 25 | * argv[0],argv[1] -> "setarch","personality" |
| 26 | * argv[0] -> "personality" |
| 27 | */ |
| 28 | retry: |
| 29 | if (!strcmp(argv[0], "linux64")) |
| 30 | pers = PER_LINUX; |
| 31 | else if (!strcmp(argv[0], "linux32")) |
| 32 | pers = PER_LINUX32; |
| 33 | else if (pers == -1 && argv[1] != NULL) { |
| 34 | pers = PER_LINUX32; |
| 35 | ++argv; |
| 36 | goto retry; |
| 37 | } |
| 38 | |
| 39 | /* make user actually gave us something to do */ |
| 40 | ++argv; |
| 41 | if (argv[0] == NULL) |
| 42 | bb_show_usage(); |
| 43 | |
| 44 | /* Try to set personality */ |
| 45 | if (personality(pers) < 0) |
| 46 | goto failure; |
| 47 | |
| 48 | /* Try to execute the program */ |
| 49 | execvp(argv[0], argv); |
| 50 | |
| 51 | failure: |
"Vladimir N. Oleynik" | 73804d6 | 2006-02-28 08:23:27 +0000 | [diff] [blame^] | 52 | bb_perror_msg_and_die("%s", argv[0]); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 53 | } |