]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/setarch.c
Merge branch 'patch-1' of https://github.com/dtrebbien/util-linux
[thirdparty/util-linux.git] / sys-utils / setarch.c
1 /*
2 * Copyright (C) 2003-2007 Red Hat, Inc.
3 *
4 * This file is part of util-linux.
5 *
6 * This file is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This file is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 *
17 * Written by Elliot Lee <sopwith@redhat.com>
18 * New personality options & code added by Jindrich Novy <jnovy@redhat.com>
19 * ADD_NO_RANDOMIZE flag added by Arjan van de Ven <arjanv@redhat.com>
20 * Help and MIPS support from Mike Frysinger (vapier@gentoo.org)
21 * Better error handling from Dmitry V. Levin (ldv@altlinux.org)
22 *
23 * based on ideas from the ppc32 util by Guy Streeter (2002-01), based on the
24 * sparc32 util by Jakub Jelinek (1998, 1999)
25 */
26
27 #include <syscall.h>
28 #include <linux/personality.h>
29 #include <unistd.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #include <getopt.h>
34 #include <limits.h>
35 #include <sys/utsname.h>
36 #include "nls.h"
37 #include "c.h"
38 #include "closestream.h"
39
40 #define set_pers(pers) ((long)syscall(SYS_personality, pers))
41
42 /* Options without equivalent short options */
43 enum {
44 OPT_4GB = CHAR_MAX + 1,
45 OPT_UNAME26
46 };
47
48 #define turn_on(_flag, _opts) \
49 do { \
50 (_opts) |= _flag; \
51 if (verbose) \
52 printf(_("Switching on %s.\n"), #_flag); \
53 } while(0)
54
55
56 #if !HAVE_DECL_UNAME26
57 # define UNAME26 0x0020000
58 #endif
59 #if !HAVE_DECL_ADDR_NO_RANDOMIZE
60 # define ADDR_NO_RANDOMIZE 0x0040000
61 #endif
62 #if !HAVE_DECL_FDPIC_FUNCPTRS
63 # define FDPIC_FUNCPTRS 0x0080000
64 #endif
65 #if !HAVE_DECL_MMAP_PAGE_ZERO
66 # define MMAP_PAGE_ZERO 0x0100000
67 #endif
68 #if !HAVE_DECL_ADDR_COMPAT_LAYOUT
69 # define ADDR_COMPAT_LAYOUT 0x0200000
70 #endif
71 #if !HAVE_DECL_READ_IMPLIES_EXEC
72 # define READ_IMPLIES_EXEC 0x0400000
73 #endif
74 #if !HAVE_DECL_ADDR_LIMIT_32BIT
75 # define ADDR_LIMIT_32BIT 0x0800000
76 #endif
77 #if !HAVE_DECL_SHORT_INODE
78 # define SHORT_INODE 0x1000000
79 #endif
80 #if !HAVE_DECL_WHOLE_SECONDS
81 # define WHOLE_SECONDS 0x2000000
82 #endif
83 #if !HAVE_DECL_STICKY_TIMEOUTS
84 # define STICKY_TIMEOUTS 0x4000000
85 #endif
86 #if !HAVE_DECL_ADDR_LIMIT_3GB
87 # define ADDR_LIMIT_3GB 0x8000000
88 #endif
89
90 static void __attribute__((__noreturn__))
91 show_help(void)
92 {
93 printf(USAGE_HEADER);
94 printf(_(" %s%s [options] [program [program arguments]]\n"),
95 program_invocation_short_name,
96 !strcmp(program_invocation_short_name, "setarch") ? " <arch>" : "");
97
98 printf(USAGE_OPTIONS);
99 printf(_(
100 " -v, --verbose says what options are being switched on\n"
101 " -R, --addr-no-randomize disables randomization of the virtual address space\n"
102 " -F, --fdpic-funcptrs makes function pointers point to descriptors\n"
103 " -Z, --mmap-page-zero turns on MMAP_PAGE_ZERO\n"
104 " -L, --addr-compat-layout changes the way virtual memory is allocated\n"
105 " -X, --read-implies-exec turns on READ_IMPLIES_EXEC\n"
106 " -B, --32bit turns on ADDR_LIMIT_32BIT\n"
107 " -I, --short-inode turns on SHORT_INODE\n"
108 " -S, --whole-seconds turns on WHOLE_SECONDS\n"
109 " -T, --sticky-timeouts turns on STICKY_TIMEOUTS\n"
110 " -3, --3gb limits the used address space to a maximum of 3 GB\n"
111 " --4gb ignored (for backward compatibility only)\n"
112 " --uname-2.6 turns on UNAME26\n"));
113
114 printf(USAGE_SEPARATOR);
115 printf(USAGE_HELP);
116 printf(USAGE_VERSION);
117 printf(USAGE_MAN_TAIL("setarch(8)"));
118
119 exit(EXIT_SUCCESS);
120 }
121
122 static void __attribute__((__noreturn__))
123 show_usage(const char *s)
124 {
125 if (s)
126 errx(EXIT_FAILURE, _("%s\nTry `%s --help' for more information."), s, program_invocation_short_name);
127 else
128 errx(EXIT_FAILURE, _("Try `%s --help' for more information."), program_invocation_short_name);
129 }
130
131 static void __attribute__((__noreturn__))
132 show_version(void)
133 {
134 printf(UTIL_LINUX_VERSION);
135 exit(EXIT_SUCCESS);
136 }
137
138 static int
139 set_arch(const char *pers, unsigned long options)
140 {
141 struct utsname un;
142 int i;
143 unsigned long pers_value;
144
145 struct {
146 int perval;
147 const char *target_arch, *result_arch;
148 } transitions[] = {
149 {PER_LINUX32, "linux32", NULL},
150 {PER_LINUX, "linux64", NULL},
151 #if defined(__powerpc__) || defined(__powerpc64__)
152 {PER_LINUX32, "ppc32", "ppc"},
153 {PER_LINUX32, "ppc", "ppc"},
154 {PER_LINUX, "ppc64", "ppc64"},
155 {PER_LINUX, "ppc64pseries", "ppc64"},
156 {PER_LINUX, "ppc64iseries", "ppc64"},
157 #endif
158 #if defined(__x86_64__) || defined(__i386__) || defined(__ia64__)
159 {PER_LINUX32, "i386", "i386"},
160 {PER_LINUX32, "i486", "i386"},
161 {PER_LINUX32, "i586", "i386"},
162 {PER_LINUX32, "i686", "i386"},
163 {PER_LINUX32, "athlon", "i386"},
164 #endif
165 #if defined(__x86_64__) || defined(__i386__)
166 {PER_LINUX, "x86_64", "x86_64"},
167 #endif
168 #if defined(__ia64__) || defined(__i386__)
169 {PER_LINUX, "ia64", "ia64"},
170 #endif
171 #if defined(__hppa__)
172 {PER_LINUX32, "parisc32", "parisc"},
173 {PER_LINUX32, "parisc", "parisc"},
174 {PER_LINUX, "parisc64", "parisc64"},
175 #endif
176 #if defined(__s390x__) || defined(__s390__)
177 {PER_LINUX32, "s390", "s390"},
178 {PER_LINUX, "s390x", "s390x"},
179 #endif
180 #if defined(__sparc64__) || defined(__sparc__)
181 {PER_LINUX32, "sparc", "sparc"},
182 {PER_LINUX32, "sparc32bash", "sparc"},
183 {PER_LINUX32, "sparc32", "sparc"},
184 {PER_LINUX, "sparc64", "sparc64"},
185 #endif
186 #if defined(__mips64__) || defined(__mips__)
187 {PER_LINUX32, "mips32", "mips"},
188 {PER_LINUX32, "mips", "mips"},
189 {PER_LINUX, "mips64", "mips64"},
190 #endif
191 #if defined(__alpha__)
192 {PER_LINUX, "alpha", "alpha"},
193 {PER_LINUX, "alphaev5", "alpha"},
194 {PER_LINUX, "alphaev56", "alpha"},
195 {PER_LINUX, "alphaev6", "alpha"},
196 {PER_LINUX, "alphaev67", "alpha"},
197 #endif
198 {-1, NULL, NULL}
199 };
200
201 for(i = 0; transitions[i].perval >= 0; i++)
202 if(!strcmp(pers, transitions[i].target_arch))
203 break;
204
205 if(transitions[i].perval < 0)
206 errx(EXIT_FAILURE, _("%s: Unrecognized architecture"), pers);
207
208 pers_value = transitions[i].perval | options;
209 if (set_pers(pers_value) == -EINVAL)
210 return 1;
211
212 uname(&un);
213 if(transitions[i].result_arch &&
214 strcmp(un.machine, transitions[i].result_arch))
215 {
216 if(strcmp(transitions[i].result_arch, "i386")
217 || (strcmp(un.machine, "i486")
218 && strcmp(un.machine, "i586")
219 && strcmp(un.machine, "i686")
220 && strcmp(un.machine, "athlon")))
221 errx(EXIT_FAILURE, _("%s: Unrecognized architecture"), pers);
222 }
223
224 return 0;
225 }
226
227 int main(int argc, char *argv[])
228 {
229 const char *p;
230 unsigned long options = 0;
231 int verbose = 0;
232 int c;
233
234 /* Options --3gb and --4gb are for compatibitity with an old Debian setarch
235 implementation. */
236 static const struct option longopts[] =
237 {
238 { "help", 0, 0, 'h' },
239 { "version", 0, 0, 'V' },
240 { "verbose", 0, 0, 'v' },
241 { "addr-no-randomize", 0, 0, 'R' },
242 { "fdpic-funcptrs", 0, 0, 'F' },
243 { "mmap-page-zero", 0, 0, 'Z' },
244 { "addr-compat-layout", 0, 0, 'L' },
245 { "read-implies-exec", 0, 0, 'X' },
246 { "32bit", 0, 0, 'B' },
247 { "short-inode", 0, 0, 'I' },
248 { "whole-seconds", 0, 0, 'S' },
249 { "sticky-timeouts", 0, 0, 'T' },
250 { "3gb", 0, 0, '3' },
251 { "4gb", 0, 0, OPT_4GB },
252 { "uname-2.6", 0, 0, OPT_UNAME26 },
253 { NULL, 0, 0, 0 }
254 };
255
256 setlocale(LC_ALL, "");
257 bindtextdomain(PACKAGE, LOCALEDIR);
258 textdomain(PACKAGE);
259 atexit(close_stdout);
260
261 if (argc < 1)
262 show_usage(_("Not enough arguments"));
263
264 p = program_invocation_short_name;
265 if (!strcmp(p, "setarch")) {
266 argc--;
267 if (argc < 1)
268 show_usage(_("Not enough arguments"));
269 p = argv[1];
270 argv[1] = argv[0]; /* for getopt_long() to get the program name */
271 argv++;
272 if (!strcmp(p, "-h") || !strcmp(p, "--help"))
273 show_help();
274 else if (!strcmp(p, "-V") || !strcmp(p, "--version"))
275 show_version();
276 }
277 #if defined(__sparc64__) || defined(__sparc__)
278 if (!strcmp(p, "sparc32bash")) {
279 if (set_arch(p, 0L))
280 err(EXIT_FAILURE, _("Failed to set personality to %s"), p);
281 execl("/bin/bash", NULL);
282 err(EXIT_FAILURE, _("failed to execute %s"), "/bin/bash");
283 }
284 #endif
285
286 while ((c = getopt_long(argc, argv, "+hVv3BFILRSTXZ", longopts, NULL)) != -1) {
287 switch (c) {
288 case 'h':
289 show_help();
290 break;
291 case 'V':
292 show_version();
293 break;
294 case 'v':
295 verbose = 1;
296 break;
297 case 'R':
298 turn_on(ADDR_NO_RANDOMIZE, options);
299 break;
300 case 'F':
301 turn_on(FDPIC_FUNCPTRS, options);
302 break;
303 case 'Z':
304 turn_on(MMAP_PAGE_ZERO, options);
305 break;
306 case 'L':
307 turn_on(ADDR_COMPAT_LAYOUT, options);
308 break;
309 case 'X':
310 turn_on(READ_IMPLIES_EXEC, options);
311 break;
312 case 'B':
313 turn_on(ADDR_LIMIT_32BIT, options);
314 break;
315 case 'I':
316 turn_on(SHORT_INODE, options);
317 break;
318 case 'S':
319 turn_on(WHOLE_SECONDS, options);
320 break;
321 case 'T':
322 turn_on(STICKY_TIMEOUTS, options);
323 break;
324 case '3':
325 turn_on(ADDR_LIMIT_3GB, options);
326 break;
327 case OPT_4GB: /* just ignore this one */
328 break;
329 case OPT_UNAME26:
330 turn_on(UNAME26, options);
331 break;
332 default:
333 show_usage(NULL);
334 }
335 }
336
337 argc -= optind;
338 argv += optind;
339
340 if (set_arch(p, options))
341 err(EXIT_FAILURE, _("Failed to set personality to %s"), p);
342
343 if (!argc) {
344 execl("/bin/sh", "-sh", NULL);
345 err(EXIT_FAILURE, _("failed to execute %s"), "/bin/sh");
346 }
347
348 execvp(argv[0], argv);
349 err(EXIT_FAILURE, "%s", argv[0]);
350 return EXIT_FAILURE;
351 }