Commit Graph

23774 Commits

Author SHA1 Message Date
Konstantin Belousov 1ecf01065b libuvmem: usermode port of vmem(9)
The quantum cache is disabled, there is no uma.

Intent is to use this for resource allocation in bhyve(8), for start.
Addition of -luvmem to bhyve linking was done to test changes to share/mk.

Reviewed by:	bnovkov, markj
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D27220
2025-12-02 05:41:13 +02:00
Diane Bruce 791c531402 Fintek F81232 USB to serial driver
Driver for Feature Integration Technology Inc. (aka Fintek)
F81232 USB to serial driver.

Reviewed by:	thj,adrian,UB
Approved by:	adrian
Differential Revision:	https://reviews.freebsd.org/D53893
2025-12-01 20:15:37 -05:00
Vladimir Kondratyev b6cad334e6 hid: Make game controllers accessible to members of the game group
Their events have to be accessible by unprivileged users via e.g. libsdl.

MFC after:	1 month
2025-12-01 23:42:15 +03:00
Robert Clausecker 5bfdb66ad9 man/man3: add cross references to stdbit(3)
Add cross references to relevant stdbit man pages

Approved by:	markj (mentor)
MFC after:	1 month
Differential Revision: https://reviews.freebsd.org/D53661
2025-11-30 20:21:52 +01:00
Robert Clausecker d39e310c7d man/man3: add stdbit.3
This is the overview man page for the <stdbit.h> functions.

Reviewed by:	pauamma@gundo.com, adrian
Approved by:	markj (mentor)
MFC after:	1 month
Differential Revision:	https://reviews.freebsd.org/D53658
2025-11-30 20:21:52 +01:00
Robert Clausecker 233ddc56a7 unreachable.3: add missing brace in example
Reported by:	alc
Approved by:	markj (mentor)
MFC after:	1 month
Fixes:		b381d09802
See also:	D53967
2025-11-28 22:59:30 +01:00
Warner Losh 687ab0dc54 umass(4): Update to include pointers to quirks
umass(4), while much improved, still sometimes need quirks. Add a
pointer to usb_quirk(4) and usbconfig(8).

Sponsored by:		Netflix
2025-11-28 13:53:13 -07:00
Robert Clausecker b381d09802 stddef.h: add unreachable() for C23 compliance
unreachable() is a hint to the compiler that it is unreachable.
Add a new man page unreachable(3) to document this macro.

Reviewed by:	imp
Approved by:	markj (mentor)
MFC after:	1 month
Differential Revision:	https://reviews.freebsd.org/D53967
2025-11-28 16:56:49 +01:00
Dag-Erling Smørgrav 330d4437f2 bus: Add device_has_children predicate
Add a device_has_children() function which can be used to check if a
device has children without allocating a list of them which we aren't
going to use, or even counting them.

Also modify device_get_children() so it can be used to query the count
without allocating a list.

MFC after:	1 week
Sponsored by:	Klara, Inc.
Sponsored by:	NetApp, Inc.
Reviewed by:	imp, markj
Differential Revision:	https://reviews.freebsd.org/D53918
2025-11-28 10:17:09 +01:00
Konstantin Belousov e60861eb41 bsd.lib.mk: document INTERNALLIB and PRIVATELIB
Reviewed by:	des, dim, emaste
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D53948
2025-11-27 21:53:19 +02:00
Brooks Davis dca634d154 new type: ptraddr_t
ptraddr_t is an unsigned integer type that can hold the address of any
pointer.  It differes from uintptr_t in that it does not carry
provenance which is useful for CHERI in that it can disambigurate the
provenance of uintptr_t expressions.  It differes from size_t in that
some segmented architecture (not supported by FreeBSD) may have a size_t
that does not hold an address.

ptraddr_t is not yet standardized, but is currently proposed for
inclusion in C++2Y.

Prefer the compiler defined __PTRADDR_TYPE__ defintion where available
as this a new type and we don't need to worry about historical values.
Fall back to __size_t where unavailable.

Reviewed by:	kib, markj
Effort:		CHERI upstreaming
Sponsored by:	Innovate UK
Differential Revision:	https://reviews.freebsd.org/D53817
2025-11-27 14:54:55 +00:00
ykla 5fd8a01e9b man: RealTek -> Realtek
Realtek changed how it styled its name 25 or so years ago, but the old
style persisted in many places. These products use the new styling in
their datasheets.

