tb [Mon, 12 Aug 2024 22:37:57 +0000 (22:37 +0000)]
fflush.3: zap trailing whitespace
tb [Mon, 12 Aug 2024 21:27:57 +0000 (21:27 +0000)]
Fix grammar in history section
ok guenther
tb [Mon, 12 Aug 2024 21:04:46 +0000 (21:04 +0000)]
sync libc, libssl and libtls bumps
tb [Mon, 12 Aug 2024 21:02:24 +0000 (21:02 +0000)]
Give libtls the same bump as libssl
tb [Mon, 12 Aug 2024 21:01:54 +0000 (21:01 +0000)]
Bump minor after symbol addition
tb [Mon, 12 Aug 2024 21:01:34 +0000 (21:01 +0000)]
Add SSL_CTX_set1_cert_store() and SSL_CIPHER_get_handshake_digest() to
Symbols.list
tb [Mon, 12 Aug 2024 21:01:00 +0000 (21:01 +0000)]
Expose SSL_CTX_set1_cert_store() and SSL_CIPHER_get_handshake_digest()
guenther [Mon, 12 Aug 2024 20:56:55 +0000 (20:56 +0000)]
Add <stdio_ext.h> with the seven APIs needed to have gnulib operate
without poking directly into the FILE structure.
Repeated testing, "nope, need a few more" feedback, and ok tb@
guenther [Mon, 12 Aug 2024 20:53:09 +0000 (20:53 +0000)]
Make exit(), fclose(), fflush(), and freopen() comply with POSIX-2008
requirements for setting the underlying file position when flushing
read-mode streams, and make an fseek()-after-fflush() not change the
underlying file position.
Much testing, review, and assistance from tb@
ok tb@ millert@
matthieu [Mon, 12 Aug 2024 19:40:17 +0000 (19:40 +0000)]
xkbcomp 1.7.0 moved its data files from lib/X11 to share/X11
anton [Mon, 12 Aug 2024 19:32:05 +0000 (19:32 +0000)]
Conditionally compile kqueue poll debug printfs, mainly preventing them
from being included in the ramdisk kernel.
Looks sensible to deraadt@
deraadt [Mon, 12 Aug 2024 18:43:41 +0000 (18:43 +0000)]
other growth has happened and I'm out of current culling options,
so mpi(4) gets removed from the floppy.
kettenis [Mon, 12 Aug 2024 17:24:58 +0000 (17:24 +0000)]
Revert the guts of rev 1.14. This ends up attempting to turn of power
resources for devices that aren't present. And that makes us run AML that
clearly hasn't been tested by the vendors. And on my test laptop this no
longer seems to make a meaningful difference in the power consumption
during suspend-to-idle.
ok deraadt@
mvs [Mon, 12 Aug 2024 17:02:58 +0000 (17:02 +0000)]
Prepare bpf_sysctl() for upcoming net_sysctl() unlocking.
Both NET_BPF_MAXBUFSIZE and NET_BPF_BUFSIZE (`bpf_maxbufsize' and
`bpf_bufsize' respectively) are atomically accessed integers. No locks
required to modify them.
ok bluhm
job [Mon, 12 Aug 2024 15:34:58 +0000 (15:34 +0000)]
Add -CRLfile option to 'cms' sub command
This option allows to verify certs in a CMS object against additional
CRLs.
Ported from work by Tom Harrison from APNIC
OK tb@
bluhm [Mon, 12 Aug 2024 11:25:27 +0000 (11:25 +0000)]
Run network protocol timer without kernel lock.
Mark slow and fast protocol timeouts as MP safe. This means they
run on a spearate thread without holding the kernel lock.
IGMP and MLD6 cannot run in parallel, they use exclusive net lock
to protect themselves. As a performance optimization global variables
are used to skip igmp_fasttimo() and mld6_fasttimeo() if no multicast
is active. These global variables use atomic operations and memory
barriers to work lockless.
IPv6 fragment timeout protects itself with a mutex.
TCP timers also run without kernel lock now. The whole TCP stack
holds exclusive net lock, so additional kernel lock is useless.
OK mvs@
op [Mon, 12 Aug 2024 09:32:44 +0000 (09:32 +0000)]
implement the report response for proc-filters too
Reported by renegm on GitHub:
<https://github.com/OpenSMTPD/OpenSMTPD/issues/1257>
ok gilles@
claudio [Mon, 12 Aug 2024 09:05:28 +0000 (09:05 +0000)]
Print min-version of a RTR session.
OK tb@
claudio [Mon, 12 Aug 2024 09:04:23 +0000 (09:04 +0000)]
Add 'min-version' RTR config option and default to RTR version 1 by default.
The min-version pins a minimal required version for rtr session. This is
needed if specific PDUs are required and it ensures that the session is
not suddenly downgraded. This is important for ASPA where a minimum
version of 2 is required. Only then the ASPA PDUs are transmitted.
By default a RTR version of 1 is used but setting min-version to 2
will enable draft-ietf-sidrops-8210bis-14 support and enforce it
at the same time. Right now defaulting to version 2 is not possible
since draft-ietf-sidrops-8210bis failed to progress for a too long
time resulting in split eco system with various incompatible RTR
version 2 implementations.
OK tb@
dlg [Mon, 12 Aug 2024 06:47:11 +0000 (06:47 +0000)]
try harder to leave a gap on the tx ring.
i think before this change we could overwrite entries on the ring,
which can confuse the chip and the tx completion code. i think.
it's funny how much a comparison hurts my brain.
ok patrick@
tested by and ok kevlo@
florian [Mon, 12 Aug 2024 06:22:36 +0000 (06:22 +0000)]
Get rid of inet_aton and simplify.
localhost is just a weird spelling of 127.0.0.1.
OK bluhm
florian [Mon, 12 Aug 2024 06:19:24 +0000 (06:19 +0000)]
Get rid of inet_aton.
Input & OK bluhm
jsg [Mon, 12 Aug 2024 02:16:21 +0000 (02:16 +0000)]
remove unused vars in local functions
jsg [Mon, 12 Aug 2024 01:49:49 +0000 (01:49 +0000)]
use INTEL_INFO for early platform tests in inteldrm_attach()
runtime IS_PLATFORM tests are not setup until
inteldrm_attachhook
i915_driver_probe
i915_driver_early_probe
intel_device_info_runtime_init_early
intel_device_info_subplatform_init
mvs [Sun, 11 Aug 2024 21:07:05 +0000 (21:07 +0000)]
Add missing refcnt.h header to fix libkvm build.
Reported and ok tb.
schwarze [Sun, 11 Aug 2024 18:24:43 +0000 (18:24 +0000)]
Even though US-ASCII (= ANSI X3.4-1986) only defines 128 characters,
the POSIX standard explicitly requires in section 6.2 that "the POSIX
locale shall contain 256 single-byte characters", see:
https://pubs.opengroup.org/onlinepubs/
9799919799/basedefs/V1_chap06.html#tag_06_02
So the current behaviour of treating non-ASCII bytes in an LC_CTYPE=POSIX
input stream as if they were characters is not a POSIX violation, but
actually required by the standard - and not just for awk(1), but for
utility programs in general and even for library functions in general.
Consequently, delete the wrong sentence i added to the STANDARDS section
last year.
Thanks to millert@ and jmc@ for making me realize my mistake.
OK millert@ jmc@
deraadt [Sun, 11 Aug 2024 17:30:28 +0000 (17:30 +0000)]
delete correct ACPI_SST_WAKING, pointed out by kettenis
mvs [Sun, 11 Aug 2024 15:10:53 +0000 (15:10 +0000)]
Make exit1() wait sysctl(2) `allprocess' loops.
Regardless on wired userland memory, KERN_FILE_BYPID and KERN_FILE_BYUID
`allprocess' loops have netlock provided sleep points, so concurrent
process exit(1) could crash kernel.
The main exit1() problem is that process teardown begins while process
is still linked to `allprocess' list, and current code doesn't allow to
unlink it first. Wait for concurrent sysctl(2) `allprocess' loops
between PS_EXITING bit setting and list unlinking. Both KERN_FILE_BYPID
and KERN_FILE_BYUID loops do PS_EXITING check and won't deal with dying
process. Concurrent exit1() thread will wait loops keeping process
linked to `allprocess' list.
Tested with i386 dpb(1) run.
Stress tests and ok bluhm.
jsing [Sun, 11 Aug 2024 13:05:43 +0000 (13:05 +0000)]
Add include path for crypto_arch.h.
jsing [Sun, 11 Aug 2024 13:04:46 +0000 (13:04 +0000)]
Add include path for crypto_arch.h.
jsing [Sun, 11 Aug 2024 13:02:39 +0000 (13:02 +0000)]
Provide and use crypto_arch.h.
Provide a per architecture crypto_arch.h - this will be used in a similar
manner to bn_arch.h and will allow for architecture specific #defines and
static inline functions. Move the HAVE_AES_* and HAVE_RC4_* defines here.
ok tb@
florian [Sun, 11 Aug 2024 11:56:08 +0000 (11:56 +0000)]
whitespace, no binary change
dtucker [Sun, 11 Aug 2024 08:25:12 +0000 (08:25 +0000)]
Mention H6 & H616 chipsets. ok patrick@
jmc [Sun, 11 Aug 2024 06:07:37 +0000 (06:07 +0000)]
rework DESCRIPTION for both dhcpleased(8) and slaacd(8) to more accurately
reflect how they work, to emphasize that they do nothing unless auto conf
is set, and to more closely match each other;
prompted by a diff from andrew christopher hawk on tech, who noted a wonky
sentence;
help/feedback deraadt florian; ok deraadt
deraadt [Sun, 11 Aug 2024 05:28:02 +0000 (05:28 +0000)]
forgot the suspend-time duplication mentioned in 1.25
deraadt [Sun, 11 Aug 2024 05:21:52 +0000 (05:21 +0000)]
put ACPI_SST_WAKING in gosleep() where kettenis asked for
jsg [Sun, 11 Aug 2024 03:27:29 +0000 (03:27 +0000)]
add name member to struct resource
needed for newer inteldrm
deraadt [Sun, 11 Aug 2024 01:40:49 +0000 (01:40 +0000)]
sync
dlg [Sun, 11 Aug 2024 01:02:10 +0000 (01:02 +0000)]
unbreak igc on strict alignment archs.
igc (like other intel nics) only supports a limited range of rx
buffer sizes, one of which is 2k like our standard mbuf clusters.
however they put the ethernet packet at the start of the provided
rx buffer, which means the ip header is misaligned on strict alignment
archs if we use the standard 2k mbuf clusters. to avoid wasting too
much memory using the next biggest cluster (4k) we have mcl2k2
clusters that pretty much exists for intel nics to use.
igc (and probably some other drivers ive touched) was too clever
about using mcl2k2 though, which caused panics when trying to use
jumbo packets. jan@ fixed this by moving back to 2k clusters, but
that broke sparc64 (and probably powerpc64).
this dumbs the mcl2k2 handling down a bit so jumbos still work, but
adds ETHER_ALIGN back so strict alignment archs also work again.
ok bluhm@
dlg [Sun, 11 Aug 2024 00:50:38 +0000 (00:50 +0000)]
timeout_add_msec and timeout_add_usec take uint64_t now.
dlg [Sun, 11 Aug 2024 00:49:34 +0000 (00:49 +0000)]
make the timeout_add_foo wrappers more consistent.
take uint64_t as the arg type for timeout_add_msec and timeout_add_usec
like we do for timeout_add_nsec now.
always calculate ticks using uint64_t, and factor out the range checks
on the resulting ticks value so it's done consistently.
ok claudio@
jsg [Sun, 11 Aug 2024 00:19:00 +0000 (00:19 +0000)]
spelling; ok mvs@
deraadt [Sat, 10 Aug 2024 23:28:17 +0000 (23:28 +0000)]
cleanup excessive calls to acpi_indicator at suspend time and resume time
ok kettenis
jsg [Sat, 10 Aug 2024 23:15:28 +0000 (23:15 +0000)]
drm/i915/huc: Allow for very slow HuC loading
From John Harrison
a797099562267ebb281acd59750f1a8dbba36eef in mainline linux
Avoids HuC auth failing due to timeout on Raptor Lake-S,
reported and fix tested by Laurence Tratt.
patrick [Sat, 10 Aug 2024 21:53:06 +0000 (21:53 +0000)]
Fix TX descriptors DMA syncs. So far only a single TX desc was synced, which
wasn't even one that we filled. Ensure that we sync all descs that we touch
before we give the whole chain to the hardware.
ok kettenis@
kettenis [Sat, 10 Aug 2024 20:20:50 +0000 (20:20 +0000)]
Some AMD Ryzen xHCI controllers need a bit more time to transition from D3
into D0. Fixes xhci(4) issues after resume.
ok deraadt@
jsg [Sat, 10 Aug 2024 11:01:12 +0000 (11:01 +0000)]
regen
jsg [Sat, 10 Aug 2024 11:00:14 +0000 (11:00 +0000)]
add SANDISK/Western Digital NVMe devices
0x5017 from Jan Schreiber
and some from submitted dmesgs
use a string of just "NVMe" when models share a device id:
0x5009 WDC PC SN530, WDC WDS500G2B0C-00PXH0
0x5014 WD Green SN350, WDC PC SN540
0x5017 WD PC SN740, WD_BLACK SN770
jsg [Sat, 10 Aug 2024 09:18:09 +0000 (09:18 +0000)]
spelling; ok claudio@
tb [Sat, 10 Aug 2024 06:42:10 +0000 (06:42 +0000)]
sync
tb [Sat, 10 Aug 2024 06:41:49 +0000 (06:41 +0000)]
Remove the empty ui_compat.h
unused in ports and on codesearch
tb [Sat, 10 Aug 2024 05:47:29 +0000 (05:47 +0000)]
relayd: improve config validation with -n
pf's rule names are limited by 32 characters, so lower the length bounds
for redirect names and tags that relayd accepts as valid config but would
later fail to load into pf. Also display the offending name on error.
from Mark Johnston
ok florian
jsg [Sat, 10 Aug 2024 05:32:28 +0000 (05:32 +0000)]
use void when functions have no args
ok deraadt@
jsg [Sat, 10 Aug 2024 04:59:17 +0000 (04:59 +0000)]
reduce diff to linux in ggtt_probe_common()
florian [Fri, 9 Aug 2024 19:43:26 +0000 (19:43 +0000)]
Add 2024 root zone trust-anchor, it is expected to be used in 2026.
The trust-anchor was copied from the upcoming unbound(8) release and
verified against https://www.iana.org/reports/2024/root-ksk-2024.pdf
While here switch the 2017 trust-anchor from DNSKEY to DS to use the
same record type as for the 2024 trust-anchor. They are functionally
equivalent. It was verified against
https://www.iana.org/reports/2017/root-ksk-2017.pdf
As well as with run-time testing, i.e. unwind would still perform
DNSSEC validation.
checked pdfs & OK phessler
naddy [Fri, 9 Aug 2024 14:57:06 +0000 (14:57 +0000)]
7.7 packages key
claudio [Fri, 9 Aug 2024 14:00:48 +0000 (14:00 +0000)]
Remove the ibuf_size(pdu) % sizeof(uint32_t) == 0 since it is already
done in rtr_parse_header(). No need to do it twice.
claudio [Fri, 9 Aug 2024 13:52:09 +0000 (13:52 +0000)]
Adjust RTR ASPA pdu parser to draft-ietf-sidrops-8210bis-14 which finally
adjusted the pdu to follow the other ASPA drafts.
OK tb@
jsg [Fri, 9 Aug 2024 11:04:07 +0000 (11:04 +0000)]
enable GuC authentication of HuC
The HEVC/H.265 micro Controller (HuC) requires authentication via
the Graphics micro Controller (GuC) on pre DG2/MTL hardware.
HuC is required for Low Power Encoding with the
Intel Media Driver for VAAPI.
Using GuC for command submission caused memory corruption on DG2
and inconsistent errors on boot with Alder Lake, so GuC was
previously disabled entirely in a local change.
initial diff from and tested by rsadowski@ (on Alder Lake)
claudio [Fri, 9 Aug 2024 08:31:26 +0000 (08:31 +0000)]
Regenerate expected files since gcc4 switched to std=gnu9x some time ago.
OK deraadt@ millert@
claudio [Fri, 9 Aug 2024 08:30:13 +0000 (08:30 +0000)]
Add string.h include and typecast data to reduce warnings
OK deraadt@ millert@
deraadt [Fri, 9 Aug 2024 05:16:13 +0000 (05:16 +0000)]
ansi functions and prototypes
ok denis
dtucker [Fri, 9 Aug 2024 04:40:09 +0000 (04:40 +0000)]
Add OrangePi Zero2 (Allwinner H616). prompted by & ok jsg@
jsg [Fri, 9 Aug 2024 01:52:01 +0000 (01:52 +0000)]
regen
jsg [Fri, 9 Aug 2024 01:50:16 +0000 (01:50 +0000)]
add Ryzen 9000 "Granite Ridge" id
found in AMD Software: Adrenalin Edition 24.7.1
GC 10.3.6, DCN 3.1.5 same as Ryzen 7000 "Raphael" and
Ryzen 7045 "Dragon Range"
tb [Thu, 8 Aug 2024 23:50:29 +0000 (23:50 +0000)]
ct.h: move two asterisks to the proper place
tb [Thu, 8 Aug 2024 23:44:43 +0000 (23:44 +0000)]
check_complete: accept #error
tb [Thu, 8 Aug 2024 23:43:56 +0000 (23:43 +0000)]
check_complete: OBJ_bsearch_() and OBJ_bsearch_ex_() are gone
tb [Thu, 8 Aug 2024 19:18:44 +0000 (19:18 +0000)]
instead of including a literal NUL in a string, use "x$(printf \\000)x"
kettenis [Thu, 8 Aug 2024 18:46:13 +0000 (18:46 +0000)]
Fix gasio access size.
dv [Thu, 8 Aug 2024 15:57:22 +0000 (15:57 +0000)]
Start wire_count for EPT pde pages at 1.
Corrects an off-by-one error that results in EPT pte's not being
removed properly.
ok mlarkin@
bluhm [Thu, 8 Aug 2024 15:02:36 +0000 (15:02 +0000)]
In sysctl KERN_FILE_BYPID stop traversal after pid has been found.
When searching for a specific process, there is no need to traverse
the list of all processes to the end. Break after pid has been
found and the file structure has been filled. Also check for arg
>= 0 as this is consistent with the arg < -1 check before. This
makes no functional difference as process 0 has PS_SYSTEM set and
is skipped anyway.
OK millert@ mvs@
jan [Thu, 8 Aug 2024 14:58:49 +0000 (14:58 +0000)]
igc(4): Use same size for DMA mapping and allocation for rx bufs
Also remove the ETHER_ALIGN which leads to corruped mbufs.
ok bluhm@
miod [Thu, 8 Aug 2024 13:59:11 +0000 (13:59 +0000)]
Prevent spurious "/bsd.upgrade is not u+x" message when the file is missing.
ok kn@
miod [Thu, 8 Aug 2024 13:56:00 +0000 (13:56 +0000)]
Make user ci_flags is declared volatile.
mvs [Thu, 8 Aug 2024 10:25:00 +0000 (10:25 +0000)]
Unlock KERN_MSGBUFSIZE and KERN_CONSBUFSIZE.
`msgbufp' and `consbufp' are immutable, such as `msg_magic' and
`msg_bufs'. initmsgbuf() and initconsbuf() which initialize this buffers
are called during kernel bootstrap, when concurrent sysctl(2) is
impossible, so they don't need to be reordered or use barriers.
ok bluhm
tb [Thu, 8 Aug 2024 09:56:51 +0000 (09:56 +0000)]
ui_util.c needs stdio.h and ui.h, but not ui_compat.h and ui_local.h
yasuoka [Thu, 8 Aug 2024 09:16:37 +0000 (09:16 +0000)]
Use timingsafe_memcmp() when comparing the authenticators. from iij.
kettenis [Thu, 8 Aug 2024 07:02:38 +0000 (07:02 +0000)]
Print suspend-to-idle debug info in a more concise matter.
ok mlarkin@, deraadt@
kettenis [Thu, 8 Aug 2024 07:01:22 +0000 (07:01 +0000)]
Make intelmpc(4) print information about the residency counters advertised
in the LPIT table.
ok mlarkin@, deraadt@
deraadt [Thu, 8 Aug 2024 05:10:00 +0000 (05:10 +0000)]
new dell DW5821e variant is another umb(4); from Bryan Vyhmeister
deraadt [Thu, 8 Aug 2024 05:09:33 +0000 (05:09 +0000)]
sync
deraadt [Thu, 8 Aug 2024 05:09:09 +0000 (05:09 +0000)]
new dell DW5821e variant is another umb(4); from Bryan Vyhmeister
yasuoka [Thu, 8 Aug 2024 03:58:53 +0000 (03:58 +0000)]
Fix a typo in log message.
tb [Thu, 8 Aug 2024 03:46:50 +0000 (03:46 +0000)]
hmac test: fix build with gcc
The bounded attribute leads to failing regress compilation with gcc due
to a test passing a negative length to exercise a chck.
noticed and fixed suggested by claudio
deraadt [Wed, 7 Aug 2024 23:03:49 +0000 (23:03 +0000)]
sync
deraadt [Wed, 7 Aug 2024 23:03:24 +0000 (23:03 +0000)]
old keys can go away
deraadt [Wed, 7 Aug 2024 23:02:48 +0000 (23:02 +0000)]
add 7.7 base key
claudio [Wed, 7 Aug 2024 18:26:44 +0000 (18:26 +0000)]
Update sparc64 ok files to match with reality.
OK deraadt@
claudio [Wed, 7 Aug 2024 18:25:39 +0000 (18:25 +0000)]
Rework fork-exit regress to work with any pagesize not only 4k.
Also mmap PROT_READ|PROT_WRITE instead of write only.
Add a bit more extra space for the stack allocations.
With all of this this test no longer fails on sparc64
OK deraadt@ bluhm@
brynet [Wed, 7 Aug 2024 17:39:00 +0000 (17:39 +0000)]
Attach ksmn(4) on 19h/7x devices
Tested on:
cpu0: AMD Ryzen 7 PRO 8700GE w/ Radeon 780M Graphics, 3650.01 MHz, 19-75-02, patch
0a705205
Thanks to Jan (@js@x0r.be on mastodon) for testing.
"Sure" deraadt@
deraadt [Wed, 7 Aug 2024 16:01:18 +0000 (16:01 +0000)]
sync
deraadt [Wed, 7 Aug 2024 15:59:24 +0000 (15:59 +0000)]
crank to 7.6-beta, release date is vague
tb [Wed, 7 Aug 2024 10:26:43 +0000 (10:26 +0000)]
adjust check_complete after recent-ish API and docs changes
yasuoka [Wed, 7 Aug 2024 07:15:18 +0000 (07:15 +0000)]
Fix a typo
jsg [Wed, 7 Aug 2024 06:49:54 +0000 (06:49 +0000)]
regen
jsg [Wed, 7 Aug 2024 06:48:55 +0000 (06:48 +0000)]
add devices seen on Lenovo ThinkCentre M75q Gen 5 with
Ryzen 5 PRO 8500GE 19-78-00
guenther [Wed, 7 Aug 2024 05:15:28 +0000 (05:15 +0000)]
asprintf() and vasprintf() are in POSIX-2024. Update #include
visibility and manpages and add restrict qualifiers in all the
specified places to the *printf family.
ok millert@
guenther [Wed, 7 Aug 2024 04:59:45 +0000 (04:59 +0000)]
wcslcpy() and wcslcat() are in POSIX-2024. Update #include visibility
and manpages and add restrict qualifiers.
ok millert@
mvs [Tue, 6 Aug 2024 20:15:53 +0000 (20:15 +0000)]
Unlock `udpctl_vars'.
`udp_sendspace' and `udp_recvspace' are integers which read-only
accessed in udp_attach(). `udpcksum' read-only accessed in udp_output().
No netlock required to modify them through sysctl(2).
ok bluhm