]>
Commit | Line | Data |
---|---|---|
87fdd476 JK |
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 <[email protected]> | |
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 | ||
bbd90802 | 13 | tmpdir=$(mktemp -d) |
87fdd476 JK |
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 | ||
eddb4de3 PB |
31 | cp_portable() { |
32 | f=$1 | |
1ff0b555 | 33 | to=$2 |
eddb4de3 PB |
34 | if |
35 | grep '#include' "$f" | grep -v -e 'linux/virtio' \ | |
36 | -e 'linux/types' \ | |
37 | -e 'stdint' \ | |
38 | -e 'linux/if_ether' \ | |
fff02bc0 | 39 | -e 'input-event-codes' \ |
eddb4de3 | 40 | -e 'sys/' \ |
e1c5f1f0 | 41 | -e 'pvrdma_verbs' \ |
8e8ee850 | 42 | -e 'drm.h' \ |
d3b7b374 JB |
43 | -e 'limits' \ |
44 | -e 'linux/kernel' \ | |
45 | -e 'linux/sysinfo' \ | |
ec7b1080 | 46 | -e 'asm-generic/kvm_para' \ |
eddb4de3 PB |
47 | > /dev/null |
48 | then | |
49 | echo "Unexpected #include in input file $f". | |
50 | exit 2 | |
1ff0b555 | 51 | fi |
eddb4de3 PB |
52 | |
53 | header=$(basename "$f"); | |
c5022c31 PM |
54 | sed -e 's/__aligned_u64/__u64 __attribute__((aligned(8)))/g' \ |
55 | -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \ | |
e1c5f1f0 | 56 | -e 's/u\([0-9][0-9]*\)/uint\1_t/g' \ |
eddb4de3 PB |
57 | -e 's/__s\([0-9][0-9]*\)/int\1_t/g' \ |
58 | -e 's/__le\([0-9][0-9]*\)/uint\1_t/g' \ | |
59 | -e 's/__be\([0-9][0-9]*\)/uint\1_t/g' \ | |
fff02bc0 | 60 | -e 's/"\(input-event-codes\.h\)"/"standard-headers\/linux\/\1"/' \ |
eddb4de3 | 61 | -e 's/<linux\/\([^>]*\)>/"standard-headers\/linux\/\1"/' \ |
ed219c40 | 62 | -e 's/__bitwise//' \ |
eddb4de3 PB |
63 | -e 's/__attribute__((packed))/QEMU_PACKED/' \ |
64 | -e 's/__inline__/inline/' \ | |
9f2d175d | 65 | -e 's/__BITS_PER_LONG/HOST_LONG_BITS/' \ |
8e8ee850 | 66 | -e '/\"drm.h\"/d' \ |
eddb4de3 | 67 | -e '/sys\/ioctl.h/d' \ |
ac98fa84 | 68 | -e 's/SW_MAX/SW_MAX_/' \ |
e1c5f1f0 | 69 | -e 's/atomic_t/int/' \ |
d3b7b374 JB |
70 | -e 's/__kernel_long_t/long/' \ |
71 | -e 's/__kernel_ulong_t/unsigned long/' \ | |
72 | -e 's/struct ethhdr/struct eth_header/' \ | |
73 | -e '/\#define _LINUX_ETHTOOL_H/a \\n\#include "net/eth.h"' \ | |
eddb4de3 | 74 | "$f" > "$to/$header"; |
1ff0b555 MT |
75 | } |
76 | ||
2879636d PM |
77 | # This will pick up non-directories too (eg "Kconfig") but we will |
78 | # ignore them in the next loop. | |
79 | ARCHLIST=$(cd "$linux/arch" && echo *) | |
80 | ||
81 | for arch in $ARCHLIST; do | |
82 | # Discard anything which isn't a KVM-supporting architecture | |
b55f546e PM |
83 | if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ] && |
84 | ! [ -e "$linux/arch/$arch/include/uapi/asm/kvm.h" ] ; then | |
2879636d PM |
85 | continue |
86 | fi | |
87 | ||
f717e624 PB |
88 | if [ "$arch" = x86 ]; then |
89 | arch_var=SRCARCH | |
90 | else | |
91 | arch_var=ARCH | |
92 | fi | |
93 | ||
94 | make -C "$linux" INSTALL_HDR_PATH="$tmpdir" $arch_var=$arch headers_install | |
87fdd476 JK |
95 | |
96 | rm -rf "$output/linux-headers/asm-$arch" | |
97 | mkdir -p "$output/linux-headers/asm-$arch" | |
9882d3ef | 98 | for header in kvm.h unistd.h bitsperlong.h; do |
87fdd476 JK |
99 | cp "$tmpdir/include/asm/$header" "$output/linux-headers/asm-$arch" |
100 | done | |
9882d3ef MT |
101 | |
102 | if [ $arch = mips ]; then | |
103 | cp "$tmpdir/include/asm/sgidefs.h" "$output/linux-headers/asm-mips/" | |
104 | fi | |
105 | ||
eddb4de3 PB |
106 | rm -rf "$output/include/standard-headers/asm-$arch" |
107 | mkdir -p "$output/include/standard-headers/asm-$arch" | |
108 | if [ $arch = s390 ]; then | |
eddb4de3 | 109 | cp_portable "$tmpdir/include/asm/virtio-ccw.h" "$output/include/standard-headers/asm-s390/" |
9f2d175d PB |
110 | cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-s390/" |
111 | cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-s390/" | |
eddb4de3 | 112 | fi |
f717e624 PB |
113 | if [ $arch = arm ]; then |
114 | cp "$tmpdir/include/asm/unistd-eabi.h" "$output/linux-headers/asm-arm/" | |
115 | cp "$tmpdir/include/asm/unistd-oabi.h" "$output/linux-headers/asm-arm/" | |
116 | cp "$tmpdir/include/asm/unistd-common.h" "$output/linux-headers/asm-arm/" | |
117 | fi | |
73aa529a | 118 | if [ $arch = x86 ]; then |
1842bdfd MAL |
119 | cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-x86/" |
120 | cp "$tmpdir/include/asm/unistd_x32.h" "$output/linux-headers/asm-x86/" | |
121 | cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-x86/" | |
ec7b1080 | 122 | cp_portable "$tmpdir/include/asm/kvm_para.h" "$output/include/standard-headers/asm-$arch" |
73aa529a | 123 | fi |
87fdd476 JK |
124 | done |
125 | ||
126 | rm -rf "$output/linux-headers/linux" | |
127 | mkdir -p "$output/linux-headers/linux" | |
ec7b1080 | 128 | for header in kvm.h vfio.h vfio_ccw.h vhost.h \ |
9d8ad114 | 129 | psci.h psp-sev.h userfaultfd.h; do |
87fdd476 JK |
130 | cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" |
131 | done | |
ec7b1080 | 132 | |
9882d3ef MT |
133 | rm -rf "$output/linux-headers/asm-generic" |
134 | mkdir -p "$output/linux-headers/asm-generic" | |
135 | for header in unistd.h bitsperlong.h; do | |
136 | cp "$tmpdir/include/asm-generic/$header" "$output/linux-headers/asm-generic" | |
137 | done | |
138 | ||
87fdd476 JK |
139 | if [ -L "$linux/source" ]; then |
140 | cp "$linux/source/COPYING" "$output/linux-headers" | |
141 | else | |
142 | cp "$linux/COPYING" "$output/linux-headers" | |
143 | fi | |
144 | ||
f5bba4ca PM |
145 | # Recent kernel sources split the copyright/license info into multiple |
146 | # files, which we need to copy. This set of licenses is the set that | |
147 | # are referred to by SPDX lines in the headers we currently copy. | |
148 | # We don't copy the Documentation/process/license-rules.rst which | |
149 | # is also referred to by COPYING, since it's explanatory rather than license. | |
150 | if [ -d "$linux/LICENSES" ]; then | |
151 | mkdir -p "$output/linux-headers/LICENSES/preferred" \ | |
152 | "$output/linux-headers/LICENSES/exceptions" | |
153 | for l in preferred/GPL-2.0 preferred/BSD-2-Clause preferred/BSD-3-Clause \ | |
154 | exceptions/Linux-syscall-note; do | |
155 | cp "$linux/LICENSES/$l" "$output/linux-headers/LICENSES/$l" | |
156 | done | |
157 | fi | |
158 | ||
05e492b0 MT |
159 | cat <<EOF >$output/linux-headers/linux/virtio_config.h |
160 | #include "standard-headers/linux/virtio_config.h" | |
161 | EOF | |
162 | cat <<EOF >$output/linux-headers/linux/virtio_ring.h | |
163 | #include "standard-headers/linux/virtio_ring.h" | |
164 | EOF | |
1ff0b555 | 165 | |
eddb4de3 PB |
166 | rm -rf "$output/include/standard-headers/linux" |
167 | mkdir -p "$output/include/standard-headers/linux" | |
039d7c4d MAL |
168 | for i in "$tmpdir"/include/linux/*virtio*.h \ |
169 | "$tmpdir/include/linux/qemu_fw_cfg.h" \ | |
170 | "$tmpdir/include/linux/input.h" \ | |
fff02bc0 | 171 | "$tmpdir/include/linux/input-event-codes.h" \ |
d3b7b374 JB |
172 | "$tmpdir/include/linux/pci_regs.h" \ |
173 | "$tmpdir/include/linux/ethtool.h" "$tmpdir/include/linux/kernel.h" \ | |
174 | "$tmpdir/include/linux/sysinfo.h"; do | |
eddb4de3 PB |
175 | cp_portable "$i" "$output/include/standard-headers/linux" |
176 | done | |
8e8ee850 GH |
177 | mkdir -p "$output/include/standard-headers/drm" |
178 | cp_portable "$tmpdir/include/drm/drm_fourcc.h" \ | |
179 | "$output/include/standard-headers/drm" | |
1ff0b555 | 180 | |
e1c5f1f0 MA |
181 | rm -rf "$output/include/standard-headers/drivers/infiniband/hw/vmw_pvrdma" |
182 | mkdir -p "$output/include/standard-headers/drivers/infiniband/hw/vmw_pvrdma" | |
183 | ||
184 | # Remove the unused functions from pvrdma_verbs.h avoiding the unnecessary | |
185 | # import of several infiniband/networking/other headers | |
186 | tmp_pvrdma_verbs="$tmpdir/pvrdma_verbs.h" | |
187 | # Parse the entire file instead of single lines to match | |
188 | # function declarations expanding over multiple lines | |
189 | # and strip the declarations starting with pvrdma prefix. | |
190 | sed -e '1h;2,$H;$!d;g' -e 's/[^};]*pvrdma[^(| ]*([^)]*);//g' \ | |
191 | "$linux/drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.h" > \ | |
192 | "$tmp_pvrdma_verbs"; | |
193 | ||
194 | for i in "$linux/drivers/infiniband/hw/vmw_pvrdma/pvrdma_ring.h" \ | |
195 | "$linux/drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h" \ | |
196 | "$tmp_pvrdma_verbs"; do \ | |
197 | cp_portable "$i" \ | |
198 | "$output/include/standard-headers/drivers/infiniband/hw/vmw_pvrdma/" | |
199 | done | |
200 | ||
201 | rm -rf "$output/include/standard-headers/rdma/" | |
202 | mkdir -p "$output/include/standard-headers/rdma/" | |
203 | for i in "$tmpdir/include/rdma/vmw_pvrdma-abi.h"; do | |
204 | cp_portable "$i" \ | |
205 | "$output/include/standard-headers/rdma/" | |
206 | done | |
207 | ||
1ff0b555 | 208 | cat <<EOF >$output/include/standard-headers/linux/types.h |
8bc92a76 PM |
209 | /* For QEMU all types are already defined via osdep.h, so this |
210 | * header does not need to do anything. | |
211 | */ | |
1ff0b555 MT |
212 | EOF |
213 | cat <<EOF >$output/include/standard-headers/linux/if_ether.h | |
214 | #define ETH_ALEN 6 | |
215 | EOF | |
216 | ||
87fdd476 | 217 | rm -rf "$tmpdir" |