Jan Kiszka | 87fdd47 | 2011-06-08 18:22:17 +0200 | [diff] [blame] | 1 | #!/bin/sh -e |
| 2 | # |
| 3 | # Update Linux kernel headers QEMU requires from a specified kernel tree. |
| 4 | # |
| 5 | # Copyright (C) 2011 Siemens AG |
| 6 | # |
| 7 | # Authors: |
| 8 | # Jan Kiszka <jan.kiszka@siemens.com> |
| 9 | # |
| 10 | # This work is licensed under the terms of the GNU GPL version 2. |
| 11 | # See the COPYING file in the top-level directory. |
| 12 | |
| 13 | tmpdir=`mktemp -d` |
| 14 | linux="$1" |
| 15 | output="$2" |
| 16 | |
| 17 | if [ -z "$linux" ] || ! [ -d "$linux" ]; then |
| 18 | cat << EOF |
| 19 | usage: update-kernel-headers.sh LINUX_PATH [OUTPUT_PATH] |
| 20 | |
| 21 | LINUX_PATH Linux kernel directory to obtain the headers from |
| 22 | OUTPUT_PATH output directory, usually the qemu source tree (default: $PWD) |
| 23 | EOF |
| 24 | exit 1 |
| 25 | fi |
| 26 | |
| 27 | if [ -z "$output" ]; then |
| 28 | output="$PWD" |
| 29 | fi |
| 30 | |
Paolo Bonzini | eddb4de | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 31 | cp_portable() { |
| 32 | f=$1 |
Michael S. Tsirkin | 1ff0b55 | 2015-02-16 22:35:25 +0100 | [diff] [blame] | 33 | to=$2 |
Paolo Bonzini | eddb4de | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 34 | if |
| 35 | grep '#include' "$f" | grep -v -e 'linux/virtio' \ |
| 36 | -e 'linux/types' \ |
| 37 | -e 'stdint' \ |
| 38 | -e 'linux/if_ether' \ |
| 39 | -e 'sys/' \ |
| 40 | > /dev/null |
| 41 | then |
| 42 | echo "Unexpected #include in input file $f". |
| 43 | exit 2 |
Michael S. Tsirkin | 1ff0b55 | 2015-02-16 22:35:25 +0100 | [diff] [blame] | 44 | fi |
Paolo Bonzini | eddb4de | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 45 | |
| 46 | header=$(basename "$f"); |
| 47 | sed -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \ |
| 48 | -e 's/__s\([0-9][0-9]*\)/int\1_t/g' \ |
| 49 | -e 's/__le\([0-9][0-9]*\)/uint\1_t/g' \ |
| 50 | -e 's/__be\([0-9][0-9]*\)/uint\1_t/g' \ |
| 51 | -e 's/<linux\/\([^>]*\)>/"standard-headers\/linux\/\1"/' \ |
| 52 | -e 's/__bitwise__//' \ |
| 53 | -e 's/__attribute__((packed))/QEMU_PACKED/' \ |
| 54 | -e 's/__inline__/inline/' \ |
| 55 | -e '/sys\/ioctl.h/d' \ |
Markus Armbruster | ac98fa8 | 2015-10-08 18:11:39 +0200 | [diff] [blame] | 56 | -e 's/SW_MAX/SW_MAX_/' \ |
Paolo Bonzini | eddb4de | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 57 | "$f" > "$to/$header"; |
Michael S. Tsirkin | 1ff0b55 | 2015-02-16 22:35:25 +0100 | [diff] [blame] | 58 | } |
| 59 | |
Peter Maydell | 2879636 | 2012-07-18 11:11:09 +0100 | [diff] [blame] | 60 | # This will pick up non-directories too (eg "Kconfig") but we will |
| 61 | # ignore them in the next loop. |
| 62 | ARCHLIST=$(cd "$linux/arch" && echo *) |
| 63 | |
| 64 | for arch in $ARCHLIST; do |
| 65 | # Discard anything which isn't a KVM-supporting architecture |
Peter Maydell | b55f546 | 2012-10-22 12:54:39 +0100 | [diff] [blame] | 66 | if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ] && |
| 67 | ! [ -e "$linux/arch/$arch/include/uapi/asm/kvm.h" ] ; then |
Peter Maydell | 2879636 | 2012-07-18 11:11:09 +0100 | [diff] [blame] | 68 | continue |
| 69 | fi |
| 70 | |
| 71 | # Blacklist architectures which have KVM headers but are actually dead |
| 72 | if [ "$arch" = "ia64" ]; then |
| 73 | continue |
| 74 | fi |
| 75 | |
Jan Kiszka | 87fdd47 | 2011-06-08 18:22:17 +0200 | [diff] [blame] | 76 | make -C "$linux" INSTALL_HDR_PATH="$tmpdir" SRCARCH=$arch headers_install |
| 77 | |
| 78 | rm -rf "$output/linux-headers/asm-$arch" |
| 79 | mkdir -p "$output/linux-headers/asm-$arch" |
| 80 | for header in kvm.h kvm_para.h; do |
| 81 | cp "$tmpdir/include/asm/$header" "$output/linux-headers/asm-$arch" |
| 82 | done |
Bharat Bhushan | d56af00 | 2012-12-18 01:13:58 +0000 | [diff] [blame] | 83 | if [ $arch = powerpc ]; then |
| 84 | cp "$tmpdir/include/asm/epapr_hcalls.h" "$output/linux-headers/asm-powerpc/" |
| 85 | fi |
Michael S. Tsirkin | 44fb1dd | 2015-02-16 22:36:48 +0100 | [diff] [blame] | 86 | |
Paolo Bonzini | eddb4de | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 87 | rm -rf "$output/include/standard-headers/asm-$arch" |
| 88 | mkdir -p "$output/include/standard-headers/asm-$arch" |
| 89 | if [ $arch = s390 ]; then |
| 90 | cp_portable "$tmpdir/include/asm/kvm_virtio.h" "$output/include/standard-headers/asm-s390/" |
| 91 | cp_portable "$tmpdir/include/asm/virtio-ccw.h" "$output/include/standard-headers/asm-s390/" |
| 92 | fi |
Paolo Bonzini | 73aa529 | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 93 | if [ $arch = x86 ]; then |
| 94 | cp_portable "$tmpdir/include/asm/hyperv.h" "$output/include/standard-headers/asm-x86/" |
| 95 | fi |
Jan Kiszka | 87fdd47 | 2011-06-08 18:22:17 +0200 | [diff] [blame] | 96 | done |
| 97 | |
| 98 | rm -rf "$output/linux-headers/linux" |
| 99 | mkdir -p "$output/linux-headers/linux" |
Michael S. Tsirkin | 05e492b | 2015-02-16 22:36:32 +0100 | [diff] [blame] | 100 | for header in kvm.h kvm_para.h vfio.h vhost.h \ |
Alexander Graf | 2872e19 | 2014-06-04 12:03:03 +0200 | [diff] [blame] | 101 | psci.h; do |
Jan Kiszka | 87fdd47 | 2011-06-08 18:22:17 +0200 | [diff] [blame] | 102 | cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" |
| 103 | done |
Peter Maydell | 256d046 | 2012-07-25 16:29:07 +0100 | [diff] [blame] | 104 | rm -rf "$output/linux-headers/asm-generic" |
| 105 | mkdir -p "$output/linux-headers/asm-generic" |
| 106 | for header in kvm_para.h; do |
| 107 | cp "$tmpdir/include/asm-generic/$header" "$output/linux-headers/asm-generic" |
| 108 | done |
Jan Kiszka | 87fdd47 | 2011-06-08 18:22:17 +0200 | [diff] [blame] | 109 | if [ -L "$linux/source" ]; then |
| 110 | cp "$linux/source/COPYING" "$output/linux-headers" |
| 111 | else |
| 112 | cp "$linux/COPYING" "$output/linux-headers" |
| 113 | fi |
| 114 | |
Paolo Bonzini | 73aa529 | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 115 | cat <<EOF >$output/linux-headers/asm-x86/hyperv.h |
| 116 | #include "standard-headers/asm-x86/hyperv.h" |
| 117 | EOF |
Michael S. Tsirkin | 05e492b | 2015-02-16 22:36:32 +0100 | [diff] [blame] | 118 | cat <<EOF >$output/linux-headers/linux/virtio_config.h |
| 119 | #include "standard-headers/linux/virtio_config.h" |
| 120 | EOF |
| 121 | cat <<EOF >$output/linux-headers/linux/virtio_ring.h |
| 122 | #include "standard-headers/linux/virtio_ring.h" |
| 123 | EOF |
Michael S. Tsirkin | 1ff0b55 | 2015-02-16 22:35:25 +0100 | [diff] [blame] | 124 | |
Paolo Bonzini | eddb4de | 2015-09-09 15:25:52 +0200 | [diff] [blame] | 125 | rm -rf "$output/include/standard-headers/linux" |
| 126 | mkdir -p "$output/include/standard-headers/linux" |
| 127 | for i in "$tmpdir"/include/linux/*virtio*.h "$tmpdir/include/linux/input.h" \ |
| 128 | "$tmpdir/include/linux/pci_regs.h"; do |
| 129 | cp_portable "$i" "$output/include/standard-headers/linux" |
| 130 | done |
Michael S. Tsirkin | 1ff0b55 | 2015-02-16 22:35:25 +0100 | [diff] [blame] | 131 | |
| 132 | cat <<EOF >$output/include/standard-headers/linux/types.h |
| 133 | #include <stdint.h> |
| 134 | #include "qemu/compiler.h" |
| 135 | EOF |
| 136 | cat <<EOF >$output/include/standard-headers/linux/if_ether.h |
| 137 | #define ETH_ALEN 6 |
| 138 | EOF |
| 139 | |
Jan Kiszka | 87fdd47 | 2011-06-08 18:22:17 +0200 | [diff] [blame] | 140 | rm -rf "$tmpdir" |