blob: 7f7b592e8b0fca2479f4c969e91ebfc6d5bd4e3b [file] [log] [blame]
Jan Kiszka87fdd472011-06-08 18:22:17 +02001#!/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
13tmpdir=`mktemp -d`
14linux="$1"
15output="$2"
16
17if [ -z "$linux" ] || ! [ -d "$linux" ]; then
18 cat << EOF
19usage: update-kernel-headers.sh LINUX_PATH [OUTPUT_PATH]
20
21LINUX_PATH Linux kernel directory to obtain the headers from
22OUTPUT_PATH output directory, usually the qemu source tree (default: $PWD)
23EOF
24 exit 1
25fi
26
27if [ -z "$output" ]; then
28 output="$PWD"
29fi
30
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010031cp_virtio() {
32 from=$1
33 to=$2
Michael S. Tsirkin412a8242015-07-01 11:42:18 +020034 virtio=$(find "$from" -name '*virtio*h' -o -name "input.h" -o -name "pci_regs.h")
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010035 if [ "$virtio" ]; then
36 rm -rf "$to"
37 mkdir -p "$to"
38 for f in $virtio; do
39 if
40 grep '#include' "$f" | grep -v -e 'linux/virtio' \
41 -e 'linux/types' \
Paolo Bonzini120758f2015-09-09 14:50:17 +020042 -e 'stdint' \
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010043 -e 'linux/if_ether' \
Gerd Hoffmann2fe7c312015-03-19 11:55:24 +010044 -e 'sys/' \
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010045 > /dev/null
46 then
47 echo "Unexpected #include in input file $f".
48 exit 2
49 fi
50
51 header=$(basename "$f");
52 sed -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \
Gerd Hoffmann2fe7c312015-03-19 11:55:24 +010053 -e 's/__s\([0-9][0-9]*\)/int\1_t/g' \
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010054 -e 's/__le\([0-9][0-9]*\)/uint\1_t/g' \
55 -e 's/__be\([0-9][0-9]*\)/uint\1_t/g' \
56 -e 's/<linux\/\([^>]*\)>/"standard-headers\/linux\/\1"/' \
57 -e 's/__bitwise__//' \
58 -e 's/__attribute__((packed))/QEMU_PACKED/' \
Michael S. Tsirkinc16758c2015-02-18 16:37:35 +010059 -e 's/__inline__/inline/' \
Gerd Hoffmanne2f6bac2015-07-14 13:44:12 +020060 -e '/sys\/ioctl.h/d' \
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010061 "$f" > "$to/$header";
62 done
63 fi
64}
65
Peter Maydell28796362012-07-18 11:11:09 +010066# This will pick up non-directories too (eg "Kconfig") but we will
67# ignore them in the next loop.
68ARCHLIST=$(cd "$linux/arch" && echo *)
69
70for arch in $ARCHLIST; do
71 # Discard anything which isn't a KVM-supporting architecture
Peter Maydellb55f5462012-10-22 12:54:39 +010072 if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ] &&
73 ! [ -e "$linux/arch/$arch/include/uapi/asm/kvm.h" ] ; then
Peter Maydell28796362012-07-18 11:11:09 +010074 continue
75 fi
76
77 # Blacklist architectures which have KVM headers but are actually dead
78 if [ "$arch" = "ia64" ]; then
79 continue
80 fi
81
Jan Kiszka87fdd472011-06-08 18:22:17 +020082 make -C "$linux" INSTALL_HDR_PATH="$tmpdir" SRCARCH=$arch headers_install
83
84 rm -rf "$output/linux-headers/asm-$arch"
85 mkdir -p "$output/linux-headers/asm-$arch"
86 for header in kvm.h kvm_para.h; do
87 cp "$tmpdir/include/asm/$header" "$output/linux-headers/asm-$arch"
88 done
89 if [ $arch = x86 ]; then
90 cp "$tmpdir/include/asm/hyperv.h" "$output/linux-headers/asm-x86"
91 fi
Bharat Bhushand56af002012-12-18 01:13:58 +000092 if [ $arch = powerpc ]; then
93 cp "$tmpdir/include/asm/epapr_hcalls.h" "$output/linux-headers/asm-powerpc/"
94 fi
Michael S. Tsirkin44fb1dd2015-02-16 22:36:48 +010095
96 cp_virtio "$tmpdir/include/asm" "$output/include/standard-headers/asm-$arch"
Jan Kiszka87fdd472011-06-08 18:22:17 +020097done
98
99rm -rf "$output/linux-headers/linux"
100mkdir -p "$output/linux-headers/linux"
Michael S. Tsirkin05e492b2015-02-16 22:36:32 +0100101for header in kvm.h kvm_para.h vfio.h vhost.h \
Alexander Graf2872e192014-06-04 12:03:03 +0200102 psci.h; do
Jan Kiszka87fdd472011-06-08 18:22:17 +0200103 cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux"
104done
Peter Maydell256d0462012-07-25 16:29:07 +0100105rm -rf "$output/linux-headers/asm-generic"
106mkdir -p "$output/linux-headers/asm-generic"
107for header in kvm_para.h; do
108 cp "$tmpdir/include/asm-generic/$header" "$output/linux-headers/asm-generic"
109done
Jan Kiszka87fdd472011-06-08 18:22:17 +0200110if [ -L "$linux/source" ]; then
111 cp "$linux/source/COPYING" "$output/linux-headers"
112else
113 cp "$linux/COPYING" "$output/linux-headers"
114fi
115
Michael S. Tsirkin05e492b2015-02-16 22:36:32 +0100116cat <<EOF >$output/linux-headers/linux/virtio_config.h
117#include "standard-headers/linux/virtio_config.h"
118EOF
119cat <<EOF >$output/linux-headers/linux/virtio_ring.h
120#include "standard-headers/linux/virtio_ring.h"
121EOF
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +0100122
123cp_virtio "$tmpdir/include/linux/" "$output/include/standard-headers/linux"
124
125cat <<EOF >$output/include/standard-headers/linux/types.h
126#include <stdint.h>
127#include "qemu/compiler.h"
128EOF
129cat <<EOF >$output/include/standard-headers/linux/if_ether.h
130#define ETH_ALEN 6
131EOF
132
Jan Kiszka87fdd472011-06-08 18:22:17 +0200133rm -rf "$tmpdir"