florian [Sun, 2 Jun 2024 12:28:05 +0000 (12:28 +0000)]
Import dhcp6leased(8)
dhcp6leased is a daemon to manage IPv6 prefix delegations. It requests
a prefix from an upstream DHCPv6 server and configures downstream
network interfaces. rad(8) can be used to advertise available prefixes
to clients.
It's a transmogrified dhcpleased(8), so it's a bit rough around the
edges. But it can already request and renew prefixes and configure
interfaces. It's time to hack on it in-tree.
OK deraadt
kettenis [Sun, 2 Jun 2024 11:08:41 +0000 (11:08 +0000)]
Power down PCI devices in S0 as well. Needed for suspend-to-idle.
ok mglocker@
tb [Sat, 1 Jun 2024 18:42:49 +0000 (18:42 +0000)]
md4/ripemd: remove misplaced semicolons
tb [Sat, 1 Jun 2024 17:56:44 +0000 (17:56 +0000)]
Neuter the bounded attribute as was done elsewhere for portable
tb [Sat, 1 Jun 2024 12:35:23 +0000 (12:35 +0000)]
Remove mention of SHA-0, update STANDARDS section
ratchov [Sat, 1 Jun 2024 09:44:10 +0000 (09:44 +0000)]
sndiod: Don't add/remove server.device entries in dev_{open,close}()
Fixes server.device entries disappearing when usb devices are unplugged
while in use. Found, analysed and tested by Laurie Tratt, thanks!
tb [Sat, 1 Jun 2024 08:11:44 +0000 (08:11 +0000)]
Missed SHA224() in previous: reverse order of attributes
tb [Sat, 1 Jun 2024 07:44:11 +0000 (07:44 +0000)]
Reverse order of attributes
requested by jsing on review
tb [Sat, 1 Jun 2024 07:36:16 +0000 (07:36 +0000)]
Remove support for static buffers in HMAC/digests
HMAC() and the one-step digests used to support passing a NULL buffer and
would return the digest in a static buffer. This design is firmly from the
nineties, not thread safe and it saves callers a single line. The few ports
that used to rely this were fixed with patches sent to non-hostile (and
non-dead) upstreams. It's early enough in the release cycle that remaining
uses hidden from the compiler should be caught, at least the ones that
matter.
There won't be that many since BoringSSL removed this feature in 2017.
https://boringssl-review.googlesource.com/14528
Add non-null attributes to the headers and add a few missing bounded
attributes.
ok beck jsing
djm [Sat, 1 Jun 2024 07:03:37 +0000 (07:03 +0000)]
be really strict with fds reserved for communication with the separate
sshd-session process - reserve them early and fatal if we can't dup2(2)
them later. The pre-split fallback to re-reading the configuration
files is not possible, so sshd-session absolutely requires the fd the
configuration is passed over to be in order.
ok deraadt@
aoyama [Sat, 1 Jun 2024 00:48:16 +0000 (00:48 +0000)]
Move common definitions into the header file.
No binary change.
florian [Fri, 31 May 2024 16:19:53 +0000 (16:19 +0000)]
Preferred and valid lifetime options are sometimes ignored.
When a prefix is discovered on a network interface and and the IP
address has a valid or preferred lifetime configured that value is
used instead of the static value from the configuration.
Limitation pointed out by & man page text proposed by Ryan Vogt.
Slightly tweaked by me.
rad(8) should calculate the minimum of the static value from the
config file and what is configured on the interface. Implementing that
is slightly complicated and is left for a future diff.
florian [Fri, 31 May 2024 16:10:42 +0000 (16:10 +0000)]
Prefixes delegated via DHCPv6 have a lifetime, honour it.
The "auto prefix" feature derives the prefix to announce from a
configured IPv6 address. If that address has a vltime / pltime use
that value in router advertisements instead of statically configured
values.
We also need to count down the vltime / pltime as time progresses.
testing Ryan Vogt
testing & OK bket@, jmatthew@
florian [Fri, 31 May 2024 16:10:02 +0000 (16:10 +0000)]
getifaddrs(3) does a non trivial amount of work.
Call it once and pass a pointer to the head of the list around when
reconfiguring interfaces.
testing Ryan Vogt
ok benno
testing & OK bket@, jmatthew@
tb [Fri, 31 May 2024 11:27:34 +0000 (11:27 +0000)]
Document a weird decision in RFC 8209
The subject commonName of a BGPsec Router Certificate is RECOMMENDED to
be "CN=ROUTER-%08x", asn. It thus made perfect sense to deviate from
RFC 6487 and support encoding this as a UTF8String... We have three such
certs in the wild, so punt on complicating the logic at least until the
point where we need more than the fingers of one hand to count them.
ok claudio
djm [Fri, 31 May 2024 09:01:08 +0000 (09:01 +0000)]
warn when -r (deprecated option to disable re-exec) is passed
djm [Fri, 31 May 2024 08:49:35 +0000 (08:49 +0000)]
typos
tb [Fri, 31 May 2024 02:45:15 +0000 (02:45 +0000)]
rpki-client: check issuer for certs and CRLs
Per RFC 6487, the subject and issuer fields of a certificate and the issuer
field of a CRL are subject to the same restrictions: only a commonName and
an optional serialNumber may be present and the commonName must be an ASN.1
printable string.
So far we've only checked the subject of certificates, which covers almost
everything by relying on the verifier to check that the issuer's subject is
identical to the subject's issuer, also for CRLs per X509_V_FLAG_CRL_CHECK.
The only thing missing this way is the TA's issuer.
Since the check is cheap and simple, we're better off doing it ourselves:
Refactor the x509_vaild_subject() helper to take an X509_NAME (which is of
course the appropriate name for a type representing an X.501 distinguished
name). This checks the details of RFC 6487, section 4.4, except that we
still can't check for a printable string since afrinic has ~3000 EE certs
that don't follow the spec, which would knock out ~45% of their ROAs. We're
told that this is going to be fixed this year.
looks good to claudio
ok job
tb [Thu, 30 May 2024 17:01:38 +0000 (17:01 +0000)]
Adjust hmac test for removal of static buffer from HMAC()
sthen [Thu, 30 May 2024 14:29:05 +0000 (14:29 +0000)]
sem_open() uses /tmp/*.sem files. Exclude them from /tmp daily cleanup
like is already done for /tmp/*.shm used by libc.
ok millert@ tb@, same diff landry@
tb [Thu, 30 May 2024 14:06:23 +0000 (14:06 +0000)]
ssl(8): the history section hasn't aged well at all. zap it.
discussed with naddy and jmc
ok naddy
claudio [Thu, 30 May 2024 12:33:15 +0000 (12:33 +0000)]
Properly setup the fts_state in the FTS_D case.
At fts_level 1 the state needs to be fully reset since we most probably
exited from a directory at level 1 and entered a new dir at level 1.
Without this empty directories remained since the fts_state.type
was wrong for those entries.
Noticed by job@, OK tb@
mpi [Thu, 30 May 2024 10:56:24 +0000 (10:56 +0000)]
Ensure pmap_create() waits in case kernel virtual space shortage.
Prevents a panic in pmap_pinit_pd_pae() when applying a lot of memory
pressure and the kernel needs time to recover while swapping.
Reported and fix tested by mvs@, also tested by sthen@
ok mlarkin@, mvs@, kettenis@
jsg [Thu, 30 May 2024 10:25:58 +0000 (10:25 +0000)]
avoid potential use-after-free
found by smatch, ok tb@
job [Thu, 30 May 2024 09:54:59 +0000 (09:54 +0000)]
Increase logging verbosity as to what exactly hit a limit
rpki-client: https://testbed.krill.cloud/rrdp/notification.xml: pulling from network
rpki-client: https://testbed.krill.cloud/rrdp/notification.xml: downloading snapshot (
bfb0a57e-d16b-44a1-9502-
f15b4bc1ce1a#110135)
rpki-client: parse failed, snapshot element for rsync://testbed.krill.cloud/repo/testbed/0/
DDAF321520EE4817D716FA047FC05FE2934204DB.crl too big
rpki-client: https://testbed.krill.cloud/rrdp/notification.xml: parse error at line 135: parsing aborted
rpki-client: https://testbed.krill.cloud/rrdp/notification.xml: load from network failed, fallback to rsync
OK tb@ claudio@
claudio [Thu, 30 May 2024 08:29:30 +0000 (08:29 +0000)]
Fix copy-paste error in last commit. Fixes lladdr and l3vpn regress.
Noticed by anton@
tb [Thu, 30 May 2024 04:16:25 +0000 (04:16 +0000)]
arm64: move cpu_suspended out of #ifdef SUSPEND
Matches amd64 and i386 and unbreaks the RAMDISK build
ok deraadt
tb [Thu, 30 May 2024 04:14:07 +0000 (04:14 +0000)]
sync
claudio [Wed, 29 May 2024 18:55:45 +0000 (18:55 +0000)]
Convert SCHED_LOCK from a recursive kernel lock to a mutex.
Over the last weeks the last SCHED_LOCK recursion was removed so this
is now possible and will allow to split up the SCHED_LOCK in a upcoming
step.
Instead of implementing an MP and SP version of SCHED_LOCK this just
always uses the mutex implementation.
While this makes the local s argument unused (the spl is now tracked by
the mutex itself) it is still there to keep this diff minimal.
Tested by many.
OK jca@ mpi@
tb [Wed, 29 May 2024 17:23:05 +0000 (17:23 +0000)]
asn1object: zap trailing whitespace
tb [Wed, 29 May 2024 16:49:36 +0000 (16:49 +0000)]
Make it possible for the large OID test to fail
failed was set to 0 at the top of the function, so failure and success
were indistinguishable. Move failed = 0 to the end so it can actually
fail.
tb [Wed, 29 May 2024 16:47:26 +0000 (16:47 +0000)]
Add regress coverage for some corner cases of i2d_ASN1_OBJECT()
tb [Wed, 29 May 2024 16:19:50 +0000 (16:19 +0000)]
Add regress coverage for i2d_ASN1_OBJECT() fixes
tb [Wed, 29 May 2024 16:14:38 +0000 (16:14 +0000)]
Fix i2d_ASN1_OBJECT()
When called with a pointer to NULL as an output buffer, one would expect
an i2d API to allocate the buffer and return it. The implementation here
is special and the allocation dance was forgotten, resulting in a SIGSEGV.
Add said dance.
ok jsing
tb [Wed, 29 May 2024 16:10:41 +0000 (16:10 +0000)]
Make i2d_ASN1_OBJECT() return -1 on error
This is what the (not quite appropriately) referenced ASN1_item_i2d()
page documents for errors, matches what the RETURN VALUE section has
been documenting for ages, matches BoringSSL, it's the usal behavior
for i2d_*. It's also what OpenSSL (of course incorrectly) documents.
discussed with jsing
tb [Wed, 29 May 2024 16:04:50 +0000 (16:04 +0000)]
Remove unnecessary parens from i2d_ASN1_OBJECT()
jsg [Wed, 29 May 2024 15:32:06 +0000 (15:32 +0000)]
recognise Cortex-X925 (Blackhawk), Cortex-A725 (Chaberton)
mglocker [Wed, 29 May 2024 13:56:49 +0000 (13:56 +0000)]
Set 'needs-flag' for ufshci(4) as preparation for some future hibernate
code. Remove obsolete comment while here as pointed out by kettenis@.
ok kettenis@
tb [Wed, 29 May 2024 13:27:52 +0000 (13:27 +0000)]
Clean up the list of standards a little
No need to spell out RPKI and a few other things every time they appear
in titles. Replace an obsolete standard with a new draft.
with/ok job
tb [Wed, 29 May 2024 13:26:24 +0000 (13:26 +0000)]
rpki-client: rework CRL handling
There is no benefit in parsing the CRLNumber in the RPKI. It is redundant
with other mechanisms, notably the requirements on manifests. rpki-client
never did anything with the CRL number anyway so stop parsing it in the
main process.
Move CRL AKI and CRL number handling from x509.c to crl.c, slightly improve
error checking for X509_CRL_get_ext_d2i() and only check well-formedness of
the CRL number: check it's there and non-critical. Avoid double warnings.
Add some checks for the well-formedness of the list of revoked certs.
Due to bugs in rpki-rs and Krill we can't reject empty lists (because
~15% of CRL's have this). And some people still use CRLs revoking certs
at the time they expire. This latter point might change mid-2025.
Add a hook for printing CRL numbers in file mode and warn about ill-formed
numbers (negative and overlong ones).
ok claudio job
kettenis [Wed, 29 May 2024 12:21:33 +0000 (12:21 +0000)]
Implement the guts for "suspend-to-idle" on amd64. This enables suspend
on machines that don't support S3. In its current state it doesn't save
a lot of power, but this should improve over time. Implementation of
wakeup methods is incomplete which means that some machine can't resume
at the moment.
ok mglocker@, mlarkin@, stsp@, deraadt@
claudio [Wed, 29 May 2024 10:41:12 +0000 (10:41 +0000)]
Handle IPvX only interfaces with IPvY sessions more gracefully.
In up_get_nexthop() check that the local_vX_addr is actually valid
before using it. In the UPDATE generation functions check that the
nexthop is valid before adding it and fail hard if it does not exist.
You can't announce an IPv4 prefix/gateway over an IPv6 only link.
OK henning@ sthen@
claudio [Wed, 29 May 2024 10:38:24 +0000 (10:38 +0000)]
Only fall back to the default IPv4 unicast mode if there was no MP
capability neither from our side not the remote end.
Also track unknown AFI/SAFI combos for the remote end in AID_UNSPEC
this way even unknown combos will prevent a fall back.
OK henning@ sthen@
claudio [Wed, 29 May 2024 10:36:32 +0000 (10:36 +0000)]
Remove nexthop_compare() prototype.
OK henning@ sthen@
claudio [Wed, 29 May 2024 10:34:56 +0000 (10:34 +0000)]
Rename nexthop_compare to nexthop_cmp and make it static inline.
OK henning@ sthen@
claudio [Wed, 29 May 2024 10:34:07 +0000 (10:34 +0000)]
Introduce a ring buffer for log_sockaddr() this way log_addr() can be
used more then once in a log message (e.g. log_peer_warnx + log_addr.
OK henning@ sthen@
stsp [Wed, 29 May 2024 09:04:12 +0000 (09:04 +0000)]
document qwx(4) caveats and known bugs
stsp [Wed, 29 May 2024 07:27:33 +0000 (07:27 +0000)]
fix WEP on athn(4) USB hostap
Deferring installation of software crypto keys to a task context is
not needed and results in race conditions that trigger the infamous
"key not installed for sw crypto" panic.
stsp [Wed, 29 May 2024 07:24:26 +0000 (07:24 +0000)]
repair qwx(4) WEP and TKIP via software crypto
It is difficult to make WEP and WPA1/TKIP work with hardware crypto.
Add a comment which explains why.
Ensure that setkey task state is properly cleared when the interface
goes down. This issue was found while trying to add WEP keys for hw
crypto, but is still worth fixing in general.
Also, use m_makespace to append trailing padding for the MIC when
hardware crypto is used in combination with "raw" frame mode (not
the default), instead of blindly adjusting m_len.
ok kevlo@
jsg [Wed, 29 May 2024 06:49:38 +0000 (06:49 +0000)]
regen
jsg [Wed, 29 May 2024 06:48:43 +0000 (06:48 +0000)]
another apple bluetooth; from jon@elytron.openbsd.amsterdam
jsg [Wed, 29 May 2024 06:39:13 +0000 (06:39 +0000)]
indent with tabs not spaces; from jon@elytron.openbsd.amsterdam
jsg [Wed, 29 May 2024 01:11:53 +0000 (01:11 +0000)]
remove externs with no matching var
jsg [Wed, 29 May 2024 00:48:14 +0000 (00:48 +0000)]
remove prototypes with no matching function
sthen [Tue, 28 May 2024 16:05:39 +0000 (16:05 +0000)]
document MODPY_COMPILEALL, MODPY_PYTEST_USERARGS
tb [Tue, 28 May 2024 15:42:09 +0000 (15:42 +0000)]
Test that invalid operations push the X509V3_R_UNSUPPORTED_OPTION error
tb [Tue, 28 May 2024 15:40:38 +0000 (15:40 +0000)]
Clean up and fix X509V3_EXT_add1_i2d()
When looking at this code I noticed a few leaks. Fixing those leaks
was straightforward, but following the code was really hard.
This attempts to make the logic a bit clearer. In short, there are
6 mutually exclusive modes for this function (passed in the variable
aptly called flags). The default mode is to append the extension of
type nid and to error if such an extension already exists. Then there
are other modes with varying degree of madness.
The existing code didn't make X509V3_ADD_REPLACE explicit, which is
confusing. Operations 6-15 would all be treated like X509V3_ADD_REPLACE
due to the way the function was written. Handle the supported operations
via a switch and error for operations 6-15. This and the elimination
of leaks are the only changes of behavior, as validated by relatively
extensive test coverage.
ok jsing
tb [Tue, 28 May 2024 15:33:35 +0000 (15:33 +0000)]
Add regress coverage for X509V3_add1_i2d()
claudio [Tue, 28 May 2024 15:16:45 +0000 (15:16 +0000)]
Rework the pmap ASID handling to not require the SCHED_LOCK
The ASID lookup code already uses its own mutex (pmap_asid_mtx)
and this mutex is enough to ensure that pmap_rollover_asid()
is safe. Now only the generation number check in pmap_setttb()
is done without the lock but the update of the pmap_asid_gen
is now atomic so using READ_ONCE there is enough.
OK kettenis@ mpi@
tb [Tue, 28 May 2024 13:42:06 +0000 (13:42 +0000)]
remove outdated zlib version information
from jan stary
fine with jmc
jsg [Tue, 28 May 2024 13:21:13 +0000 (13:21 +0000)]
remove space between function names and argument list
jsg [Tue, 28 May 2024 13:02:45 +0000 (13:02 +0000)]
return type on a dedicated line when declaring functions
ok stsp@
jsg [Tue, 28 May 2024 12:50:23 +0000 (12:50 +0000)]
remove maxmem extern, var removed from all archs long ago
jsg [Tue, 28 May 2024 12:31:24 +0000 (12:31 +0000)]
remove uvm_swpkeyexpire extern for var we never had
jan [Tue, 28 May 2024 12:11:26 +0000 (12:11 +0000)]
vio(4): fix jumbo frames
vio_rx_offload() was called too early. So, the consistency checks
of ether_extact() cause wrong packet detection and wrong checkums.
also tested by bluhm
ok bluhm@
kettenis [Tue, 28 May 2024 09:40:40 +0000 (09:40 +0000)]
Garbage collect sleep_abort(); it doesn't do anything useful anymore.
ok deraadt@, mlarkin@
claudio [Tue, 28 May 2024 09:27:54 +0000 (09:27 +0000)]
cpu_emergency_disable() was only used by mvme88k and can be removed now.
This removes one of the SCHED_LOCK usages in arch.
OK miod@
jsg [Tue, 28 May 2024 09:27:08 +0000 (09:27 +0000)]
remove unused isa/cs4231var.h
stsp [Tue, 28 May 2024 09:26:55 +0000 (09:26 +0000)]
fix previous such that firmware crash recovery happens in non-debug builds
claudio [Tue, 28 May 2024 09:19:04 +0000 (09:19 +0000)]
Remove the bcmmbox_write(BCMMBOX_CHANPM, ...) call in bcmmbox_attach().
This command locks up my RaspberryPi 4 while it seems to have no effect
for other devices. First of all u-boot will already enable power for us
plus it seems that more is needed than just this write to be really
effective. Why my rpi4 locks up is still unclear but this is now a
pure u-boot issue.
Tested by kettenis@ on his working rpi4 and rpi2
OK kettenis@
stsp [Tue, 28 May 2024 09:07:32 +0000 (09:07 +0000)]
Try to reset qwx(4) devices when firmware crashes and move firmware memory
dumping code into QWX_DEBUG because it is only needed by developers.
Spotted by jsg@
stsp [Tue, 28 May 2024 08:34:52 +0000 (08:34 +0000)]
Make qwx(4) offload TKIP and CCMP crypto to hardware.
This reduces CPU load during interrupts, but more importantly works
around an apparent firmware bug where incoming encrypted broadcast
and multicast frames are dropped by firmware if the hardware crypto
engine is unused. (This problem also affects Linux ath11k upstream.)
Offloading CCMP to hardware hence fixes ARP and IPv6 multicast with WPA2.
However, there are known issues with WPA1 and WEP:
While the WPA1 pairwise handshake succeeds, the TKIP group key handshake
fails for unknown reasons, resulting in association failure.
WEP is broken because software crypto is skipped entirely when the driver
uses the "native wifi" frame mode. This results in all packets being sent
in plaintext while WEP is active. In the future, we should be able to fix
this by offloading WEP to hardware as well, or by setting the frame mode
back to "raw" if WEP is used.
If the TKIP/WEP issues affect you badly then take this as an opportunity
to upgrade the access point to WPA2/AES where possible.
Tested by kettenis, kevlo, and myself.
ok kevlo@
op [Tue, 28 May 2024 07:10:30 +0000 (07:10 +0000)]
actually honour the services supported by the proc tables
ok gilles@
jsg [Tue, 28 May 2024 05:46:32 +0000 (05:46 +0000)]
use ansi style function decls to fix build with clang
jmc [Tue, 28 May 2024 05:09:19 +0000 (05:09 +0000)]
use a more up to date example for a checksum example;
example suggested by/ok djm
jsg [Tue, 28 May 2024 01:37:53 +0000 (01:37 +0000)]
Move ccb access before ccb_done to avoid a potential use-after-free
if pages can be freed from interrupt context. ok dlg@
jsg [Tue, 28 May 2024 00:24:44 +0000 (00:24 +0000)]
avoid uninitialised var use when scsi_get_link() returns NULL
found by smatch, ok krw@
tb [Mon, 27 May 2024 16:12:55 +0000 (16:12 +0000)]
openssl x509: rename pub_key to dsa_pub_key
suggested by jsing
tb [Mon, 27 May 2024 16:11:43 +0000 (16:11 +0000)]
openssl: enable -Wshadow for clang
ok job jsing
tb [Mon, 27 May 2024 16:11:16 +0000 (16:11 +0000)]
openssl: avoid shadowed pkeys in x509.c
ok job jsing
krw [Mon, 27 May 2024 14:46:26 +0000 (14:46 +0000)]
Revert NVME_GONE. Literal 0xffffffff is the preferred idiom here.
Requested by deraadt@
krw [Mon, 27 May 2024 14:18:02 +0000 (14:18 +0000)]
Replace repeated uses of magic number 0xffffffff with nice #define NVME_GONE.
Name taken from FreeBSD.
Add separate #define NVME_TIMO_PT for passthrough command poll timeout. Same
value as the currently reused NVME_TIMO_QOP.
No functional change.
deraadt [Mon, 27 May 2024 13:27:06 +0000 (13:27 +0000)]
sync
mglocker [Mon, 27 May 2024 10:27:58 +0000 (10:27 +0000)]
Use SCSI xfer timeout value for doorbell register status polling instead of
an own introduced timeout value. This fixes an SCSI SYNC command timeout
seen during suspend.
kettenis [Mon, 27 May 2024 09:31:58 +0000 (09:31 +0000)]
Set sc_state to ACPI_STATE_S0 at the end of resume instead of at the start
such that ACPI resume code can see what state we're resuming from.
ok deraadt@
jsg [Mon, 27 May 2024 09:12:31 +0000 (09:12 +0000)]
remove unused typedefs with structs that were removed
ENGINE, SSL and SSL_CTX remain even though the structs in the typedefs
don't exist as they are used as incomplete types.
feedback, ports bulk build and ok tb@
kettenis [Mon, 27 May 2024 06:20:59 +0000 (06:20 +0000)]
Decode remaining ID_AA64ISAR1_EL1 features.
ok jsg@
jsg [Mon, 27 May 2024 04:58:43 +0000 (04:58 +0000)]
remove unused xmphyreg.h
jsg [Mon, 27 May 2024 03:56:59 +0000 (03:56 +0000)]
include net/if_var.h to make this build
djm [Mon, 27 May 2024 01:52:26 +0000 (01:52 +0000)]
don't need sys/queue.h here
jsg [Mon, 27 May 2024 00:54:00 +0000 (00:54 +0000)]
drm/amdgpu: Fix possible NULL dereference in amdgpu_ras_query_error_status_helper()
From Srinivasan Shanmugam
c364e7a34c85c2154fb2e47561965d5b5a0b69b1 in linux-6.6.y/6.6.32
b8d55a90fd55b767c25687747e2b24abd1ef8680 in mainline linux
jsg [Mon, 27 May 2024 00:51:31 +0000 (00:51 +0000)]
drm/amd/display: Fix division by zero in setup_dsc_config
From Jose Fernandez
7e4f50dfc98c49b3dc6875a35c3112522fb25639 in linux-6.6.y/6.6.32
130afc8a886183a94cf6eab7d24f300014ff87ba in mainline linux
kettenis [Sun, 26 May 2024 22:04:52 +0000 (22:04 +0000)]
Revert bits that got accidentally committed.
spotted by patrick@
naddy [Sun, 26 May 2024 20:35:12 +0000 (20:35 +0000)]
remove references to SSH1 and DSA server keys
mglocker [Sun, 26 May 2024 20:06:27 +0000 (20:06 +0000)]
Fix suspend/resume for ums(4) and umt(4); Calling hidm*_attach not at the
end of the device driver attach function can cause accessops functions to
be called by wscons(4) *before* the device has completed its attach
procedure. In this case this has led the device driver to ignore
interrupts after resume, because during resume ums_disable/umt_disable
were called last, *after* ums_enable/umt_enable.
OK phessler@
kettenis [Sun, 26 May 2024 18:06:21 +0000 (18:06 +0000)]
Clear interrupt status to prevent power down after resume initiated by
pressing the power button.
ok patrick@
kettenis [Sun, 26 May 2024 13:40:54 +0000 (13:40 +0000)]
Add support for configuring sleep voltage settings based on device tree
properties for the RK809.
ok patrick@
kettenis [Sun, 26 May 2024 13:37:31 +0000 (13:37 +0000)]
Implement wakeup interrupts on amd64. Provide a dummy implementation for
i386 such that we can call the necessary hooks in the suspend/resume code
without adding #ifdefs. Tweak the arm64 implementation such that we can
call the hooks earlier as this is necessary to mask MSI and MSI-X
interrupts on arm64.
ok deraadt@, mlarkin@
jsg [Sun, 26 May 2024 10:01:01 +0000 (10:01 +0000)]
remove unneeded includes
tb [Sun, 26 May 2024 09:54:16 +0000 (09:54 +0000)]
Remove documentation of optional md in one-step hashes
This functionality will be removed, so stop documenting it. Instead
mention that another implementation still supports this.