No description
Find a file
2025-03-02 18:19:26 +01:00
.vscode vscode: Add "rust-project.json" conf 2025-03-01 19:50:16 +01:00
01_basic_module try implement 02_module_params in rust 2025-03-02 17:51:18 +01:00
02_module_params try implement 02_module_params in rust 2025-03-02 17:51:18 +01:00
03_character_device Merge c and rust modules 2025-03-01 18:01:07 +01:00
04_process_monitor Merge c and rust modules 2025-03-01 18:01:07 +01:00
05_packet_filter Merge c and rust modules 2025-03-01 18:01:07 +01:00
06_virtual_led_basic Merge c and rust modules 2025-03-01 18:01:07 +01:00
07_virtual_leds_more_complex Merge c and rust modules 2025-03-01 18:01:07 +01:00
08_gpio_pin_rpi3 Merge c and rust modules 2025-03-01 18:01:07 +01:00
09_gpio_led_rpi3 Merge c and rust modules 2025-03-01 18:01:07 +01:00
10_lightning_node_pro_led 10_lightning_node_pro_led: First working binded module 2025-03-02 18:19:26 +01:00
.clang-format Run clang-format 2025-02-25 13:32:53 +01:00
.envrc fix bad shell 2025-02-23 12:42:11 +01:00
.gitignore Begin add usb driver 2025-03-01 18:04:30 +01:00
flake.lock Apply new nixos version 2025-02-26 18:54:09 +01:00
flake.nix Add missing RUST_LIB_SRC 2025-03-01 18:48:13 +01:00
README.md Add my issue 2025-03-01 19:42:58 +01:00

Setup env

On NixOS:

  • Ensure Linux Kernel is the same as you configuration. Use this command to update nix inputs
nix flake update --override-input nixpkgs "github:NixOS/nixpkgs/$(nixos-version --revision)"
  • Use direnv allow or nix develop to setup shell.

On other distros:

  1. With direnv, in .envrc, change line by use flake .#other

  2. With nix only, use nix develop .#other

  3. Otherwise, you need kernel-devel to compile C code and rust rust-src bindgen-cli rustfmt clippy to compile rust And also to setup LINUX_MODULES_FOLDER to linux modules folder of your distro (ex: /lib/modules/$(uname -r)) in your shell (ex: .bashrc)

Note for Rust

Check required kernel conf CONFIG_RUST=y

cat /boot/config-$(uname -r) | grep CONFIG_RUST

Generate rust-analyzer conf

make -C $LINUX_MODULES_FOLDER/build M=$(pwd) rust-analyzer

make : targets list

  • all : Compiling kernel (by default)
  • clean : Cleaning build folder

All subfolder is configured to use LINUX_MODULES_FOLDER env variable set by flake develop

How test module

Step 1: Load module

sudo insmod [module_name].ko

Warning: Can fail if secure boot is enabled (see notes about secure boot in below)

Step 2: Check logs

sudo dmesg | tail

Step 3: Unload module

sudo rmmod [module_name].ko

Notes

Find required headers files

nix shell nixpkgs#bear
cd 01_basic_module/
bear --append --output ../.vscode/compile_commands.json -- make -C $LINUX_MODULES_FOLDER/build M=$PWD modules

Search -I args and -D args

Sign kernel module for testing with secure boot enabled

Prerequisites: Own secure boot keys configured.

Secure boot keys can be found in :

  • Fedora : /etc/pki/akmods
  • With sbctl : /var/lib/sbctl
sign-file sha256 $SECUREBOOT_KEYS_PATH/private_key.priv $SECUREBOOT_KEYS_PATH/public_key.der <module_file>.ko

sign-file executable is in /usr/src/kernels/$(uname -r)/scripts

Full example (run as root):

  1. Fedora
/usr/src/kernels/$(uname -r)/scripts/sign-file sha256 /etc/pki/akmods/private/private_key.priv /etc/pki/akmods/certs/public_key.der <module_file>.ko

Format

  1. .clang-format

How update .clang-format

curl https://raw.githubusercontent.com/torvalds/linux/refs/heads/master/.clang-format -o .clang-format

Format files

clang-format -i **/*.c