This page covers how to configure a new kernel feature as a GKI module or configure an existing built-in kernel feature as a GKI module.
Configure a new feature as a GKI module
For the new feature, edit
gki_defconfig
and set the required kernel feature’s config item fromn
tom
(=m
). Set this setting in botharch/arm64/configs/gki_defconfig
andarch/x86/configs/gki_defconfig
.Add the KO (
.ko
) files generated for the feature to theCOMMON_GKI_MODULES_LIST
section ofcommon/modules.bzl
. Add the files in a sorted order. If you're unsure of all the files generated, the build fails and lists all the necessary KO files to be added to the list.Add the same set of KO files from step 2, sorted in ascending order for binary search at runtime, to
common/android/gki_{ARCH}_protected_modules
to designate the module as a protected GKI module. Update the list of exports that are protected to include ones from the newly added module in thecommon/android/abi_gki_protected_exports_{ARCH}
usingtools/bazel run //common:kernel_aarch64_abi_update_protected_exports
foraarch64
. Modules designated as protected GKI modules still must be approved by Google to be official protected modules.Make sure newly added KO files from step 2 are copied to the kernel's
out/<androidX-Y.Z>/dist/system_dlkm.img
andout/androidX-Y.Z/dist/system_dlkm_staging_archive.tar.gz
. Modules in thesystem_dlkm_staging_archive.tar.gz
archive can be used as input to generate thesystem_dlkm.img
in the platform build.Submit your changes for review. GKI modules are an Android-only kernel feature, so module conversion patches aren't required to be submitted upstream. However, you must follow other guidelines to submit Android Common Kernel (ACK) patches.
Configure a kernel built-in feature as a GKI module
For an existing built-in kernel feature, edit
gki_defconfig
and set the required kernel feature's config item fromy
tom
(=m
). Set this setting in botharch/arm64/configs/gki_defconfig
andarch/x86/configs/gki_defconfig
.Add the KO (
.ko
) files generated for the feature to theCOMMON_GKI_MODULES_LIST
section ofcommon/modules.bzl
. Add the files in a sorted order. If you're unsure of all the files generated, the build fails and lists all the necessary KO files to be added to the list.Add the same set of KO files from step 2, sorted in ascending order for binary search at runtime, to
common/android/gki_{ARCH}_protected_modules
to designate the module as a protected GKI module. Update the list of exports that are protected to include ones from the newly added module in thecommon/android/abi_gki_protected_exports_{ARCH}
usingtools/bazel run //common:kernel_aarch64_abi_update_protected_exports
foraarch64
. Modules designated as protected GKI modules still must be approved by Google to be official protected modules.Make sure newly converted module KO files from step 2 are copied to the kernel's
out/<androidX-Y.Z>/dist/system_dlkm.img
andout/androidX-Y.Z/dist/system_dlkm_staging_archive.tar.gz
. Modules in thesystem_dlkm_staging_archive.tar.gz
archive can be used as input to generate thesystem_dlkm.img
in the platform build.Submit your changes for review. GKI modules are an Android-only kernel feature, so module conversion patches aren't required to be submitted upstream. However, you must follow the other guidelines to submit Android Common Kernel (ACK) patches.
Convert a protected GKI module to unprotected
Remove the module being converted from protected to unprotected from the list of protected modules at
common/android/gki_protected_modules
.Update the list of exports that are protected to exclude ones from the newly converted unprotected module in the
common/android/abi_gki_protected_exports_{ARCH}
usingtools/bazel run //common:kernel_aarch64_abi_update_protected_exports
foraarch64
.Submit your changes for review. GKI modules are an Android-only kernel feature, so module conversion patches aren't required to be submitted upstream. However, you must follow the other guidelines to submit Android Common Kernel (ACK) patches.
GKI modules symbol violation resolution quick guide
When unsigned modules violate the symbol protection in place for GKI modules, two types of errors may be encountered during module loading, resulting in failure.
1. Unsigned module using the protected symbol
Error:
module: Protected symbol: some_kernel_function (err -13)
Cause:
The module.ko
file is an unsigned vendor module and attempts to resolve the
GKI module exported symbol some_kernel_function
during loading, without
being listed in the vendor symbol list.
Resolution:
If module.ko
is not a protected GKI module, updating the symbol list will
resolve the error by including some_kernel_function
in the vendor symbol list.
Alternatively, use the GKI version of module.ko
.
2. Unsigned module exporting the protected symbol
Error:
module: exports protected symbol some_kernel_function
Cause:
The module exporting the some_kernel_function
is a protected GKI module, and
module.ko
is likely an unsigned custom version of that module. When
module.ko
tries to export some_kernel_function
, which can only be exported
by a signed GKI module, loading fails with this message.
Resolution:
This can be corrected by using the GKI version of the module that exports
some_kernel_function
, if the unsigned module is a custom version.