crosvm/virtio_sys/bindgen.sh
Daniel Verkamp 74f1ca4e78 bindgen: update bindings to Linux 5.15
This requires a few tweaks to non-generated code:
- VIRTIO_ID_VIDEO_ENC/DEC -> ENCODER/DECODER
- io_uring unnamed union layout change

Change-Id: I58e118efa5c6bf28ff56d211fec5603651cb60bc
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3893753
Reviewed-by: Alexandre Courbot <acourbot@chromium.org>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
2022-09-14 22:09:30 +00:00

86 lines
2.7 KiB
Bash
Executable file

#!/usr/bin/env bash
# Copyright 2022 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Regenerate virtio_sys bindgen bindings.
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")/.."
source tools/impl/bindgen-common.sh
VIRTIO_NET_EXTRA="// Added by virtio_sys/bindgen.sh
use data_model::DataInit;
// Safe because virtio_net_hdr_mrg_rxbuf has no implicit padding.
unsafe impl DataInit for virtio_net_hdr_mrg_rxbuf {}"
bindgen_generate \
--allowlist-type='vhost_.*' \
--allowlist-var='VHOST_.*' \
"${BINDGEN_LINUX_X86_HEADERS}/include/linux/vhost.h" \
-- \
-isystem "${BINDGEN_LINUX_X86_HEADERS}/include" \
| replace_linux_int_types \
> virtio_sys/src/vhost.rs
bindgen_generate \
--allowlist-var='VIRTIO_.*' \
--allowlist-type='virtio_.*' \
"${BINDGEN_LINUX_X86_HEADERS}/include/linux/virtio_config.h" \
-- \
-isystem "${BINDGEN_LINUX_X86_HEADERS}/include" \
| replace_linux_int_types \
> virtio_sys/src/virtio_config.rs
VIRTIO_IDS_EXTRAS="
//! This file defines virtio device IDs. IDs with large values (counting down
//! from 63) are nonstandard and not defined by the virtio specification.
// Added by virtio_sys/bindgen.sh - do not edit the generated file.
// TODO(abhishekbh): Fix this after this device is accepted upstream.
pub const VIRTIO_ID_VHOST_USER: u32 = 61;
"
bindgen_generate \
--raw-line "${VIRTIO_IDS_EXTRAS}" \
--allowlist-var='VIRTIO_ID_.*' \
--allowlist-type='virtio_.*' \
"${BINDGEN_LINUX_X86_HEADERS}/include/linux/virtio_ids.h" \
-- \
-isystem "${BINDGEN_LINUX_X86_HEADERS}/include" \
| replace_linux_int_types \
| rustfmt \
> virtio_sys/src/virtio_ids.rs
bindgen_generate \
--raw-line "${VIRTIO_NET_EXTRA}" \
--allowlist-var='VIRTIO_NET_.*' \
--allowlist-type='virtio_net_.*' \
--blocklist-type='virtio_net_ctrl_mac' \
"${BINDGEN_LINUX_X86_HEADERS}/include/linux/virtio_net.h" \
-- \
-isystem "${BINDGEN_LINUX_X86_HEADERS}/include" \
| replace_linux_int_types \
> virtio_sys/src/virtio_net.rs
bindgen_generate \
--allowlist-var='VRING_.*' \
--allowlist-var='VIRTIO_RING_.*' \
--allowlist-type='vring.*' \
"${BINDGEN_LINUX_X86_HEADERS}/include/linux/virtio_ring.h" \
-- \
-isystem "${BINDGEN_LINUX_X86_HEADERS}/include" \
| replace_linux_int_types \
> virtio_sys/src/virtio_ring.rs
bindgen_generate \
--allowlist-var='VIRTIO_.*' \
--allowlist-type='virtio_.*' \
"${BINDGEN_LINUX_X86_HEADERS}/include/linux/virtio_mmio.h" \
-- \
-isystem "${BINDGEN_LINUX_X86_HEADERS}/include" \
| replace_linux_int_types \
> virtio_sys/src/virtio_mmio.rs