blob: 8963c391895f38dd8454366802a09c860c5d5373 [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.
Peter Maydell0166f5c2021-12-09 19:45:32 +000012#
13# The script will copy the headers into two target folders:
14#
15# - linux-headers/ for files that are required for compiling for a
16# Linux host. Generally we have these so we can use kernel structs
17# and defines that are more recent than the headers that might be
18# installed on the host system. Usually this script can do simple
19# file copies for these headers.
20#
21# - include/standard-headers/ for files that are used for guest
22# device emulation and are required on all hosts. For instance, we
23# get our definitions of the virtio structures from the Linux
24# kernel headers, but we need those definitions regardless of which
25# host OS we are building for. This script has to be careful to
26# sanitize the headers to remove any use of Linux-specifics such as
27# types like "__u64". This work is done in the cp_portable function.
Jan Kiszka87fdd472011-06-08 18:22:17 +020028
Stefan Weilbbd90802016-05-16 15:23:33 +020029tmpdir=$(mktemp -d)
Alex Bennéeb51ddd92024-05-14 18:42:44 +010030hdrdir="$tmpdir/headers"
31blddir="$tmpdir/build"
Jan Kiszka87fdd472011-06-08 18:22:17 +020032linux="$1"
33output="$2"
34
35if [ -z "$linux" ] || ! [ -d "$linux" ]; then
36 cat << EOF
37usage: update-kernel-headers.sh LINUX_PATH [OUTPUT_PATH]
38
39LINUX_PATH Linux kernel directory to obtain the headers from
40OUTPUT_PATH output directory, usually the qemu source tree (default: $PWD)
41EOF
42 exit 1
43fi
44
45if [ -z "$output" ]; then
46 output="$PWD"
47fi
48
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020049cp_portable() {
50 f=$1
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010051 to=$2
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020052 if
53 grep '#include' "$f" | grep -v -e 'linux/virtio' \
54 -e 'linux/types' \
Vivek Kasireddy4d010862021-05-26 16:14:17 -070055 -e 'linux/ioctl' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020056 -e 'stdint' \
57 -e 'linux/if_ether' \
Paolo Bonzinifff02bc2015-12-15 15:00:27 +010058 -e 'input-event-codes' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020059 -e 'sys/' \
Gerd Hoffmann8e8ee852018-03-13 11:17:28 -060060 -e 'drm.h' \
Jason Barond3b7b372018-03-07 22:25:39 -050061 -e 'limits' \
Eric Farmanab5ec232021-01-04 21:20:55 +010062 -e 'linux/const' \
Jason Barond3b7b372018-03-07 22:25:39 -050063 -e 'linux/kernel' \
64 -e 'linux/sysinfo' \
Michael Roth66210a12024-02-18 23:35:02 -060065 -e 'asm/setup_data.h' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020066 > /dev/null
67 then
68 echo "Unexpected #include in input file $f".
69 exit 2
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010070 fi
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020071
72 header=$(basename "$f");
Peter Maydellc5022c32018-05-25 14:27:51 +010073 sed -e 's/__aligned_u64/__u64 __attribute__((aligned(8)))/g' \
74 -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \
Marcel Apfelbaume1c5f1f2018-02-14 19:35:27 +020075 -e 's/u\([0-9][0-9]*\)/uint\1_t/g' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020076 -e 's/__s\([0-9][0-9]*\)/int\1_t/g' \
77 -e 's/__le\([0-9][0-9]*\)/uint\1_t/g' \
78 -e 's/__be\([0-9][0-9]*\)/uint\1_t/g' \
Paolo Bonzinifff02bc2015-12-15 15:00:27 +010079 -e 's/"\(input-event-codes\.h\)"/"standard-headers\/linux\/\1"/' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020080 -e 's/<linux\/\([^>]*\)>/"standard-headers\/linux\/\1"/' \
Michael Roth66210a12024-02-18 23:35:02 -060081 -e 's/<asm\/\([^>]*\)>/"standard-headers\/asm-'$arch'\/\1"/' \
Michael S. Tsirkined219c42017-01-13 18:18:35 +020082 -e 's/__bitwise//' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020083 -e 's/__attribute__((packed))/QEMU_PACKED/' \
84 -e 's/__inline__/inline/' \
Paolo Bonzini9f2d1752018-03-13 09:38:18 +010085 -e 's/__BITS_PER_LONG/HOST_LONG_BITS/' \
Gerd Hoffmann8e8ee852018-03-13 11:17:28 -060086 -e '/\"drm.h\"/d' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020087 -e '/sys\/ioctl.h/d' \
Vivek Kasireddy4d010862021-05-26 16:14:17 -070088 -e '/linux\/ioctl.h/d' \
Markus Armbrusterac98fa82015-10-08 18:11:39 +020089 -e 's/SW_MAX/SW_MAX_/' \
Marcel Apfelbaume1c5f1f2018-02-14 19:35:27 +020090 -e 's/atomic_t/int/' \
Jason Barond3b7b372018-03-07 22:25:39 -050091 -e 's/__kernel_long_t/long/' \
92 -e 's/__kernel_ulong_t/unsigned long/' \
93 -e 's/struct ethhdr/struct eth_header/' \
94 -e '/\#define _LINUX_ETHTOOL_H/a \\n\#include "net/eth.h"' \
Paolo Bonzinieddb4de2015-09-09 15:25:52 +020095 "$f" > "$to/$header";
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +010096}
97
Peter Maydell28796362012-07-18 11:11:09 +010098# This will pick up non-directories too (eg "Kconfig") but we will
99# ignore them in the next loop.
100ARCHLIST=$(cd "$linux/arch" && echo *)
101
102for arch in $ARCHLIST; do
103 # Discard anything which isn't a KVM-supporting architecture
Peter Maydellb55f5462012-10-22 12:54:39 +0100104 if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ] &&
105 ! [ -e "$linux/arch/$arch/include/uapi/asm/kvm.h" ] ; then
Peter Maydell28796362012-07-18 11:11:09 +0100106 continue
107 fi
108
Paolo Bonzinif717e622017-02-21 13:29:19 +0100109 if [ "$arch" = x86 ]; then
110 arch_var=SRCARCH
111 else
112 arch_var=ARCH
113 fi
114
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100115 make -C "$linux" O="$blddir" INSTALL_HDR_PATH="$hdrdir" $arch_var=$arch headers_install
Jan Kiszka87fdd472011-06-08 18:22:17 +0200116
117 rm -rf "$output/linux-headers/asm-$arch"
118 mkdir -p "$output/linux-headers/asm-$arch"
Zhang Yi02898812019-02-08 18:10:49 +0800119 for header in kvm.h unistd.h bitsperlong.h mman.h; do
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100120 cp "$hdrdir/include/asm/$header" "$output/linux-headers/asm-$arch"
Jan Kiszka87fdd472011-06-08 18:22:17 +0200121 done
Michael S. Tsirkin9882d3e2018-03-20 23:01:04 +0200122
123 if [ $arch = mips ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100124 cp "$hdrdir/include/asm/sgidefs.h" "$output/linux-headers/asm-mips/"
125 cp "$hdrdir/include/asm/unistd_o32.h" "$output/linux-headers/asm-mips/"
126 cp "$hdrdir/include/asm/unistd_n32.h" "$output/linux-headers/asm-mips/"
127 cp "$hdrdir/include/asm/unistd_n64.h" "$output/linux-headers/asm-mips/"
Paolo Bonzinia0a6ef92019-01-04 09:27:30 +0100128 fi
129 if [ $arch = powerpc ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100130 cp "$hdrdir/include/asm/unistd_32.h" "$output/linux-headers/asm-powerpc/"
131 cp "$hdrdir/include/asm/unistd_64.h" "$output/linux-headers/asm-powerpc/"
Michael S. Tsirkin9882d3e2018-03-20 23:01:04 +0200132 fi
133
Paolo Bonzinieddb4de2015-09-09 15:25:52 +0200134 rm -rf "$output/include/standard-headers/asm-$arch"
135 mkdir -p "$output/include/standard-headers/asm-$arch"
136 if [ $arch = s390 ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100137 cp_portable "$hdrdir/include/asm/virtio-ccw.h" "$output/include/standard-headers/asm-s390/"
138 cp "$hdrdir/include/asm/unistd_32.h" "$output/linux-headers/asm-s390/"
139 cp "$hdrdir/include/asm/unistd_64.h" "$output/linux-headers/asm-s390/"
Paolo Bonzinieddb4de2015-09-09 15:25:52 +0200140 fi
Paolo Bonzinif717e622017-02-21 13:29:19 +0100141 if [ $arch = arm ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100142 cp "$hdrdir/include/asm/unistd-eabi.h" "$output/linux-headers/asm-arm/"
143 cp "$hdrdir/include/asm/unistd-oabi.h" "$output/linux-headers/asm-arm/"
144 cp "$hdrdir/include/asm/unistd-common.h" "$output/linux-headers/asm-arm/"
Paolo Bonzinif717e622017-02-21 13:29:19 +0100145 fi
Cornelia Huckb1b9e0d2019-05-21 16:56:30 +0200146 if [ $arch = arm64 ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100147 cp "$hdrdir/include/asm/sve_context.h" "$output/linux-headers/asm-arm64/"
Cornelia Huckb1b9e0d2019-05-21 16:56:30 +0200148 fi
Paolo Bonzini73aa5292015-09-09 15:25:52 +0200149 if [ $arch = x86 ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100150 cp "$hdrdir/include/asm/unistd_32.h" "$output/linux-headers/asm-x86/"
151 cp "$hdrdir/include/asm/unistd_x32.h" "$output/linux-headers/asm-x86/"
152 cp "$hdrdir/include/asm/unistd_64.h" "$output/linux-headers/asm-x86/"
153 cp_portable "$hdrdir/include/asm/kvm_para.h" "$output/include/standard-headers/asm-$arch"
Li Zhijian06e02592019-01-17 20:49:03 +0800154 # Remove everything except the macros from bootparam.h avoiding the
155 # unnecessary import of several video/ist/etc headers
156 sed -e '/__ASSEMBLY__/,/__ASSEMBLY__/d' \
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100157 "$hdrdir/include/asm/bootparam.h" > "$hdrdir/bootparam.h"
158 cp_portable "$hdrdir/bootparam.h" \
Li Zhijian06e02592019-01-17 20:49:03 +0800159 "$output/include/standard-headers/asm-$arch"
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100160 cp_portable "$hdrdir/include/asm/setup_data.h" \
Michael Roth66210a12024-02-18 23:35:02 -0600161 "$output/standard-headers/asm-x86"
Paolo Bonzini73aa5292015-09-09 15:25:52 +0200162 fi
Daniel Henrique Barboza1583ca82023-12-18 17:43:19 -0300163 if [ $arch = riscv ]; then
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100164 cp "$hdrdir/include/asm/ptrace.h" "$output/linux-headers/asm-riscv/"
Daniel Henrique Barboza1583ca82023-12-18 17:43:19 -0300165 fi
Jan Kiszka87fdd472011-06-08 18:22:17 +0200166done
Michael Roth66210a12024-02-18 23:35:02 -0600167arch=
Jan Kiszka87fdd472011-06-08 18:22:17 +0200168
169rm -rf "$output/linux-headers/linux"
170mkdir -p "$output/linux-headers/linux"
David 'Digit' Turner9fc7dd22023-04-05 19:21:08 +0200171for header in const.h stddef.h kvm.h vfio.h vfio_ccw.h vfio_zdev.h vhost.h \
Eric Auger8cba58b2023-10-09 11:09:03 +0200172 psci.h psp-sev.h userfaultfd.h memfd.h mman.h nvme_ioctl.h \
Michael Rothb40b8eb2024-02-21 10:51:38 -0600173 vduse.h iommufd.h bits.h; do
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100174 cp "$hdrdir/include/linux/$header" "$output/linux-headers/linux"
Jan Kiszka87fdd472011-06-08 18:22:17 +0200175done
Michael S. Tsirkinec7b1082018-04-17 21:42:21 +0300176
Michael S. Tsirkin9882d3e2018-03-20 23:01:04 +0200177rm -rf "$output/linux-headers/asm-generic"
178mkdir -p "$output/linux-headers/asm-generic"
Zhang Yi02898812019-02-08 18:10:49 +0800179for header in unistd.h bitsperlong.h mman-common.h mman.h hugetlb_encode.h; do
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100180 cp "$hdrdir/include/asm-generic/$header" "$output/linux-headers/asm-generic"
Michael S. Tsirkin9882d3e2018-03-20 23:01:04 +0200181done
182
Jan Kiszka87fdd472011-06-08 18:22:17 +0200183if [ -L "$linux/source" ]; then
184 cp "$linux/source/COPYING" "$output/linux-headers"
185else
186 cp "$linux/COPYING" "$output/linux-headers"
187fi
188
Peter Maydellf5bba4c2018-05-25 14:27:52 +0100189# Recent kernel sources split the copyright/license info into multiple
190# files, which we need to copy. This set of licenses is the set that
191# are referred to by SPDX lines in the headers we currently copy.
192# We don't copy the Documentation/process/license-rules.rst which
193# is also referred to by COPYING, since it's explanatory rather than license.
194if [ -d "$linux/LICENSES" ]; then
195 mkdir -p "$output/linux-headers/LICENSES/preferred" \
196 "$output/linux-headers/LICENSES/exceptions"
197 for l in preferred/GPL-2.0 preferred/BSD-2-Clause preferred/BSD-3-Clause \
198 exceptions/Linux-syscall-note; do
199 cp "$linux/LICENSES/$l" "$output/linux-headers/LICENSES/$l"
200 done
201fi
202
Michael S. Tsirkin05e492b2015-02-16 22:36:32 +0100203cat <<EOF >$output/linux-headers/linux/virtio_config.h
204#include "standard-headers/linux/virtio_config.h"
205EOF
206cat <<EOF >$output/linux-headers/linux/virtio_ring.h
207#include "standard-headers/linux/virtio_ring.h"
208EOF
Paolo Bonzinia0a6ef92019-01-04 09:27:30 +0100209cat <<EOF >$output/linux-headers/linux/vhost_types.h
210#include "standard-headers/linux/vhost_types.h"
211EOF
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +0100212
Paolo Bonzinieddb4de2015-09-09 15:25:52 +0200213rm -rf "$output/include/standard-headers/linux"
214mkdir -p "$output/include/standard-headers/linux"
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100215for i in "$hdrdir"/include/linux/*virtio*.h \
216 "$hdrdir/include/linux/qemu_fw_cfg.h" \
217 "$hdrdir/include/linux/fuse.h" \
218 "$hdrdir/include/linux/input.h" \
219 "$hdrdir/include/linux/input-event-codes.h" \
220 "$hdrdir/include/linux/udmabuf.h" \
221 "$hdrdir/include/linux/pci_regs.h" \
222 "$hdrdir/include/linux/ethtool.h" \
223 "$hdrdir/include/linux/const.h" \
224 "$hdrdir/include/linux/kernel.h" \
225 "$hdrdir/include/linux/vhost_types.h" \
226 "$hdrdir/include/linux/sysinfo.h" \
227 "$hdrdir/include/misc/pvpanic.h"; do
Paolo Bonzinieddb4de2015-09-09 15:25:52 +0200228 cp_portable "$i" "$output/include/standard-headers/linux"
229done
Gerd Hoffmann8e8ee852018-03-13 11:17:28 -0600230mkdir -p "$output/include/standard-headers/drm"
Alex Bennéeb51ddd92024-05-14 18:42:44 +0100231cp_portable "$hdrdir/include/drm/drm_fourcc.h" \
Gerd Hoffmann8e8ee852018-03-13 11:17:28 -0600232 "$output/include/standard-headers/drm"
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +0100233
234cat <<EOF >$output/include/standard-headers/linux/types.h
Peter Maydell8bc92a72016-02-23 14:18:31 +0000235/* For QEMU all types are already defined via osdep.h, so this
236 * header does not need to do anything.
237 */
Michael S. Tsirkin1ff0b552015-02-16 22:35:25 +0100238EOF
239cat <<EOF >$output/include/standard-headers/linux/if_ether.h
240#define ETH_ALEN 6
241EOF
242
Jan Kiszka87fdd472011-06-08 18:22:17 +0200243rm -rf "$tmpdir"