aboutsummaryrefslogtreecommitdiff
path: root/util-linux/setarch.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-21 04:26:52 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-21 04:26:52 +0000
commit0a6b0bfa7a821b594d237611e3f1effb1b3692fc (patch)
tree5313b93950024acfa71e58b53375957199ab9586 /util-linux/setarch.c
parentea6360e3938d016b2dfa6d0cbc9c9577070dca75 (diff)
downloadbusybox-0a6b0bfa7a821b594d237611e3f1effb1b3692fc.tar.gz
add setarch/linux32/linux64 applet
Diffstat (limited to 'util-linux/setarch.c')
-rw-r--r--util-linux/setarch.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/util-linux/setarch.c b/util-linux/setarch.c
new file mode 100644
index 000000000..3543eb6a2
--- /dev/null
+++ b/util-linux/setarch.c
@@ -0,0 +1,54 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * Linux32/linux64 allows for changing uname emulation.
+ *
+ * Copyright 2002 Andi Kleen, SuSE Labs.
+ * This file is subject to the GNU General Public License v2
+ *
+ * Licensed under GPL v2 or later, see file License for details.
+*/
+
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#include <errno.h>
+#include <stdio.h>
+#include <sys/personality.h>
+
+#include "busybox.h"
+
+int setarch_main(int argc, char **argv)
+{
+ int pers = -1;
+
+ /* Figure out what personality we are supposed to switch to ...
+ * we can be invoked as either:
+ * argv[0],argv[1] -> "setarch","personality"
+ * argv[0] -> "personality"
+ */
+retry:
+ if (!strcmp(argv[0], "linux64"))
+ pers = PER_LINUX;
+ else if (!strcmp(argv[0], "linux32"))
+ pers = PER_LINUX32;
+ else if (pers == -1 && argv[1] != NULL) {
+ pers = PER_LINUX32;
+ ++argv;
+ goto retry;
+ }
+
+ /* make user actually gave us something to do */
+ ++argv;
+ if (argv[0] == NULL)
+ bb_show_usage();
+
+ /* Try to set personality */
+ if (personality(pers) < 0)
+ goto failure;
+
+ /* Try to execute the program */
+ execvp(argv[0], argv);
+
+failure:
+ bb_perror_msg_and_die(argv[0]);
+}