Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 3 | * linux32/linux64 allows for changing uname emulation. |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright 2002 Andi Kleen, SuSE Labs. |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 8 | */ |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 9 | //config:config SETARCH |
| 10 | //config: bool "setarch" |
| 11 | //config: default y |
| 12 | //config: select PLATFORM_LINUX |
| 13 | //config: help |
| 14 | //config: The linux32 utility is used to create a 32bit environment for the |
| 15 | //config: specified program (usually a shell). It only makes sense to have |
| 16 | //config: this util on a system that supports both 64bit and 32bit userland |
| 17 | //config: (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). |
| 18 | |
| 19 | //applet:IF_SETARCH(APPLET(setarch, BB_DIR_BIN, BB_SUID_DROP)) |
| 20 | //applet:IF_SETARCH(APPLET_ODDNAME(linux32, setarch, BB_DIR_BIN, BB_SUID_DROP, linux32)) |
| 21 | //applet:IF_SETARCH(APPLET_ODDNAME(linux64, setarch, BB_DIR_BIN, BB_SUID_DROP, linux64)) |
| 22 | |
| 23 | //kbuild:lib-$(CONFIG_SETARCH) += setarch.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 24 | |
| 25 | //usage:#define setarch_trivial_usage |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 26 | //usage: "PERSONALITY [-R] PROG ARGS" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 27 | //usage:#define setarch_full_usage "\n\n" |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 28 | //usage: "PERSONALITY may be:" |
| 29 | //usage: "\n"" linux32 Set 32bit uname emulation" |
| 30 | //usage: "\n"" linux64 Set 64bit uname emulation" |
| 31 | //usage: "\n" |
| 32 | //usage: "\n"" -R Disable address space randomization" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 33 | //usage: |
| 34 | //usage:#define linux32_trivial_usage NOUSAGE_STR |
| 35 | //usage:#define linux32_full_usage "" |
| 36 | //usage: |
| 37 | //usage:#define linux64_trivial_usage NOUSAGE_STR |
| 38 | //usage:#define linux64_full_usage "" |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 39 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 40 | #include "libbb.h" |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 41 | #include <sys/personality.h> |
| 42 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 43 | #ifndef ADDR_NO_RANDOMIZE |
| 44 | # define ADDR_NO_RANDOMIZE 0x0040000 |
| 45 | #endif |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 46 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 47 | int setarch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 48 | int setarch_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 49 | { |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 50 | unsigned opts; |
| 51 | unsigned long pers; |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 52 | |
| 53 | /* Figure out what personality we are supposed to switch to ... |
| 54 | * we can be invoked as either: |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 55 | * argv[0],argv[1] == "setarch","personality" |
| 56 | * argv[0] == "personality" |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 57 | */ |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 58 | if (ENABLE_SETARCH && applet_name[0] == 's' |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 59 | && argv[1] && is_prefixed_with(argv[1], "linux") |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 60 | ) { |
| 61 | applet_name = argv[1]; |
| 62 | argv++; |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 63 | } |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 64 | if (applet_name[5] == '6') /* linux64 */ |
| 65 | pers = PER_LINUX; |
| 66 | else if (applet_name[5] == '3') /* linux32 */ |
| 67 | pers = PER_LINUX32; |
| 68 | else |
| 69 | bb_show_usage(); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 70 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 71 | opts = getopt32(argv, "+R"); /* '+': stop at first non-option */ |
| 72 | if (opts) |
| 73 | pers |= ADDR_NO_RANDOMIZE; |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 74 | |
| 75 | /* Try to set personality */ |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 76 | if (personality(pers) < 0) |
| 77 | bb_perror_msg_and_die("personality(0x%lx)", pers); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 78 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 79 | argv += optind; |
| 80 | if (!argv[0]) |
| 81 | (--argv)[0] = (char*)"/bin/sh"; |
| 82 | |
| 83 | /* Try to execute the program */ |
| 84 | BB_EXECVP_or_die(argv); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 85 | } |