https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=265528
--- Comment #10 from commit-h...@freebsd.org --- A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=4a04e0a6c703db9d2d9e6a0ef2b000644143b705 commit 4a04e0a6c703db9d2d9e6a0ef2b000644143b705 Author: Vladimir Kondratyev <w...@freebsd.org> AuthorDate: 2025-08-17 21:00:45 +0000 Commit: Vladimir Kondratyev <w...@freebsd.org> CommitDate: 2025-08-17 21:00:45 +0000 u2f(4): a HID driver for FIDO/U2F security keys While FIDO/U2F keys were already supported by the generic uhid(4) and hidraw(4) drivers, this driver adds some additional features an does steps to tighten the security of FIDO/U2F access. - It automatically loads through devd. - Automatically enables HQ_NO_READAHEAD for FIDO/U2F devices. - Implements only miminum set of features. - Do not requires external devfs configuration to set character device permissions. - Names character device as u2f/# to make possible capsicum or any other pledge()-style sandboxing. PR: 265528 Differential Revision: https://reviews.freebsd.org/D51612 share/man/man4/Makefile | 1 + share/man/man4/u2f.4 (new) | 93 ++++++ sys/amd64/conf/GENERIC | 1 + sys/arm/conf/GENERIC | 1 + sys/arm64/conf/std.dev | 1 + sys/conf/NOTES | 2 + sys/conf/files | 1 + sys/conf/options | 1 + sys/dev/hid/u2f.c (new) | 590 +++++++++++++++++++++++++++++++++++++ sys/i386/conf/GENERIC | 1 + sys/modules/hid/Makefile | 1 + sys/modules/hid/u2f/Makefile (new) | 8 + sys/powerpc/conf/GENERIC64 | 1 + sys/powerpc/conf/GENERIC64LE | 1 + sys/riscv/conf/GENERIC | 1 + 15 files changed, 704 insertions(+) -- You are receiving this mail because: You are on the CC list for the bug.