]> git.sesse.net Git - bcachefs-tools-debian/blob - bch_bindgen/build.rs
1baa2666b8f878b23ba06ee493d222db27894cc8
[bcachefs-tools-debian] / bch_bindgen / build.rs
1 #[derive(Debug)]
2 pub struct Fix753 {}
3 impl bindgen::callbacks::ParseCallbacks for Fix753 {
4     fn item_name(&self, original_item_name: &str) -> Option<String> {
5         Some(original_item_name.trim_start_matches("Fix753_").to_owned())
6     }
7 }
8
9 fn main() {
10     use std::path::PathBuf;
11
12     println!("cargo:rerun-if-changed=src/libbcachefs_wrapper.h");
13
14     let out_dir: PathBuf = std::env::var_os("OUT_DIR")
15         .expect("ENV Var 'OUT_DIR' Expected")
16         .into();
17     let top_dir: PathBuf = std::env::var_os("CARGO_MANIFEST_DIR")
18         .expect("ENV Var 'CARGO_MANIFEST_DIR' Expected")
19         .into();
20
21     let urcu = pkg_config::probe_library("liburcu").expect("Failed to find urcu lib");
22     let bindings = bindgen::builder()
23         .formatter(bindgen::Formatter::Prettyplease)
24         .header(
25             top_dir
26                 .join("src")
27                 .join("libbcachefs_wrapper.h")
28                 .display()
29                 .to_string(),
30         )
31         .clang_args(
32             urcu
33                 .include_paths
34                 .iter()
35                 .map(|p| format!("-I{}", p.display())),
36         )
37         .clang_arg("-I..")
38         .clang_arg("-I../c_src")
39         .clang_arg("-I../include")
40         .clang_arg("-DZSTD_STATIC_LINKING_ONLY")
41         .clang_arg("-DNO_BCACHEFS_FS")
42         .clang_arg("-D_GNU_SOURCE")
43         .clang_arg("-DRUST_BINDGEN")
44         .clang_arg("-fkeep-inline-functions")
45         .derive_debug(true)
46         .derive_default(true)
47         .layout_tests(true)
48         .default_enum_style(bindgen::EnumVariation::Rust {
49             non_exhaustive: true,
50         })
51         .allowlist_function("bcachefs_usage")
52         .allowlist_function("raid_init")
53         .allowlist_function("cmd_.*")
54         .allowlist_function(".*_cmds")
55         .allowlist_function(".*bch2_.*")
56         .allowlist_function("bcache_fs_open")
57         .allowlist_function("bcache_fs_close")
58         .allowlist_function("bio_.*")
59         .allowlist_function("derive_passphrase")
60         .allowlist_function("request_key")
61         .allowlist_function("add_key")
62         .allowlist_function("keyctl_search")
63         .allowlist_function("match_string")
64         .allowlist_function("printbuf.*")
65         .blocklist_type("rhash_lock_head")
66         .blocklist_type("srcu_struct")
67         .allowlist_var("BCH_.*")
68         .allowlist_var("KEY_SPEC_.*")
69         .allowlist_var("Fix753_.*")
70         .allowlist_var("bch.*")
71         .allowlist_var("__bch2.*")
72         .allowlist_var("__BTREE_ITER.*")
73         .allowlist_var("BTREE_ITER.*")
74         .blocklist_item("bch2_bkey_ops")
75         .allowlist_type("bch_.*")
76         .allowlist_type("fsck_err_opts")
77         .rustified_enum("fsck_err_opts")
78         .allowlist_type("nonce")
79         .no_debug("bch_replicas_padded")
80         .newtype_enum("bch_kdf_types")
81         .rustified_enum("bch_key_types")
82         .opaque_type("gendisk")
83         .opaque_type("gc_stripe")
84         .opaque_type("open_bucket.*")
85         .opaque_type("replicas_delta_list")
86         .no_copy("btree_trans")
87         .no_copy("printbuf")
88         .no_partialeq("bkey")
89         .no_partialeq("bpos")
90         .generate_inline_functions(true)
91         .parse_callbacks(Box::new(Fix753 {}))
92         .generate()
93         .expect("BindGen Generation Failiure: [libbcachefs_wrapper]");
94
95     std::fs::write(
96         out_dir.join("bcachefs.rs"),
97         packed_and_align_fix(bindings.to_string()),
98     )
99     .expect("Writing to output file failed for: `bcachefs.rs`");
100
101     let keyutils = pkg_config::probe_library("libkeyutils").expect("Failed to find keyutils lib");
102     let bindings = bindgen::builder()
103         .header(
104             top_dir
105                 .join("src")
106                 .join("keyutils_wrapper.h")
107                 .display()
108                 .to_string(),
109         )
110         .clang_args(
111             keyutils
112                 .include_paths
113                 .iter()
114                 .map(|p| format!("-I{}", p.display())),
115         )
116         .generate()
117         .expect("BindGen Generation Failiure: [Keyutils]");
118     bindings
119         .write_to_file(out_dir.join("keyutils.rs"))
120         .expect("Writing to output file failed for: `keyutils.rs`");
121 }
122
123 // rustc has a limitation where it does not allow structs with a "packed" attribute to contain a
124 // member with an "align(N)" attribute. There is one type in bcachefs with this issue:
125 // struct btree_node.
126 //
127 // Luckily, it happens that this type does not need the "packed(N)" attribute in Rust to have the
128 // same ABI as C, so we can strip it off the bindgen output.
129 fn packed_and_align_fix(bindings: std::string::String) -> std::string::String {
130     bindings.replace(
131         "#[repr(C, packed(8))]\npub struct btree_node {",
132         "#[repr(C, align(8))]\npub struct btree_node {",
133     )
134 }