jsg [Mon, 21 Feb 2022 00:22:03 +0000 (00:22 +0000)]
mutibyte -> multibyte
jsg [Sun, 20 Feb 2022 23:14:36 +0000 (23:14 +0000)]
dmameme -> dmamem
dlg [Sun, 20 Feb 2022 23:11:01 +0000 (23:11 +0000)]
i missed a word.
some other tweaks for readability or brevity while here
deraadt [Sun, 20 Feb 2022 22:50:49 +0000 (22:50 +0000)]
sync
afresh1 [Sun, 20 Feb 2022 21:53:04 +0000 (21:53 +0000)]
Only use /snapshots dir when -current
Not during release, -stable, or -beta.
This diverges from how packages work and how things were done in the past
where -beta also looked in /snapshots.
Discussed in icb.
OK deraadt@
sthen [Sun, 20 Feb 2022 20:54:29 +0000 (20:54 +0000)]
we should be 7.1-beta not 7.1-current
naddy [Sun, 20 Feb 2022 20:28:57 +0000 (20:28 +0000)]
7.2 packages key
jmc [Sun, 20 Feb 2022 20:01:04 +0000 (20:01 +0000)]
space required between macro argument and punctuation;
tb [Sun, 20 Feb 2022 19:59:29 +0000 (19:59 +0000)]
Add missing newlines in two DPRINTFs (from Matthew Martin)
Tweak capitalization (from jmc)
tb [Sun, 20 Feb 2022 19:45:51 +0000 (19:45 +0000)]
Fix vi recovery mode.
From trondd, tested by various
ok afresh1
kettenis [Sun, 20 Feb 2022 19:33:48 +0000 (19:33 +0000)]
aplcpu(4)
kettenis [Sun, 20 Feb 2022 19:25:57 +0000 (19:25 +0000)]
Add aplcpu(4), a driver to control the CPU performance levels on Apple SoCs.
ok gnezdo@
afresh1 [Sun, 20 Feb 2022 19:24:19 +0000 (19:24 +0000)]
Remove downloaded SHA256.sig if signature validation fails
Without the "noclobber" setting we would have overwitten with an empty
file and best not to leave a failed file around.
Noticed by florian@
florian [Sun, 20 Feb 2022 19:18:16 +0000 (19:18 +0000)]
Nameservers in router advertisements are struct in6_addr, not
struct sockaddr_in6. Copy the right amount of data so that we don't
overflow the destination and potentially crash when we receive more
than 7 nameservers.
This is going to be 7.0 errata 014.
OK deraadt
tb [Sun, 20 Feb 2022 19:16:34 +0000 (19:16 +0000)]
Fix a buffer overread in OAEP padding removal
This only occurs on very small payloads and tightly allocated buffers
that don't usually occur in practice.
This is OpenSSL
f61c6804
ok inoguchi jsing
deraadt [Sun, 20 Feb 2022 18:23:28 +0000 (18:23 +0000)]
sync
afresh1 [Sun, 20 Feb 2022 18:06:05 +0000 (18:06 +0000)]
Show summary even if no firmware are detected or installed
OK florian@
deraadt [Sun, 20 Feb 2022 17:21:56 +0000 (17:21 +0000)]
7.2 base key
deraadt [Sun, 20 Feb 2022 17:11:05 +0000 (17:11 +0000)]
move to 7.1-beta
jsg [Sun, 20 Feb 2022 15:39:55 +0000 (15:39 +0000)]
audo -> audio
jsg [Sun, 20 Feb 2022 15:21:15 +0000 (15:21 +0000)]
John P. Wittkowski -> John P. Wittkoski
matches adb.c and adb(4)
jsg [Sun, 20 Feb 2022 15:01:03 +0000 (15:01 +0000)]
Wildire -> Wildfire
jsing [Sun, 20 Feb 2022 13:47:53 +0000 (13:47 +0000)]
Test OBJ_obj2txt() with NULL and short buffers.
dtucker [Sun, 20 Feb 2022 03:47:26 +0000 (03:47 +0000)]
Aproximate realpath on the expected output by deduping leading slashes.
Fixes test failure when user's home dir is / which is possible in some
portable configurations.
deraadt [Sun, 20 Feb 2022 00:09:29 +0000 (00:09 +0000)]
sys/proc.h requires sys/signal.h (will become visible when sys/param.h
is removed)
deraadt [Sat, 19 Feb 2022 23:57:09 +0000 (23:57 +0000)]
The suspend/resume code sleeps-not-allowed phases are protected with
cold=2. Use the same strategy in a a similar phase during hibernate.
deraadt [Sat, 19 Feb 2022 23:56:18 +0000 (23:56 +0000)]
tsleep() prints a stack trace when cold==2. The suspend/resume code has
phases where sleeps are not allowed, and this used to discover it.
msleep() needs the same check.
jsg [Sat, 19 Feb 2022 23:45:51 +0000 (23:45 +0000)]
don't refer to disks as daughter devices
ok jmc@
krw [Sat, 19 Feb 2022 22:08:27 +0000 (22:08 +0000)]
The 'e' command of the simple editor has not provided editing of
'interleave' or 'rpm' since the disklabel fields d_interleave and
d_rpm were 'recycled' to make room for duid's in April, 2010.
jsing [Sat, 19 Feb 2022 16:00:57 +0000 (16:00 +0000)]
Add memory BIO small I/O tests.
jsing [Sat, 19 Feb 2022 16:00:14 +0000 (16:00 +0000)]
Remove references to performance issues caused by frequent memmove().
ok inoguchi@ tb@
jsing [Sat, 19 Feb 2022 15:59:12 +0000 (15:59 +0000)]
Reduce memmoves in memory BIOs.
Currently, a read/write memory BIO pulls up the data via memmove() on each
read. This becomes very expensive when a lot of small reads are performed,
especially if there is a reasonable amount of data stored in the memory
BIO.
Instead, store a read offset into the buffer and only perform a memmove()
to pull up the data on a write, if we have read more than 4096 bytes. This
way we only perform memmove() when the space saving will potentially be of
benefit, while avoiding frequent memmove() in the case of small interleaved
reads and writes.
Should address oss-fuzz #19881.
ok inoguchi@ tb@
jsg [Sat, 19 Feb 2022 13:09:36 +0000 (13:09 +0000)]
certificiate -> certificate
jsg [Sat, 19 Feb 2022 12:23:45 +0000 (12:23 +0000)]
mininumu -> minimum
jsg [Sat, 19 Feb 2022 10:17:39 +0000 (10:17 +0000)]
remove outdated contact details for ActivCard and CRYPTOCard
jsg [Sat, 19 Feb 2022 09:12:09 +0000 (09:12 +0000)]
remove redundant swap encryption text
visa [Sat, 19 Feb 2022 08:33:28 +0000 (08:33 +0000)]
Use installboot(8) in install.md of armv7.
OK kettenis@ deraadt@
jsing [Sat, 19 Feb 2022 08:11:16 +0000 (08:11 +0000)]
Provide a struct bio_mem for memory BIO specific data.
In order to fix and improve the memory BIO, we need to be able to track
more than just a single BUF_MEM *. Provide a struct bio_mem (which
currently only contains a BUF_MEM *) and rework the internals to use this
struct.
ok inoguchi@ tb@
afresh1 [Sat, 19 Feb 2022 02:19:42 +0000 (02:19 +0000)]
Ignore sitelib in perl snippet
All base tools should be doing that and I forgot.
While here remove the no longer necessary TERM handler,
it was only needed so a TERM signal would still trigger the END block.
jsg [Fri, 18 Feb 2022 23:17:13 +0000 (23:17 +0000)]
Avoid gendered language in man pages when not referring to a specific
person. Rewrite or use singular they.
ok thfr@ sthen@ daniel@ ian@ job@ kmos@ jcs@ ratchov@ phessler@ and
others I'm likely missing on an earlier version.
feedback tj@, feedback and ok jmc@
deraadt [Fri, 18 Feb 2022 22:54:13 +0000 (22:54 +0000)]
apmd should replace /etc/random.seed for hibernate-resumes (and also
chmod 600 the file to remove the t-bit that the bootblocks set when
the file is used)
comments from naddy
deraadt [Fri, 18 Feb 2022 20:20:23 +0000 (20:20 +0000)]
sync
krw [Fri, 18 Feb 2022 19:26:40 +0000 (19:26 +0000)]
writelabel() only needs one prototype.
krw [Fri, 18 Feb 2022 17:45:43 +0000 (17:45 +0000)]
Move prototypes for checklabel(), readlabel() and parselabel()
into disklabel.c since editor.c and dkcksum.c have no need to
know.
jsing [Fri, 18 Feb 2022 17:30:13 +0000 (17:30 +0000)]
Clean up and simplify memory BIO code.
This is a first pass that uses sensible and consistent names for variables.
Call the BIO 'bio' (instead of 'a', 'b', 'bp', or 'h'), drop a bunch of
unnecessary casts, simplify some logic and add additional error checking.
With input from and ok tb@
millert [Fri, 18 Feb 2022 17:02:06 +0000 (17:02 +0000)]
Enable TLS verify by default for outbound "smtps://" and "smtp+tls://".
This restores the documented behavior that was broken by the fix
for opportunistic TLS. OK semarie@.
millert [Fri, 18 Feb 2022 16:57:36 +0000 (16:57 +0000)]
Revert changes to use the new libtls signer api
There are bugs in the new libtls signer that can lead to a crash.
OK tb@ jsing@
krw [Fri, 18 Feb 2022 16:16:11 +0000 (16:16 +0000)]
No need for makebootarea() prototype as makebootarea() perished with NUMBOOT in
2015 (r1.211).
robert [Fri, 18 Feb 2022 15:22:22 +0000 (15:22 +0000)]
shut apmd up while the battery is coming to the full capacity when charging
to avoid filling up syslog with unnecessary information
ok tb@
visa [Fri, 18 Feb 2022 10:52:32 +0000 (10:52 +0000)]
Build gpioctl(8) on riscv64.
OK kettenis@
visa [Fri, 18 Feb 2022 10:51:43 +0000 (10:51 +0000)]
Add mpfgpio(4), a driver for the PolarFire SoC MSS GPIO controller.
Feedback and OK kettenis@
jsg [Fri, 18 Feb 2022 10:24:32 +0000 (10:24 +0000)]
prefer https links in man pages
ok gnezdo@ miod@ jmc@
kettenis [Fri, 18 Feb 2022 09:04:38 +0000 (09:04 +0000)]
Convert KVA allocation to km_alloc(9).
ok mpi@
dlg [Fri, 18 Feb 2022 03:22:27 +0000 (03:22 +0000)]
dont bother running ethernet multicast ioctl handlers.
while here turn ENETRESET into 0 in the ioctl path. there's no
hardware to reset.
mlarkin [Fri, 18 Feb 2022 02:21:24 +0000 (02:21 +0000)]
Extra whitespace removal. No code change.
ok jsg@
jsg [Fri, 18 Feb 2022 02:20:33 +0000 (02:20 +0000)]
update 21c3 link
jsg [Fri, 18 Feb 2022 02:11:56 +0000 (02:11 +0000)]
remove squatted link
jsg [Fri, 18 Feb 2022 02:07:15 +0000 (02:07 +0000)]
remove dead link
jsg [Fri, 18 Feb 2022 01:41:17 +0000 (01:41 +0000)]
grammar/reword
ok jmc@
dlg [Fri, 18 Feb 2022 01:27:39 +0000 (01:27 +0000)]
fix inverted check of running when changing tunnel rdomain.
you should only be able to change the tunnel rdomain when the
interface is down. i was accidentally make sure you could only
change the rdomain when the interface was up.
dlg [Fri, 18 Feb 2022 00:46:42 +0000 (00:46 +0000)]
only unwind multicast when in learning mode.
found by bluhm@ when he ran the regress tests.
jca [Fri, 18 Feb 2022 00:39:18 +0000 (00:39 +0000)]
Hint: people who want to use ubsan can use the ubsan_minimal runtime
Input & ok gnezdo@
jsg [Fri, 18 Feb 2022 00:15:53 +0000 (00:15 +0000)]
grammar
jsing [Thu, 17 Feb 2022 18:51:58 +0000 (18:51 +0000)]
Add tests for memory BIO.
deraadt [Thu, 17 Feb 2022 17:22:22 +0000 (17:22 +0000)]
remove unused include files
deraadt [Thu, 17 Feb 2022 17:17:09 +0000 (17:17 +0000)]
If S4 is not available, use S5 for the ACPI-transitions in hibernate support.
A bunch of servers work now.
Really close to a 3-line diff...
ok kettenis
phessler [Thu, 17 Feb 2022 16:28:37 +0000 (16:28 +0000)]
binutils-2.17 does not have ld or gas available for the aarch64, powerpc64, or
riscv64 family of platforms, so we don't try to build there.
However we mis-nested the arch check, causing some unintended side effects,
most notably installing binutils-2.17's ar(1) which overwrote the
intended llvm-ar(1).
Fix the if nesting so it only applies where intended.
tested on aarch64 by me, powerpc64 by gkoehler@, and riscv64 by jca@
OK miod@ robert@ gkoehler@ jca@
jsg [Thu, 17 Feb 2022 14:08:11 +0000 (14:08 +0000)]
new sentence, new line
jsg [Thu, 17 Feb 2022 12:24:08 +0000 (12:24 +0000)]
remove some dead/squatted links
djm [Thu, 17 Feb 2022 10:58:27 +0000 (10:58 +0000)]
check for EINTR/EAGAIN failures in the rfd fast-path;
caught by dtucker's minix3 vm :) ok dtucker@
nicm [Thu, 17 Feb 2022 09:58:47 +0000 (09:58 +0000)]
Add a window-resized hook which is fired when the window is actually
resized which may be later than the client resize, GitHub issue 2995.
bluhm [Thu, 17 Feb 2022 09:24:56 +0000 (09:24 +0000)]
Regenerate ppport.h of Term::ReadKey using Devel::PPPort 3.64 to
avoid -Wno-compound-token-split-by-macro warnings from clang 13.
OK afresh1@
jsg [Thu, 17 Feb 2022 05:32:09 +0000 (05:32 +0000)]
drm/amd/pm: fix hwmon node of power1_label create issue
From Yang Wang
dcd1c46634697d200c7012d5047302355dce098f in linux 5.15.y/5.15.24
a8b1e8636a3252daa729762b2e3cc9015cc91a5c in mainline linux
jsg [Thu, 17 Feb 2022 05:29:41 +0000 (05:29 +0000)]
drm/i915: Populate pipe dbuf slices more accurately during readout
From Ville Syrjala
ac14a51c31693e11947f9b4e36c84558368fe089 in linux 5.15.y/5.15.24
85bb289215cf37e05e9581b39b114db1293f9ecd in mainline linux
jsg [Thu, 17 Feb 2022 05:26:18 +0000 (05:26 +0000)]
drm/i915: Allow !join_mbus cases for adlp+ dbuf configuration
From Ville Syrjala
8d6a31b83cddd5c3429def795ba7ec8fdaf4541d in linux 5.15.y/5.15.24
8fd5a26e43859547790a7995494c952b708ab3b5 in mainline linux
jsg [Thu, 17 Feb 2022 05:23:06 +0000 (05:23 +0000)]
drm/amdgpu/display: change pipe policy for DCN 2.0
From Alex Deucher
c1af59449d80a4f642dbe64fd8be7c1ce86fc2cf in linux 5.15.y/5.15.24
6e7545ddb13416fd200e0b91c0acfd0404e2e27b in mainline linux
jsg [Thu, 17 Feb 2022 05:20:32 +0000 (05:20 +0000)]
drm/amd/display: Correct MPC split policy for DCN301
From Zhan Liu
a277422a8d975966de1bd3351cc6cfd8718a166d in linux 5.15.y/5.15.24
ac46d93235074a6c5d280d35771c23fd8620e7d9 in mainline linux
jsg [Thu, 17 Feb 2022 05:17:30 +0000 (05:17 +0000)]
drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer
From Raymond Jay Golo
9696125fb3ca1660d28a0aef53bcaa1a20a02bdb in linux 5.15.y/5.15.24
d3cbc6e323c9299d10c8d2e4127c77c7d05d07b1 in mainline linux
rob [Thu, 17 Feb 2022 03:12:34 +0000 (03:12 +0000)]
Writes to the ps_flags field of struct process should be atomic.
Ok deraadt@ guenther@
jsg [Thu, 17 Feb 2022 00:47:47 +0000 (00:47 +0000)]
remove unused defines
jsg [Thu, 17 Feb 2022 00:21:40 +0000 (00:21 +0000)]
reduce includes
jsg [Thu, 17 Feb 2022 00:11:21 +0000 (00:11 +0000)]
reduce includes
ok deraadt@
deraadt [Wed, 16 Feb 2022 20:20:36 +0000 (20:20 +0000)]
rev 1.4 was wrong to put potential IO operations after _GTS.
re-creating the original (2 weeks ago) order of last-minute-disk-parking
needs a different approach, hmm.
nicm [Wed, 16 Feb 2022 18:55:05 +0000 (18:55 +0000)]
Support more mouse buttons when the terminal sends them, GitHub issue
3055.
deraadt [Wed, 16 Feb 2022 17:07:05 +0000 (17:07 +0000)]
sync
jmc [Wed, 16 Feb 2022 16:47:26 +0000 (16:47 +0000)]
sync the description for mviic(4);
deraadt [Wed, 16 Feb 2022 16:44:17 +0000 (16:44 +0000)]
return unique errors (I chose some errno values.. ) for the various
failure modes. Also, pack the code a little bit, easier to read.
visa [Wed, 16 Feb 2022 13:19:33 +0000 (13:19 +0000)]
Add missing FILTEROP_MPSAFE flag to fifoexcept_filtops.
OK mpi@
visa [Wed, 16 Feb 2022 13:18:08 +0000 (13:18 +0000)]
Reduce code duplication in FIFO event filters.
OK mpi@
visa [Wed, 16 Feb 2022 13:16:10 +0000 (13:16 +0000)]
Reduce code duplication in socket event filters.
OK mpi@
visa [Wed, 16 Feb 2022 13:07:36 +0000 (13:07 +0000)]
Add mpfiic(4), a driver for the PolarFire SoC MSS I2C controller.
OK kettenis@
florian [Wed, 16 Feb 2022 10:35:57 +0000 (10:35 +0000)]
According to RFC 2132, 2. BOOTP Extension/DHCP Option Field Format
ASCII data should not include trailing NUL but we MUST delete trailing
NULs on receiving.
Jan Vlach ( janus AT volny.cz) reported that Microsoft DHCP server
sends the domain name option with a trailing NUL which the installer
put into /etc/myname as a trailing ^@ which smtpd does not like.
Fix some whitespace while here.
Input & OK millert
sashan [Wed, 16 Feb 2022 08:46:11 +0000 (08:46 +0000)]
nat-to round-robin without a pool should fallback to POOL_NONE
bug reported by giovanni@
OK giovanni@
jsg [Wed, 16 Feb 2022 08:01:32 +0000 (08:01 +0000)]
unifdef PROC_PC
ok guenther@ rob@
jmc [Wed, 16 Feb 2022 07:17:41 +0000 (07:17 +0000)]
hyphenate "8-byte";
deraadt [Wed, 16 Feb 2022 07:13:09 +0000 (07:13 +0000)]
if the lids indicate we are not supposed to wakeup, return EAGAIN rather
than scheduling an acpi thread
dlg [Wed, 16 Feb 2022 06:54:08 +0000 (06:54 +0000)]
document endpoint mode
deraadt [Wed, 16 Feb 2022 06:47:28 +0000 (06:47 +0000)]
If the lid is closed, suspend_finish() now returns EAGAIN, so go to the top
and restart the suspend all over again. This was previously done by issuing
a task to the acpi thread, but this is simpler.
(I want to try to duplicate these tests earlier in the resume path...)
deraadt [Wed, 16 Feb 2022 06:41:27 +0000 (06:41 +0000)]
change MD gosleep() and sleep_finish() to return int, the MI code will be
able to react to this suitably.
anton [Wed, 16 Feb 2022 06:23:42 +0000 (06:23 +0000)]
Currently, wskbd_set_mixervolume() only adjusts the volume of the first
attached audio device, i.e. audio0. This approach does not work well
while using additional audio devices equipped with physical volume keys
since those would only affect the volume of audio0.
Instead, correlate audio and ucc devices attached over USB in order to
adjust the volume of the correct audio device. This is done by passing a
cookie from the common point of attachment which is later used to
correlate the audio and wskbd device.
The same approach could be adopted for audio and wskbd devices attaching
on a different bus. Keep in mind that it's of importance to make use of
and increment the same global cookie identifier to avoid collisions.
Makes the volume keys on my Logitech G435 Headset do the right thing.
ok ratchov@