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 |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 10 | //config: bool "setarch (3.6 kb)" |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 11 | //config: default y |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 12 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 13 | //config: The linux32 utility is used to create a 32bit environment for the |
| 14 | //config: specified program (usually a shell). It only makes sense to have |
| 15 | //config: this util on a system that supports both 64bit and 32bit userland |
| 16 | //config: (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 17 | //config: |
| 18 | //config:config LINUX32 |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 19 | //config: bool "linux32 (3.3 kb)" |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 20 | //config: default y |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 21 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 22 | //config: Alias to "setarch linux32". |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 23 | //config: |
| 24 | //config:config LINUX64 |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 25 | //config: bool "linux64 (3.3 kb)" |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 26 | //config: default y |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 27 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 28 | //config: Alias to "setarch linux64". |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 29 | |
Denys Vlasenko | 5c527dc | 2017-08-04 19:55:01 +0200 | [diff] [blame] | 30 | //applet:IF_SETARCH(APPLET_NOEXEC(setarch, setarch, BB_DIR_BIN, BB_SUID_DROP, setarch)) |
| 31 | // APPLET_NOEXEC:name main location suid_type help |
| 32 | //applet:IF_LINUX32(APPLET_NOEXEC(linux32, setarch, BB_DIR_BIN, BB_SUID_DROP, linux32)) |
| 33 | //applet:IF_LINUX64(APPLET_NOEXEC(linux64, setarch, BB_DIR_BIN, BB_SUID_DROP, linux64)) |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 34 | |
| 35 | //kbuild:lib-$(CONFIG_SETARCH) += setarch.o |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 36 | //kbuild:lib-$(CONFIG_LINUX32) += setarch.o |
| 37 | //kbuild:lib-$(CONFIG_LINUX64) += setarch.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 38 | |
| 39 | //usage:#define setarch_trivial_usage |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 40 | //usage: "PERSONALITY [-R] PROG ARGS" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 41 | //usage:#define setarch_full_usage "\n\n" |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 42 | //usage: "PERSONALITY may be:" |
| 43 | //usage: "\n"" linux32 Set 32bit uname emulation" |
| 44 | //usage: "\n"" linux64 Set 64bit uname emulation" |
| 45 | //usage: "\n" |
| 46 | //usage: "\n"" -R Disable address space randomization" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 47 | //usage: |
| 48 | //usage:#define linux32_trivial_usage NOUSAGE_STR |
| 49 | //usage:#define linux32_full_usage "" |
| 50 | //usage: |
| 51 | //usage:#define linux64_trivial_usage NOUSAGE_STR |
| 52 | //usage:#define linux64_full_usage "" |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 53 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 54 | #include "libbb.h" |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 55 | #include <sys/personality.h> |
| 56 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 57 | #ifndef ADDR_NO_RANDOMIZE |
| 58 | # define ADDR_NO_RANDOMIZE 0x0040000 |
| 59 | #endif |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 60 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 61 | int setarch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 62 | int setarch_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 63 | { |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 64 | unsigned opts; |
| 65 | unsigned long pers; |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 66 | |
| 67 | /* Figure out what personality we are supposed to switch to ... |
| 68 | * we can be invoked as either: |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 69 | * argv[0],argv[1] == "setarch","personality" |
| 70 | * argv[0] == "personality" |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 71 | */ |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 72 | if (ENABLE_SETARCH && applet_name[0] == 's' |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 73 | && argv[1] && is_prefixed_with(argv[1], "linux") |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 74 | ) { |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 75 | argv++; |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 76 | applet_name = argv[0]; |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 77 | } |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 78 | if ((!ENABLE_SETARCH && !ENABLE_LINUX32) || applet_name[5] == '6') |
| 79 | /* linux64 */ |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 80 | pers = PER_LINUX; |
Denys Vlasenko | c314ca9 | 2016-11-13 22:56:04 +0100 | [diff] [blame] | 81 | else |
| 82 | if ((!ENABLE_SETARCH && !ENABLE_LINUX64) || applet_name[5] == '3') |
| 83 | /* linux32 */ |
Denis Vlasenko | 7fe21c6 | 2008-08-23 23:15:17 +0000 | [diff] [blame] | 84 | pers = PER_LINUX32; |
| 85 | else |
| 86 | bb_show_usage(); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 87 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 88 | opts = getopt32(argv, "+R"); /* '+': stop at first non-option */ |
| 89 | if (opts) |
| 90 | pers |= ADDR_NO_RANDOMIZE; |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 91 | |
| 92 | /* Try to set personality */ |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 93 | if (personality(pers) < 0) |
| 94 | bb_perror_msg_and_die("personality(0x%lx)", pers); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 95 | |
Denys Vlasenko | f2ccefb | 2015-10-19 23:26:50 +0200 | [diff] [blame] | 96 | argv += optind; |
| 97 | if (!argv[0]) |
| 98 | (--argv)[0] = (char*)"/bin/sh"; |
| 99 | |
| 100 | /* Try to execute the program */ |
| 101 | BB_EXECVP_or_die(argv); |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 102 | } |