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.
|
|
|
|
*
|
|
|
|
* Licensed under GPL v2 or later, see file License for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/personality.h>
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
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
|
|
|
{
|
2008-08-24 04:45:17 +05:30
|
|
|
int 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'
|
|
|
|
&& argv[1] && strncpy(argv[1], "linux", 5)
|
|
|
|
) {
|
|
|
|
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
|
|
|
|
2008-08-24 04:45:17 +05:30
|
|
|
argv++;
|
2006-02-21 09:56:52 +05:30
|
|
|
if (argv[0] == NULL)
|
|
|
|
bb_show_usage();
|
|
|
|
|
|
|
|
/* Try to set personality */
|
2006-03-20 07:50:18 +05:30
|
|
|
if (personality(pers) >= 0) {
|
|
|
|
/* Try to execute the program */
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[0], argv);
|
2006-03-20 07:50:18 +05:30
|
|
|
}
|
2006-02-21 09:56:52 +05:30
|
|
|
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg_and_die(argv[0]);
|
2006-02-21 09:56:52 +05:30
|
|
|
}
|