krw [Tue, 6 Sep 2022 14:14:44 +0000 (14:14 +0000)]
Delete some unreferenced SMD, ST506 and archaic SCSI #define's
that use d_drivedata.
Since nothing else in the tree refers to d_drivedata other than
/etc/disktab parsing and no /etc/disktab entry utilizes the
:d[0-4]: attributes, stop disklabel(8) both printing "drivedata:
0" and paying attention to any "drivedata: ..." lines in ascii
labels being read.
ok jsg@ miod@
kettenis [Tue, 6 Sep 2022 13:52:50 +0000 (13:52 +0000)]
Attach aplmbox(4) early.
job [Tue, 6 Sep 2022 11:16:51 +0000 (11:16 +0000)]
Properly free memory in filemode
OK tb@
kn [Tue, 6 Sep 2022 10:22:31 +0000 (10:22 +0000)]
Remove more mkerr.pl remnants, missed in previous
Noticed by jsg
Feedback OK jsg
jsing [Tue, 6 Sep 2022 06:38:26 +0000 (06:38 +0000)]
Replace aes_{ccm,xts}_cleanup usage with NULL.
Only change in generated assembly is due to line numbers.
jsing [Tue, 6 Sep 2022 06:17:11 +0000 (06:17 +0000)]
Stop casting a size_t to a long and then passing it as a size_t.
These cipher implementations take a size_t length argument, so stop
casting it to a long.
Found by Coverity.
ok tb@
gkoehler [Mon, 5 Sep 2022 21:52:53 +0000 (21:52 +0000)]
sync
tb [Mon, 5 Sep 2022 21:36:46 +0000 (21:36 +0000)]
Fix copy-paste error
tb [Mon, 5 Sep 2022 21:34:23 +0000 (21:34 +0000)]
Plug leaks due to not resetting the EVP_CIPHER_CTX
tb [Mon, 5 Sep 2022 21:12:08 +0000 (21:12 +0000)]
Two more missing long long casts
tb [Mon, 5 Sep 2022 21:08:08 +0000 (21:08 +0000)]
More long long casts for printing time_t
tb [Mon, 5 Sep 2022 21:06:31 +0000 (21:06 +0000)]
Convert from %i to %d
tb [Mon, 5 Sep 2022 20:53:01 +0000 (20:53 +0000)]
cast time_t to long long before printing for portability
mglocker [Mon, 5 Sep 2022 20:11:44 +0000 (20:11 +0000)]
Remove some inactive code, comments, and DPRINTFs. Minor style changes.
miod [Mon, 5 Sep 2022 20:09:24 +0000 (20:09 +0000)]
Do not perform out-of-bounds arrray accesses for bogus relocation type values.
job [Mon, 5 Sep 2022 20:08:26 +0000 (20:08 +0000)]
Update to most recent spec
kn [Mon, 5 Sep 2022 19:32:50 +0000 (19:32 +0000)]
Use exact fdisk arguments from "(W)hole disk" answer
Not all architectures did what the installer does with empty disks.
kettenis [Mon, 5 Sep 2022 19:18:56 +0000 (19:18 +0000)]
Don't ignore memory blocks smaller than 64KB. Some EFI implementations
(such as the one on the x13s) allocate memory with the EfiBootSevicesData
type in a semi-random fashion. Ignoring small regions with that type
results in different memory maps between boots of the same kernel.
This causes problems with upcoming hibernate support.
The decision to ignore small regions was made because we do this on
amd64 to work arounmd broken BIOS implementations and because of fears
that we would run out of physical memory segments in UVM. We have some
reasons to believe that we can trust the EFI memory map on arm64 and the
risk of running out of physical memory segments is mitigated by the fact
that we try to merge memory regions before loading them into UVM. If
for some reason we see a significant drop in physical memory on certain
machines, we should probably increase the number of items in the array
we use to store memory regions and/or increase the number of physical
memory segments in UVM.
ok mlarkin@
tb [Mon, 5 Sep 2022 18:07:04 +0000 (18:07 +0000)]
Reset provider in each iteration
If a providerAS sets an afiLimit, subsequent providerAS that don't set it
would erroneously inherit that limit. Zero out the provider at the top of
the loop to avoid this problem.
ok job
mbuhl [Mon, 5 Sep 2022 16:37:47 +0000 (16:37 +0000)]
Pledge sendmmsg and recvmmsg with stdio similar to their non-loop
counter parts. Input deraadt.
ok bluhm
bluhm [Mon, 5 Sep 2022 15:47:39 +0000 (15:47 +0000)]
Move mld6 address variables from data to stack memory to make them
MP safe. Due to the KAME scope address hack, the link-local all
nodes and all routers IPv6 addresses cannot be const.
OK benno@
bluhm [Mon, 5 Sep 2022 14:56:08 +0000 (14:56 +0000)]
Use shared netlock in soreceive(). The UDP and IP divert layer
provide locking of the PCB. If that is possible, use shared instead
of exclusive netlock in soreceive(). The PCB mutex provides a per
socket lock against multiple soreceive() running in parallel.
Release and regrab both locks in sosleep_nsec().
OK mvs@
jsg [Mon, 5 Sep 2022 14:22:58 +0000 (14:22 +0000)]
drm/amd/display: avoid doing vm_init multiple time
From Charlene Liu
85dd24ff77c15f5fc0e16bc3f288f5d1ac93e02b in linux 5.15.y/5.15.65
5544a7b5a07480192eb5fd3536462faed2c21528 in mainline linux
jsg [Mon, 5 Sep 2022 14:21:08 +0000 (14:21 +0000)]
drm/amdgpu: Increase tlb flush timeout for sriov
From Dusica Milinkovic
898467ac9bcb56090f0b651088a36331ff779e4c in linux 5.15.y/5.15.65
373008bfc9cdb0f050258947fa5a095f0657e1bc in mainline linux
jsg [Mon, 5 Sep 2022 14:18:34 +0000 (14:18 +0000)]
drm/amd/display: Fix pixel clock programming
From Ilya Bakoulin
4df54c493e76f3cfa0bc8c54c5c43faa3b6e78d4 in linux 5.15.y/5.15.65
04fb918bf421b299feaee1006e82921d7d381f18 in mainline linux
jsg [Mon, 5 Sep 2022 14:16:36 +0000 (14:16 +0000)]
drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid
From Evan Quan
a89e753d5a9f3b321f4a3098e2755c5aabcff0af in linux 5.15.y/5.15.65
0a2d922a5618377cdf8fa476351362733ef55342 in mainline linux
jsg [Mon, 5 Sep 2022 14:15:03 +0000 (14:15 +0000)]
drm/amd/display: clear optc underflow before turn off odm clock
From Fudong Wang
5ee30bcfdb32526233d2572f3d9ec371928679f1 in linux 5.15.y/5.15.65
b2a93490201300a749ad261b5c5d05cb50179c44 in mainline linux
jsg [Mon, 5 Sep 2022 14:12:51 +0000 (14:12 +0000)]
drm/amd/display: For stereo keep "FLIP_ANY_FRAME"
From Alvin Lee
e407e04a93d7b1209669220fab5eb69ab7b09baf in linux 5.15.y/5.15.65
84ef99c728079dfd21d6bc70b4c3e4af20602b3c in mainline linux
jsg [Mon, 5 Sep 2022 14:11:02 +0000 (14:11 +0000)]
drm/amd/display: Fix HDMI VSIF V3 incorrect issue
From Leo Ma
2cddd3d0b049a5e0666f93ea8c0d6ba6cc4bbec4 in linux 5.15.y/5.15.65
0591183699fceeafb4c4141072d47775de83ecfb in mainline linux
jsg [Mon, 5 Sep 2022 14:09:09 +0000 (14:09 +0000)]
drm/amd/display: Avoid MPC infinite loop
From Josip Pavic
0c8abeceee0f58ad3fdc66e1de0c0e02b962653b in linux 5.15.y/5.15.65
8de297dc046c180651c0500f8611663ae1c3828a in mainline linux
jsg [Mon, 5 Sep 2022 14:06:39 +0000 (14:06 +0000)]
drm/i915/gt: Skip TLB invalidations once wedged
From Chris Wilson
4676773ea117624ced48fdf9806d5e0dc051bd7f in linux 5.15.y/5.15.65
e5a95c83ed1492c0f442b448b20c90c8faaf702b in mainline linux
jsg [Mon, 5 Sep 2022 14:04:28 +0000 (14:04 +0000)]
drm/bridge: Add stubs for devm_drm_of_get_bridge when OF is disabled
From Maxime Ripard
f8b07c05b69969c41efafda7022d6cb184d61bf9 in linux 5.15.y/5.15.65
59050d783848d9b62e9d8fb6ce0cd00771c2bf87 in mainline linux
tb [Mon, 5 Sep 2022 12:25:32 +0000 (12:25 +0000)]
Don't leak cert in aspa_parse()
ok job
sthen [Mon, 5 Sep 2022 11:21:08 +0000 (11:21 +0000)]
sync
kn [Mon, 5 Sep 2022 11:12:20 +0000 (11:12 +0000)]
Fix -r on multi-chunk softraid volumes
Running installboot(8) on softraid(4) volumes means installing stages on
every softraid chunk.
The overall idea is the same, but MD implementations differ.
sparc64_softraid.c's sr_install_bootblk() reuses sparc64_installboot.c's
md_installboot() for this.
For sparc64, md_installboot() does the copy of stage 2, usually
/usr/mdec/ofwboot to /ofwboot, so when `-r root' is passed, it prefixes the
file path with "root".
For single-disk installations (plain-disk and single-chunk softraid) this is
fine, but as soon as multiple chunks are used, md_installboot() currently
prefixes the path each time, obviously resulting in invalid paths starting
with the second run.
Other architectures do reuse md_installboot() as well but either don't do
such a copy or implement the prefixing differently -- plus they must support
softraid in the firt place to be able to hit this type of bug.
With this fixed, regress/usr.sbin/installboot finally passes on sparc64 and
installboot no longer fails at the end of a fresh installation onto softraid
with multiple chunks.
"looks correct" miod
mvs [Mon, 5 Sep 2022 10:31:25 +0000 (10:31 +0000)]
Add missing prototypes for route_attach() and route_detach().
kn [Mon, 5 Sep 2022 10:29:27 +0000 (10:29 +0000)]
boot_*.8: reference installboot.8, rectify FFS note on sparc64
On sparc64, installboot(8) does not deal with any file system; its -p is a
NOOP and according to CVS history the old sys/arch/sparc64/installboot/
never prepared a file system, either.
Remove this single misleading mention alltogether and rely on the now
consistently cross-linked MI installboot(8) for details, if any.
This syncs the list of currently existing MD boot_*(8/*) pages with the list
of usr.sbin/installboot/*_installboot.c files.
boot_alpha(8/alpha) already references installboot(8) but still uses
sys/arch/alpha/stand/installboot/ instead of usr.sbin/installboot/.
boot_luna88k(8/luna88k) exists but luna88k does not use installboot at all.
installboot(8) has additional support for efi (armv7, arm64, riscv64),
landisk, loongson, octeon and powerpc64 but those architectures currently
lack their own MD boot_*(8/*) manual.
OK miod
kn [Mon, 5 Sep 2022 10:03:50 +0000 (10:03 +0000)]
Fix file specification, zap partition bits, rectify disk naming errors
In boot_macppc(8), the current format a) claims to support specific disk/MBR
partitions which ofwboot clearly does not parse as such and b) lacks markup
to make clear which optional parts can (not) be omitted in what way.
Fixing both turns
promdev:partition/filename options
into
[[promdev:]filename] [-acds]
Same goes for boot(8/macppc), which has been apparently has been copied
from boot(8/amd64) without accounting for all platform specific details.
On amd64, biosboot(8) sees disks as 'sd' which (accidentially?) matches the
kernel driver's sd(4) name; it also supports specific disklabel(5) slices,
so amd64 can do 'sd0a:/bsd'.
On macppc, disks show up as 'ide', 'cd' or 'hd' which stems from
OpenFirmware alone, not matching the wd(4) driver's name. Also, ofwboot
always boots off the 'a' label, so macppc can only do 'hd:/bsd'.
Found while installing OpenBSD/macppc from CD inside QEMU but failing to
boot from disk inside QEMU and consulting our manual pages for help wrt.
specifying a boot device. Turns out QEMU's OpenBIOS simply cannot boot from
MSDOS filesystems (thanks gkoehler), so it wouldn't work no matter what
boot file specification I'd use.
tests/agreement gkoehler
Feedback OK miod
OK tobhe
OK jmc on a previous boot_macppc.8 diff
mglocker [Mon, 5 Sep 2022 09:00:33 +0000 (09:00 +0000)]
Cleanup USB methods so that they align to what we do in other HC drivers,
like xhci(4) and ehci(4).
ok mpi@
anton [Mon, 5 Sep 2022 05:34:25 +0000 (05:34 +0000)]
Add minimal tooling for separating tests into dedicated programs.
Used to flag the newly added test_bind_unix_socket() as expected to
fail.
jsing [Sun, 4 Sep 2022 15:56:51 +0000 (15:56 +0000)]
Remove dead code.
No change in generated assembly.
jsing [Sun, 4 Sep 2022 15:54:42 +0000 (15:54 +0000)]
Remove dead code.
No change in generated assembly.
jsing [Sun, 4 Sep 2022 15:45:25 +0000 (15:45 +0000)]
Add bounds checks for various EVP cipher implementations.
The EVP cipher API uses size_t, however a number of the underlying
implementations use long in their API. This means that an input with
size > LONG_MAX will go negative.
Found by Coverity, hiding under a large pile of macros.
ok tb@
jsing [Sun, 4 Sep 2022 13:55:39 +0000 (13:55 +0000)]
Remove dead code.
Only change to generated assembly is due to line numbers.
jsing [Sun, 4 Sep 2022 13:34:13 +0000 (13:34 +0000)]
Expand the looney M_do_cipher macro.
Only change in generated assembly is due to line numbers.
jsing [Sun, 4 Sep 2022 13:17:18 +0000 (13:17 +0000)]
Rearrange some functions.
Pull the init_key and ctrl (if present) functions up to the top. This
improves readability and allows for the removal of function prototypes.
No functional change.
anton [Sun, 4 Sep 2022 10:10:20 +0000 (10:10 +0000)]
Make unveil tests less chatty when things work as expected.
jsing [Sun, 4 Sep 2022 09:56:30 +0000 (09:56 +0000)]
Remove now unused EVP_C_DATA macro.
jsing [Sun, 4 Sep 2022 09:52:22 +0000 (09:52 +0000)]
Remove now unused BLOCK_CIPHER_* macros.
jsing [Sun, 4 Sep 2022 09:48:23 +0000 (09:48 +0000)]
Expand BLOCK_CIPHER_* macros.
No change in generated assembly.
bluhm [Sun, 4 Sep 2022 09:04:27 +0000 (09:04 +0000)]
Use pru_send function to check socket splicing compatibility. Only
checking socket type is not sufficient as it could splice together
unix and inet sockets resulting in crashes. As splicing is about
sending, the same send function looks like a good criteria.
Reported-by: syzbot+fc6901d63d858d5dd00a@syzkaller.appspotmail.com
Reported-by: syzbot+0e026f1bf8b259c6395e@syzkaller.appspotmail.com
OK gnezdo@
jsing [Sun, 4 Sep 2022 08:57:32 +0000 (08:57 +0000)]
Mechanically expand BLOCK_CIPHER_* macros.
No change in generated assembly.
jsing [Sun, 4 Sep 2022 08:54:16 +0000 (08:54 +0000)]
Mechanically expand BLOCK_CIPHER_* macros.
No change in generated assembly.
mglocker [Sun, 4 Sep 2022 08:42:39 +0000 (08:42 +0000)]
Improve periodic USB transfers (device intr, isoc) used for input
devices, audio, and video. It's still not perfect, and will need
further improvements.
High level, the diff contains following changes:
* Sync up with the Linux code base, which did re-work the periodic
scheduling code path.
* Run the driver in IPL_VM instead of IPL_USB to prioritize us before
lower/equal interrupts (same what NetBSD does).
* Add two new flags to our USB stack required by the updated driver
code:
- 'multi' flag in the usbd_hub structure to keep track whether
a hub has one Transaction Translator for all ports (single TT)
or one Transaction Translator per port (multi TT).
- 'hcpriv' pointer in the usbd_tt structure for the HC driver to
allocate memory for the scheduling depending on single or multi TT.
"go for it" kettenis@
kn [Sun, 4 Sep 2022 08:24:09 +0000 (08:24 +0000)]
Use simpler disklabel template
jsing [Sun, 4 Sep 2022 08:18:07 +0000 (08:18 +0000)]
Mechanically expand BLOCK_CIPHER_* ciphers.
This includes the wonderful BLOCK_CIPHER_ecb_loop - a for loop in a macro.
No change in generated assembly.
kn [Sun, 4 Sep 2022 08:06:40 +0000 (08:06 +0000)]
Document disklabel(8) -T's new RAID template
OK jmc
jsing [Sun, 4 Sep 2022 08:06:02 +0000 (08:06 +0000)]
Remove now unused IMPLEMENT_CFBR macro.
tb [Sun, 4 Sep 2022 07:55:32 +0000 (07:55 +0000)]
Make ssl_create_cipher_list() have a single exit
This simplifies memory management and makes it easier to see the leak
that were introduced in the previous commit. Sprinkle a few malloc
errors for consistency.
CID 278396
with/ok jsing
jsing [Sun, 4 Sep 2022 07:54:59 +0000 (07:54 +0000)]
Mechanically expand IMPLEMENT_CFBR macros.
Only change to generated assembly is due to the use of EVPerror().
ajacoutot [Sun, 4 Sep 2022 06:57:13 +0000 (06:57 +0000)]
Fix regression in previous commit.
Moving the configuration check to its own configtest function means rc_pre
exit code will now be that of the && list (sasyncd_flags).
Just do what isakmpd does and return 0.
from lucas at sexy dot is, thanks!
jsg [Sun, 4 Sep 2022 06:49:11 +0000 (06:49 +0000)]
spelling
tb [Sat, 3 Sep 2022 23:12:36 +0000 (23:12 +0000)]
Provide PCKBC_AUX to fix compilation
from mlarkin
mvs [Sat, 3 Sep 2022 22:43:38 +0000 (22:43 +0000)]
Move PRU_PEERADDR request to (*pru_peeraddr)().
Introduce in{,6}_peeraddr() and use them for inet and inet6 sockets,
except tcp(4) case.
Also remove *_usrreq() handlers.
ok bluhm@
bluhm [Sat, 3 Sep 2022 22:11:09 +0000 (22:11 +0000)]
Initialize TCP mutex forgotten in previous commit.
found by Hrvoje Popovski with witness; OK mvs@
job [Sat, 3 Sep 2022 21:24:02 +0000 (21:24 +0000)]
Properly free() crl & auth tree in parser process
OK claudio@
mbuhl [Sat, 3 Sep 2022 21:16:51 +0000 (21:16 +0000)]
regen
kn [Sat, 3 Sep 2022 21:16:05 +0000 (21:16 +0000)]
Keep _fw2 in local md_consoleinfo() scope
Missed in previous
OK kettenis
mbuhl [Sat, 3 Sep 2022 21:13:48 +0000 (21:13 +0000)]
Make recvmmsg and sendmmsg look more alike. change the flag type
to int like other flag parameters, NetBSD uses unsigned int, FreeBSD
and Linux do int.
OK bluhm@
jsing [Sat, 3 Sep 2022 20:12:24 +0000 (20:12 +0000)]
Remove now unused IMPLEMENT_BLOCK_CIPHER macro.
Also remove various comments noting that it cannot be used for certain
block ciphers (which kinda defeats the purpose of having a generic
implementation in the first place).
benno [Sat, 3 Sep 2022 20:07:31 +0000 (20:07 +0000)]
Move the daemon() call in the parent process from after forking the
children to just before. That way the parent disasociates from its
controling terminal and shell, but not from its children.
Remove the dup2() bits that were copied from daemon() to solve the
problem that the children still had the stdio fds open. This is now
done in the parent earlier.
Remove the setsid() and setpgid(). It is unclear what their intent
was, but they dont seem to make sense, as daemon() covers this as well
and there seems to be no reason the cildren procs need to do that.
ok claudio@ bluhm@
jsing [Sat, 3 Sep 2022 20:06:43 +0000 (20:06 +0000)]
Mechanically expand IMPLEMENT_BLOCK_CIPHER macro.
Only change to generated assembly is due to EVPerror()'s use of line
numbers.
jsing [Sat, 3 Sep 2022 20:02:17 +0000 (20:02 +0000)]
Mechanically expand IMPLEMENT_BLOCK_CIPHER macro.
No change in generated assembly.
jsing [Sat, 3 Sep 2022 19:59:32 +0000 (19:59 +0000)]
Mechanically expand IMPLEMENT_BLOCK_CIPHER macro.
Only change to generated assembly is due to EVPerror()'s use of line
numbers.
CVS ----------------------------------------------------------------------
jsing [Sat, 3 Sep 2022 19:51:53 +0000 (19:51 +0000)]
Mechanically expand IMPLEMENT_BLOCK_CIPHER macro.
No change to generated assembly.
jsing [Sat, 3 Sep 2022 19:43:16 +0000 (19:43 +0000)]
Mechanically expand IMPLEMENT_BLOCK_CIPHER macro.
These macros make the ASN.1 macros seem sane - there are layers and layers
and layers here, which are hiding bugs.
No change to generated assembly.
Discussed with tb@
bluhm [Sat, 3 Sep 2022 19:22:19 +0000 (19:22 +0000)]
Use a mutex to update tcp_maxidle, tcp_iss, and tcp_now. This
removes pressure from the exclusive netlock in tcp_slowtimo().
Reading is done atomically. Ensure that the tcp_now value is read
only once per function to provide consistent time.
OK yasuoka@
jsing [Sat, 3 Sep 2022 19:15:23 +0000 (19:15 +0000)]
Rewrap some lines, no functional change.
jsing [Sat, 3 Sep 2022 19:14:25 +0000 (19:14 +0000)]
Tidy up asn1_c2i_primitive() slightly.
Rename some variables and consistently goto error.
ok tb@
jsing [Sat, 3 Sep 2022 19:11:45 +0000 (19:11 +0000)]
Avoid recycling ASN1_STRINGs when decoding ASN.1.
Rather than recycling an existing ASN1_STRING and changing its type, free
it and allocate a replacement. This simplifies the code and potentially
avoids bugs resulting from reuse.
ok tb@
kettenis [Sat, 3 Sep 2022 19:05:52 +0000 (19:05 +0000)]
Set AP power state. This is needed if U-Boot didn't do this for us.
kettenis [Sat, 3 Sep 2022 19:04:28 +0000 (19:04 +0000)]
Handle syslog messages and add support for setting the AP power state.
jsing [Sat, 3 Sep 2022 18:59:09 +0000 (18:59 +0000)]
Remove duplicate prototype that just snuck in.
jsing [Sat, 3 Sep 2022 18:54:36 +0000 (18:54 +0000)]
Ensure a constructed ASN.1 INTEGER is considered invalid when decoding.
jsing [Sat, 3 Sep 2022 18:52:18 +0000 (18:52 +0000)]
Ensure ASN.1 types are appropriately encoded.
Per X.690, some ASN.1 types must be primitive encoded, some must be
constructed and some may be either. Add this data to our types table
and check the encoding against this information when decoding.
ok tb@
mvs [Sat, 3 Sep 2022 18:48:49 +0000 (18:48 +0000)]
Move PRU_SOCKADDR request to (*pru_sockaddr)()
Introduce in{,6}_sockaddr() functions, and use them for all except tcp(4)
inet sockets. For tcp(4) sockets use tcp_sockaddr() to keep debug ability.
The key management and route domain sockets returns EINVAL error for
PRU_SOCKADDR request, so keep this behaviour for a while instead of make
pru_sockaddr handler optional and return EOPNOTSUPP.
ok bluhm@
jsing [Sat, 3 Sep 2022 18:45:51 +0000 (18:45 +0000)]
Provide c2i_ASN1_ENUMERATED_cbs() and call it from asn1_c2i_primitive().
This avoids asn1_c2i_primitive() from needing knowledge about the internals
of ASN1_INTEGER and ASN1_ENUMERATED.
ok tb@
mlarkin [Sat, 3 Sep 2022 18:17:15 +0000 (18:17 +0000)]
whitespace
kettenis [Sat, 3 Sep 2022 18:05:10 +0000 (18:05 +0000)]
Make sure we don't suspend if we have no way to wake up the machine.
The idea is that device drivers that can wake up the machine register
themselves by calling device_register_wakeup(). To prevent regressions
on amd64, we let acpi(4) register itself as a wakeup device if the AML
for the machine defines wakeup devices. This may be refined in the
future.
This diff will prevent people from suspending their arm64 SBCs without
having a way to wake them up. For now the only driver that registers
itself is axppmic(4), which means that at this moment only SBCs with
an allwinner A64 or H5 SoC will actually support suspend/resume.
ok mlarkin@, deraadt@
jsing [Sat, 3 Sep 2022 17:47:47 +0000 (17:47 +0000)]
Prepare to provide OPENSSL_cleanup.
OPENSSL_cleanup() cleans up and deallocates memory in use by the library.
There are a couple of use cases for this, primarily related to memory
leak testing. This will not be called automatically in LibreSSL, which
means that OpenSSL's OPENSSL_NO_INIT_ATEXIT is implied. If code wants to
clean up then they need to explicitly call this themselves.
ok tb@
tb [Sat, 3 Sep 2022 17:43:14 +0000 (17:43 +0000)]
New test coverage for RC4
From Joshua Sing
jsing [Sat, 3 Sep 2022 16:01:23 +0000 (16:01 +0000)]
Stop using CBIGNUM_it internal to libcrypto.
CBIGNUM_it is supposed to be the "clear bignum" or "secure" bignum - that
is one which zeros its memory after use and ensures that the constant time
flags are set... in LibreSSL we always do both of these things for BIGNUMs,
so just use BIGNUM_it instead.
ok tb@
jmc [Sat, 3 Sep 2022 15:59:04 +0000 (15:59 +0000)]
- rework the -f text to read better; ok job
- while here, wrap a long line
claudio [Sat, 3 Sep 2022 15:58:40 +0000 (15:58 +0000)]
Remove -lncurses from LDADD. It is not used. Also add DPADD line.
OK deraadt@
kettenis [Sat, 3 Sep 2022 15:48:16 +0000 (15:48 +0000)]
Allow ikbd(4) to become the console keyboard.
ok miod@
kn [Sat, 3 Sep 2022 15:46:20 +0000 (15:46 +0000)]
Fix passing explicit stage files
Every platform ought to set `stages', `stage1' and optionally `stage2'
in md_init(), otherwise passing explicit files results won't work as
`stages' is zero-initialised and no default path is set:
# installboot -nv wd0 ./ofwboot
usage: installboot [-nv] [-r root] disk [stage1]
installboot [-nv] -p disk
This is correct synopsis and ought to work, but macppc_installboot.c
(others, too) has an empty md_init(). Set stage bits to fix this:
# ./obj/installboot -nv wd0 ./ofwboot
Using / as root
would install bootstrap on /dev/rwd0c
using first-stage ./ofwboot
would copy ./ofwboot to /tmp/installboot.Ymmm6QU8OJ/ofwboot
Using `stage1' leads to a bit more cleanup since early MI installboot.c
handles `-r', i.e. write_filesystem() no longer has needs to do the
fileprefix() dance itself.
This makes regress/usr.sbin/installboot pass on macppc (while being lucky
or carrying miod's fix for the kernel disklabel race manifesting on vnd).
OK gkoehler
kettenis [Sat, 3 Sep 2022 15:29:43 +0000 (15:29 +0000)]
Allow suspend with root on sdmmc(4).
ok deraadt@
job [Sat, 3 Sep 2022 15:13:44 +0000 (15:13 +0000)]
Clarify warning
yasuoka [Sat, 3 Sep 2022 14:57:54 +0000 (14:57 +0000)]
When divert-reply is used, keep some pf states after pcb is dropped if
its local address is translated, to prevent its source port from being
reused. regress test by blumn.
ok blumn
job [Sat, 3 Sep 2022 14:41:47 +0000 (14:41 +0000)]
Don't doublecheck whether the RSC eContent Resourceblock contains inherit elements
The RSC ASN.1 templates make it impossible to pass an RFC3779-style inherit option
because of the use of ConstrainedIPAddressFamily and ConstrainedASIdentifiers.
OK tb@