Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-virtiofs-20210315...
[qemu/ar7.git] / scripts / qemu-binfmt-conf.sh
blob573b5dc6acd7901b907ec8ffc06598f0763b9309
1 #!/bin/sh
2 # Enable automatic program execution by the kernel.
4 qemu_target_list="i386 i486 alpha arm armeb sparc sparc32plus sparc64 \
5 ppc ppc64 ppc64le m68k mips mipsel mipsn32 mipsn32el mips64 mips64el \
6 sh4 sh4eb s390x aarch64 aarch64_be hppa riscv32 riscv64 xtensa xtensaeb \
7 microblaze microblazeel or1k x86_64 hexagon"
9 i386_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00'
10 i386_mask='\xff\xff\xff\xff\xff\xfe\xfe\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
11 i386_family=i386
13 i486_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x06\x00'
14 i486_mask='\xff\xff\xff\xff\xff\xfe\xfe\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
15 i486_family=i386
17 x86_64_magic='\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x3e\x00'
18 x86_64_mask='\xff\xff\xff\xff\xff\xfe\xfe\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
19 x86_64_family=i386
21 alpha_magic='\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x26\x90'
22 alpha_mask='\xff\xff\xff\xff\xff\xfe\xfe\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
23 alpha_family=alpha
25 arm_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00'
26 arm_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
27 arm_family=arm
29 armeb_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28'
30 armeb_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
31 armeb_family=armeb
33 sparc_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x02'
34 sparc_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
35 sparc_family=sparc
37 sparc32plus_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x12'
38 sparc32plus_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
39 sparc32plus_family=sparc
41 sparc64_magic='\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2b'
42 sparc64_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
43 sparc64_family=sparc
45 ppc_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x14'
46 ppc_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
47 ppc_family=ppc
49 ppc64_magic='\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x15'
50 ppc64_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
51 ppc64_family=ppc
53 ppc64le_magic='\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x15\x00'
54 ppc64le_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\x00'
55 ppc64le_family=ppcle
57 m68k_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x04'
58 m68k_mask='\xff\xff\xff\xff\xff\xff\xfe\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
59 m68k_family=m68k
61 # FIXME: We could use the other endianness on a MIPS host.
63 mips_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08'
64 mips_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
65 mips_family=mips
67 mipsel_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00'
68 mipsel_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
69 mipsel_family=mips
71 mipsn32_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08'
72 mipsn32_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
73 mipsn32_family=mips
75 mipsn32el_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00'
76 mipsn32el_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
77 mipsn32el_family=mips
79 mips64_magic='\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08'
80 mips64_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
81 mips64_family=mips
83 mips64el_magic='\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00'
84 mips64el_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
85 mips64el_family=mips
87 sh4_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2a\x00'
88 sh4_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
89 sh4_family=sh4
91 sh4eb_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2a'
92 sh4eb_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
93 sh4eb_family=sh4
95 s390x_magic='\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x16'
96 s390x_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
97 s390x_family=s390x
99 aarch64_magic='\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00'
100 aarch64_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
101 aarch64_family=arm
103 aarch64_be_magic='\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7'
104 aarch64_be_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
105 aarch64_be_family=armeb
107 hppa_magic='\x7f\x45\x4c\x46\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x0f'
108 hppa_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
109 hppa_family=hppa
111 riscv32_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xf3\x00'
112 riscv32_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
113 riscv32_family=riscv
115 riscv64_magic='\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xf3\x00'
116 riscv64_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
117 riscv64_family=riscv
119 xtensa_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x5e\x00'
120 xtensa_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
121 xtensa_family=xtensa
123 xtensaeb_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x5e'
124 xtensaeb_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
125 xtensaeb_family=xtensaeb
127 microblaze_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xba\xab'
128 microblaze_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
129 microblaze_family=microblaze
131 microblazeel_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xab\xba'
132 microblazeel_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
133 microblazeel_family=microblazeel
135 or1k_magic='\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x5c'
136 or1k_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff'
137 or1k_family=or1k
139 hexagon_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xa4\x00'
140 hexagon_mask='\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff'
141 hexagon_family=hexagon
143 qemu_get_family() {
144 cpu=${HOST_ARCH:-$(uname -m)}
145 case "$cpu" in
146 amd64|i386|i486|i586|i686|i86pc|BePC|x86_64)
147 echo "i386"
149 mips*)
150 echo "mips"
152 "Power Macintosh"|ppc64|powerpc|ppc)
153 echo "ppc"
155 ppc64el|ppc64le)
156 echo "ppcle"
158 arm|armel|armhf|arm64|armv[4-9]*l|aarch64)
159 echo "arm"
161 armeb|armv[4-9]*b|aarch64_be)
162 echo "armeb"
164 sparc*)
165 echo "sparc"
167 riscv*)
168 echo "riscv"
171 echo "$cpu"
173 esac
176 usage() {
177 cat <<EOF
178 Usage: qemu-binfmt-conf.sh [--qemu-path PATH][--debian][--systemd CPU]
179 [--help][--credential yes|no][--exportdir PATH]
180 [--persistent yes|no][--qemu-suffix SUFFIX]
181 [--preserve-argv0 yes|no]
183 Configure binfmt_misc to use qemu interpreter
185 --help: display this usage
186 --qemu-path: set path to qemu interpreter ($QEMU_PATH)
187 --qemu-suffix: add a suffix to the default interpreter name
188 --debian: don't write into /proc,
189 instead generate update-binfmts templates
190 --systemd: don't write into /proc,
191 instead generate file for systemd-binfmt.service
192 for the given CPU. If CPU is "ALL", generate a
193 file for all known cpus
194 --exportdir: define where to write configuration files
195 (default: $SYSTEMDDIR or $DEBIANDIR)
196 --credential: if yes, credential and security tokens are
197 calculated according to the binary to interpret
198 --persistent: if yes, the interpreter is loaded when binfmt is
199 configured and remains in memory. All future uses
200 are cloned from the open file.
201 --preserve-argv0 preserve argv[0]
203 To import templates with update-binfmts, use :
205 sudo update-binfmts --importdir ${EXPORTDIR:-$DEBIANDIR} --import qemu-CPU
207 To remove interpreter, use :
209 sudo update-binfmts --package qemu-CPU --remove qemu-CPU $QEMU_PATH
211 With systemd, binfmt files are loaded by systemd-binfmt.service
213 The environment variable HOST_ARCH allows to override 'uname' to generate
214 configuration files for a different architecture than the current one.
216 where CPU is one of:
218 $qemu_target_list
223 qemu_check_access() {
224 if [ ! -w "$1" ] ; then
225 echo "ERROR: cannot write to $1" 1>&2
226 exit 1
230 qemu_check_bintfmt_misc() {
231 # load the binfmt_misc module
232 if [ ! -d /proc/sys/fs/binfmt_misc ]; then
233 if ! /sbin/modprobe binfmt_misc ; then
234 exit 1
237 if [ ! -f /proc/sys/fs/binfmt_misc/register ]; then
238 if ! mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc ; then
239 exit 1
243 qemu_check_access /proc/sys/fs/binfmt_misc/register
246 installed_dpkg() {
247 dpkg --status "$1" > /dev/null 2>&1
250 qemu_check_debian() {
251 if [ ! -e /etc/debian_version ] ; then
252 echo "WARNING: your system is not a Debian based distro" 1>&2
253 elif ! installed_dpkg binfmt-support ; then
254 echo "WARNING: package binfmt-support is needed" 1>&2
256 qemu_check_access "$EXPORTDIR"
259 qemu_check_systemd() {
260 if ! systemctl -q is-enabled systemd-binfmt.service ; then
261 echo "WARNING: systemd-binfmt.service is missing or disabled" 1>&2
263 qemu_check_access "$EXPORTDIR"
266 qemu_generate_register() {
267 flags=""
268 if [ "$CREDENTIAL" = "yes" ] ; then
269 flags="OC"
271 if [ "$PERSISTENT" = "yes" ] ; then
272 flags="${flags}F"
274 if [ "$PRESERVE_ARG0" = "yes" ] ; then
275 flags="${flags}P"
278 echo ":qemu-$cpu:M::$magic:$mask:$qemu:$flags"
281 qemu_register_interpreter() {
282 echo "Setting $qemu as binfmt interpreter for $cpu"
283 qemu_generate_register > /proc/sys/fs/binfmt_misc/register
286 qemu_generate_systemd() {
287 echo "Setting $qemu as binfmt interpreter for $cpu for systemd-binfmt.service"
288 qemu_generate_register > "$EXPORTDIR/qemu-$cpu.conf"
291 qemu_generate_debian() {
292 cat > "$EXPORTDIR/qemu-$cpu" <<EOF
293 package qemu-$cpu
294 interpreter $qemu
295 magic $magic
296 mask $mask
297 credential $CREDENTIAL
301 qemu_set_binfmts() {
302 # probe cpu type
303 host_family=$(qemu_get_family)
305 # register the interpreter for each cpu except for the native one
307 for cpu in ${qemu_target_list} ; do
308 magic=$(eval echo \$${cpu}_magic)
309 mask=$(eval echo \$${cpu}_mask)
310 family=$(eval echo \$${cpu}_family)
312 if [ "$magic" = "" ] || [ "$mask" = "" ] || [ "$family" = "" ] ; then
313 echo "INTERNAL ERROR: unknown cpu $cpu" 1>&2
314 continue
317 qemu="$QEMU_PATH/qemu-$cpu"
318 if [ "$cpu" = "i486" ] ; then
319 qemu="$QEMU_PATH/qemu-i386"
322 qemu="$qemu$QEMU_SUFFIX"
323 if [ "$host_family" != "$family" ] ; then
324 $BINFMT_SET
326 done
329 CHECK=qemu_check_bintfmt_misc
330 BINFMT_SET=qemu_register_interpreter
332 SYSTEMDDIR="/etc/binfmt.d"
333 DEBIANDIR="/usr/share/binfmts"
335 QEMU_PATH=/usr/local/bin
336 CREDENTIAL=no
337 PERSISTENT=no
338 PRESERVE_ARG0=no
339 QEMU_SUFFIX=""
341 options=$(getopt -o ds:Q:S:e:hc:p:g: -l debian,systemd:,qemu-path:,qemu-suffix:,exportdir:,help,credential:,persistent:,preserve-argv0: -- "$@")
342 eval set -- "$options"
344 while true ; do
345 case "$1" in
346 -d|--debian)
347 CHECK=qemu_check_debian
348 BINFMT_SET=qemu_generate_debian
349 EXPORTDIR=${EXPORTDIR:-$DEBIANDIR}
351 -s|--systemd)
352 CHECK=qemu_check_systemd
353 BINFMT_SET=qemu_generate_systemd
354 EXPORTDIR=${EXPORTDIR:-$SYSTEMDDIR}
355 shift
356 # check given cpu is in the supported CPU list
357 if [ "$1" != "ALL" ] ; then
358 for cpu in ${qemu_target_list} ; do
359 if [ "$cpu" = "$1" ] ; then
360 break
362 done
364 if [ "$cpu" = "$1" ] ; then
365 qemu_target_list="$1"
366 else
367 echo "ERROR: unknown CPU \"$1\"" 1>&2
368 usage
369 exit 1
373 -Q|--qemu-path)
374 shift
375 QEMU_PATH="$1"
377 -F|--qemu-suffix)
378 shift
379 QEMU_SUFFIX="$1"
381 -e|--exportdir)
382 shift
383 EXPORTDIR="$1"
385 -h|--help)
386 usage
387 exit 1
389 -c|--credential)
390 shift
391 CREDENTIAL="$1"
393 -p|--persistent)
394 shift
395 PERSISTENT="$1"
397 -g|--preserve-argv0)
398 shift
399 PRESERVE_ARG0="$1"
402 break
404 esac
405 shift
406 done
408 $CHECK
409 qemu_set_binfmts