Signed-off-by: ykla yklaxds@gmail.com
Sponsored by: Chinese FreeBSD Community
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1901
2025-11-26 23:19:22 -07:00
Ed Maste 35232d8edb papers: Retire phkmalloc paper
It has not been installed since commit cdc3795316 ("In preparation for
the removal of the roff toolchain, disconnect the") and turned up in
a search for outdated MALLOC_OPTIONS settings.

The rendered paper is available at
https://papers.freebsd.org/1998/phk-malloc

PR:		287357
Reviewed by:	bapt
Event:		Kitchener-Waterloo Hackathon 202506
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D50908
2025-11-26 19:21:08 -05:00
Goran Mekić ebf1d98d60 sound examples: Fix buffer mapping/allocation
The buffer in struct config should be allocated or mmap'ed. The code
without this patch allocates the buffer unconditionally, even for mmap
configs.

MFC after:	1 week
Reviewed by:	christos
Differential Revision:	https://reviews.freebsd.org/D53939
2025-11-26 20:33:05 +01:00
John Baldwin 7980cf5d6f Centralize definition of ZFSTOP
Define this helper variable in one place and make it available while
building the entire base system.

Reviewed by:	sjg
Obtained from:	CheriBSD (mostly)
Differential Revision:	https://reviews.freebsd.org/D53790
2025-11-24 10:46:56 -05:00
Gordon Tetlow 12ec49d8fa Add backup pkgbase signing key held by security-officer.
This key was generated by gordon@ (aka security-officer@) on an offline
system as a backup key should anything happen to the AWS Key
Management Service that is currently in use for signing pkgbase
repositories for FreeBSD 15.x.

Reviewed by:	cperciva
With hat:	so
2025-11-22 11:14:25 -08:00
Alexander Ziaee a8740ba860 vt.4: Document increasing scrollback size
MFC:			immediately as 2 llms say this is impossible
Reviewed by:		adrian, emaste
Differential Revision:	https://reviews.freebsd.org/D53860
2025-11-21 12:41:02 -05:00
Gordon Bergling 8158b813d9 isp.4: Fix a typo in the manual page
- s/Chanel/Channel/

MFC after:	3 days
2025-11-21 10:14:35 +01:00
Gordon Bergling bb3bfc7ca8 snd_dummy.4: Fix a typo in the manual page
- s/devic/device/

MFC after:	3 days
2025-11-21 10:13:39 +01:00
Ed Maste a4aa7df767 mgb.4, muge.4: Use standard HARDWARE introduction
Release notes are generated using this text.

I used "interfaces" not "adapters" in these pages as the listed devices
are the controller ICs, not end-user projects.

Reviewed by:	ziaee
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53846
2025-11-20 12:08:22 -05:00
Mark Johnston 39ee24182b rc.subr: Support setting the audit user when starting services
When an unprivileged user restarts a service using, e.g., sudo, the
service runs with the audit user ID set to that of the unprivileged
user.  This can have surprising effects: for instance, a user that
restarts a jail that is running sshd will end up with their UID attached
to all audit logs associated with users who log in via that sshd
instance.  (sshd will set the audit user, but this is disallowed in
jails by default.)

Add support for rc.conf directives which cause rc to override the audit
user.  Specifically, make <name>_audit_user=foo cause the audit user to
be set to "foo" for service <name>.  A plain audit_user=foo directive
causes all services to be started as foo.

Note, like other similar rc features, this feature is limited to rc
services which are run by executing a command.  Shell functions can't be
wrapped this way.

Reviewed by:	0mp
MFC after:	2 weeks
Sponsored by:	Modirum MDPay
Sponsored by:	Klara, Inc.
Differential Revision:	https://reviews.freebsd.org/D53747
2025-11-18 16:24:21 +00:00
Konstantin Belousov c0a38339fe exterror.9: explain buffers and bios usage of extended errors
Reviewed by:	pauamma_gundo.com
Sponsored by:	The FreeBSD Foundation
Differential revision:	https://reviews.freebsd.org/D53798
2025-11-18 07:34:56 +02:00
Ed Maste bf2dc446d1 example.4: Bump deprecation example to FreeBSD 17
The deprecation notice should indicate that the driver or feature will
be removed in a future release, not one that's nearly EOL.

Sponsored by:	The FreeBSD Foundation
2025-11-17 10:13:17 -05:00
Ed Maste 4c736cfc69 Deprecate fdc(4) and floppy utilities
Floppies have been obsolete for over a decade.  Add a deprecation note
now and plan to remove fdc(4) support in 16.

Reviewed by:	ziaee
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D41549
2025-11-16 17:46:12 -05:00
Ed Maste e1b027b276 fdc.4: Correct igor-reported warnings
Sponsored by:	The FreeBSD Foundation
2025-11-16 17:44:16 -05:00
Dag-Erling Smørgrav ebb0b48226 iwx.4: Follow the established style
Fixes:          b0c1ead2b9 ("iwx.4: Fix SYNOPSIS")
Reviewed by:	ziaee
Differential Revision:	https://reviews.freebsd.org/D53760
2025-11-16 20:10:44 +01:00
Colin Percival b05f38262b Add pkgbase signing keys for FreeBSD 15
These keys were generated by cperciva@ using the AWS Key Management
Service.  They will not be used for signing anything other than
FreeBSD 15.x pkgbase repositories.

Keys will be generated for FreeBSD 16 at a later date, and likely in
a different way.

With hat:	re
MFC after:	8 hours (needed in 15.0-RC1)
Differential Revision:	https://reviews.freebsd.org/D53768
2025-11-14 23:58:41 -08:00
Ed Maste e96359d111 boot.config.5: Clarify that this controls legacy boot blocks
Reviewed by;	ziaee
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D52460
2025-11-14 16:38:38 -05:00
Alexander Ziaee b0c1ead2b9 iwx.4: Fix SYNOPSIS
PR:		290812
MFC after:	3 days
Fixes:		27c41b28b1 (iwx.4: Initial manual page)
Reported by:	Dimitry Lukhtionov <dimitryluhtionov@gmail.com>
2025-11-14 10:06:04 -05:00
Konstantin Belousov 0eca7fa1c9 exterror.9 man page
With help from:	mckusick
Reviewed by:	emaste, pauamma_gundo.com
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D53589
2025-11-14 16:33:54 +02:00
Mark Johnston 1563da200d queue.3: Add MLINKs for *_EMPTY_ATOMIC
MFC after:	1 week
Fixes:		d2870b8666 ("queue: Add atomic variants for *_EMPTY")
2025-11-14 14:31:16 +00:00
Maxim Konovalov 8cd9c39195 hgame.4: typo 2025-11-14 04:13:27 +00:00
Alexander Ziaee c0c8d812b5 hgame.4: Polish
Explain driver loading and application access in the body of the manual.
Crossreference other game controller driver manuals, and devfs.rules to
hint about how to configure application access. Add a common dongle to
supported hardware. Add evdev a few places to make it really clear how
it works.

MFC after:		immediately for inclusion in 15.0R
Reviewed by:		wulf
Differential Revision:	https://reviews.freebsd.org/D53290
2025-11-13 18:57:59 -05:00
Goran Mekić 6a56966686 sound examples: Extend and clean up
- Simplify directory and file structure.
- Clean up and improve code. Add more comments.
- Add polling examples.

MFC after:	1 week
Reviewed by:	christos
Differential Revision:	https://reviews.freebsd.org/D53353
2025-11-12 21:15:59 +01:00
Alexander Ziaee 3cf85a69ae hifn.4: Really remove
Fixes:	a38a42ed9a (random: remove hifn(4))
Fixes:	685a78570b (random: remove hifn(4))
2025-11-12 13:16:26 -05:00
Muhammad Moinur Rahman 1d9f2db7c0 pcic.4: Remove stale manual
MFC after:	2 days
Reviewed by:	ziaee
Fixes:		31b35400c (pccard: Remove more of the PC Card)
Discussed with:	bsdimp, emaste, jhb
Extracted from:	https://reviews.freebsd.org/D53434
2025-11-12 13:05:37 -05:00
Muhammad Moinur Rahman 5b9fba1cb0 Retire pccard(4)
pccard has been declared obsolete for a long time and also the
support has been removed but the man page still exists. It mentions
being scheduled to be removed before 13.0 but it still exists in the
tree.

[Extracted from review D53434]

Reviewed by: emaste
Fixes: 31b35400c ("pccard: Remove more of the PC Card infrastructure")
2025-11-12 12:09:09 -05:00
Mateusz Piotrowski 7bcd3a04c8 dtrace_priv.4: Document the DTrace priv provider
Fixes:	6efcc2f26a Add static tracing for privilege checking
MFC after:	2 weeks
Differential Revision:	https://reviews.freebsd.org/D53630
2025-11-12 15:51:37 +01:00
Alexander Ziaee 595fcd71a8 mx25l.4: Add n25q64 to hardware list
MFC after:	3 days
Fixes:		76735c7439 (flash: Add "n25q64" to mx25l driver)
2025-11-12 08:39:24 -05:00
Alexander Ziaee 6f73950475 mx25l.4: Describe better and tag spdx
MFC after:	3 days
2025-11-12 08:39:24 -05:00
Alexander Ziaee dee8e38f52 sbp.4: Add a hardware section, fix markup nits
+ tag SPDX
+ add sysctl to apropos database
+ fix markup of examples and reflow a overly long line
+ add a hardware section for hw relnotes

MFC after:	3 days
2025-11-12 08:39:24 -05:00
Yogesh Bhosale 8225ed665e ix.4: Document E610 debug dump
Explain how to collect E610 device debug dump data with sysctl for
troubleshooting with Intel Customer Support.

Fixes:			2170400142 (Add support for debug dump)
Reviewed by:		bcr, erj (previous version), ziaee
Signed-off-by:		Yogesh Bhosale <yogesh.bhosale@intel.com>
Differential Revision:	https://reviews.freebsd.org/D52990
2025-11-12 08:38:41 -05:00
David E. O'Brien 3deb21f1af random: TPM_HARVEST should have been named RANDOM_ENABLE_TPM
* Enable RANDOM_ENABLE_TPM by default

* The commit of TPM_HARVEST failed to add it to NOTES
  so that the LINT kernel would build the code.

Fixes: 4ee7d3b011
Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D53460
2025-11-10 12:54:48 -08:00
Yogesh Bhosale abd53b16c0 ix.4: Add E610 to HARDWARE section
MFC after:		3 days
Reviewed by:		ziaee
Fixes:			dea5f973d0 (new Intel Ethernet E610 family)
Differential Revision:	https://reviews.freebsd.org/D52990
2025-11-10 15:06:32 -05:00
Maxim Konovalov 80ca573fc4 geom_zero.4: typo 2025-11-10 01:35:20 +00:00
Mateusz Piotrowski 39acb7fd86 geom_zero.4: Document
PR:	250593
Reviewed by:	bcr, ziaee
Thanks to:	imp, markj
MFC after:	1 week
Fixes:	3843eba85d Add unmapped BIO support to GEOM ZERO
Fixes:	24e1fdcd1a Allow to specify the byte which will be used for filling read buffer
Fixes:	565bc10111 Add a very simple and small GEOM class - ZERO
2025-11-09 15:49:23 +01:00
David E. O'Brien 9b7d2cee03 safe(4): add gone_in 16.0
Reviewed by:	emaste
Differential Revision:	https://reviews.freebsd.org/D53426
2025-11-07 12:04:44 -08:00
Ed Maste 1821cf482f bsd-family-tree: Re-center OpenBSD line
Commit 09aeca28dd ("BSD family tree: reduce OpenBSD-NetBSD crowding")
moved OpenBSD releases over 2 spaces.  Move the line through OpenBSD
releases over as well.

Reviewed by:	obrien
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53635
2025-11-07 14:48:09 -05:00
Jiacong Fang 8caf467784 mpr.4: Remove Broadcom LSI 3908 from support list
"This one is my fault due to incorrect merging" ~ziaee

MFC after:		3 days
Reviewed by:		ziaee
Fixes:			744c8d5544 (mpr.4: Add Broadcom LSI 3808)
Differential Revision:	https://reviews.freebsd.org/D53634
2025-11-07 13:42:33 -05:00
David E. O'Brien 09aeca28dd BSD family tree: reduce OpenBSD-NetBSD crowding
OpenBSD was nearly against the NetBSD entries, especially in their
earlier lineages.  Now line up "OpenBSD" with | at the 'e'.

Reviewed by:	gordon (in person)
Differential Revision:	https://reviews.freebsd.org/D53509
2025-11-06 21:42:34 -08:00