2006-02-21 09:56:52 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2008-08-24 04:45:17 +05:30
|
|
|
* linux32/linux64 allows for changing uname emulation.
|
2006-02-21 09:56:52 +05:30
|
|
|
*
|
|
|
|
* Copyright 2002 Andi Kleen, SuSE Labs.
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2011-04-11 06:59:49 +05:30
|
|
|
*/
|
2015-10-20 02:56:50 +05:30
|
|
|
//config:config SETARCH
|
|
|
|
//config: bool "setarch"
|
|
|
|
//config: default y
|
|
|
|
//config: select PLATFORM_LINUX
|
|
|
|
//config: help
|
|
|
|
//config: The linux32 utility is used to create a 32bit environment for the
|
|
|
|
//config: specified program (usually a shell). It only makes sense to have
|
|
|
|
//config: this util on a system that supports both 64bit and 32bit userland
|
|
|
|
//config: (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...).
|
|
|
|
|
|
|
|
//applet:IF_SETARCH(APPLET(setarch, BB_DIR_BIN, BB_SUID_DROP))
|
|
|
|
//applet:IF_SETARCH(APPLET_ODDNAME(linux32, setarch, BB_DIR_BIN, BB_SUID_DROP, linux32))
|
|
|
|
//applet:IF_SETARCH(APPLET_ODDNAME(linux64, setarch, BB_DIR_BIN, BB_SUID_DROP, linux64))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_SETARCH) += setarch.o
|
2011-04-11 06:59:49 +05:30
|
|
|
|
|
|
|
//usage:#define setarch_trivial_usage
|
2015-10-20 02:56:50 +05:30
|
|
|
//usage: "PERSONALITY [-R] PROG ARGS"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define setarch_full_usage "\n\n"
|
2015-10-20 02:56:50 +05:30
|
|
|
//usage: "PERSONALITY may be:"
|
|
|
|
//usage: "\n"" linux32 Set 32bit uname emulation"
|
|
|
|
//usage: "\n"" linux64 Set 64bit uname emulation"
|
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\n"" -R Disable address space randomization"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:
|
|
|
|
//usage:#define linux32_trivial_usage NOUSAGE_STR
|
|
|
|
//usage:#define linux32_full_usage ""
|
|
|
|
//usage:
|
|
|
|
//usage:#define linux64_trivial_usage NOUSAGE_STR
|
|
|
|
//usage:#define linux64_full_usage ""
|
2006-02-21 09:56:52 +05:30
|
|
|
|
2015-10-20 02:56:50 +05:30
|
|
|
#include "libbb.h"
|
2006-02-21 09:56:52 +05:30
|
|
|
#include <sys/personality.h>
|
|
|
|
|
2015-10-20 02:56:50 +05:30
|
|
|
#ifndef ADDR_NO_RANDOMIZE
|
|
|
|
# define ADDR_NO_RANDOMIZE 0x0040000
|
|
|
|
#endif
|
2006-02-21 09:56:52 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int setarch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int setarch_main(int argc UNUSED_PARAM, char **argv)
|
2006-02-21 09:56:52 +05:30
|
|
|
{
|
2015-10-20 02:56:50 +05:30
|
|
|
unsigned opts;
|
|
|
|
unsigned long pers;
|
2006-02-21 09:56:52 +05:30
|
|
|
|
|
|
|
/* Figure out what personality we are supposed to switch to ...
|
|
|
|
* we can be invoked as either:
|
2008-08-24 04:45:17 +05:30
|
|
|
* argv[0],argv[1] == "setarch","personality"
|
|
|
|
* argv[0] == "personality"
|
2006-02-21 09:56:52 +05:30
|
|
|
*/
|
2008-08-24 04:45:17 +05:30
|
|
|
if (ENABLE_SETARCH && applet_name[0] == 's'
|
2015-10-20 02:56:50 +05:30
|
|
|
&& argv[1] && is_prefixed_with(argv[1], "linux")
|
2008-08-24 04:45:17 +05:30
|
|
|
) {
|
|
|
|
applet_name = argv[1];
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
if (applet_name[5] == '6') /* linux64 */
|
2006-02-21 09:56:52 +05:30
|
|
|
pers = PER_LINUX;
|
2008-08-24 04:45:17 +05:30
|
|
|
else if (applet_name[5] == '3') /* linux32 */
|
2006-02-21 09:56:52 +05:30
|
|
|
pers = PER_LINUX32;
|
2008-08-24 04:45:17 +05:30
|
|
|
else
|
|
|
|
bb_show_usage();
|
2006-02-21 09:56:52 +05:30
|
|
|
|
2015-10-20 02:56:50 +05:30
|
|
|
opts = getopt32(argv, "+R"); /* '+': stop at first non-option */
|
|
|
|
if (opts)
|
|
|
|
pers |= ADDR_NO_RANDOMIZE;
|
2006-02-21 09:56:52 +05:30
|
|
|
|
|
|
|
/* Try to set personality */
|
2015-10-20 02:56:50 +05:30
|
|
|
if (personality(pers) < 0)
|
|
|
|
bb_perror_msg_and_die("personality(0x%lx)", pers);
|
|
|
|
|
|
|
|
argv += optind;
|
|
|
|
if (!argv[0])
|
|
|
|
(--argv)[0] = (char*)"/bin/sh";
|
2006-02-21 09:56:52 +05:30
|
|
|
|
2015-10-20 02:56:50 +05:30
|
|
|
/* Try to execute the program */
|
|
|
|
BB_EXECVP_or_die(argv);
|
2006-02-21 09:56:52 +05:30
|
|
|
}
|