tb [Thu, 16 Nov 2023 11:10:59 +0000 (11:10 +0000)]
Add a helper to extrct the CRL Number from a crl
ok claudio
op [Thu, 16 Nov 2023 10:23:21 +0000 (10:23 +0000)]
consider an MX of "localhost" as it were a "Null MX"
diff from Philipp (philipp+openbsd [at] bureaucracy [dot] de), thanks!
ok sthen@
anton [Thu, 16 Nov 2023 06:27:12 +0000 (06:27 +0000)]
Add expected output files, missed in previous commit. I hope our grep is
producing the wanted output at this point.
dlg [Thu, 16 Nov 2023 03:17:34 +0000 (03:17 +0000)]
avoid reading data when enumerating kstats.
this means we can reliably read the provider/instance/name/unit
tuple, which should avoid "duplicate kstat entry" when multiple
kstat read handlers have issues.
found on a box with multiple rge interfaces, which have hardware
backed kstats that can only be read when the interface is up.
dlg [Thu, 16 Nov 2023 02:45:54 +0000 (02:45 +0000)]
handle printing cpu freq and volt kstat_kv types
dlg [Thu, 16 Nov 2023 02:45:20 +0000 (02:45 +0000)]
cpu frequency and volt types for kstat_kvs
dlg [Wed, 15 Nov 2023 23:57:45 +0000 (23:57 +0000)]
use a random number as the cookie in bio ioctls.
ok kn@ krw@
djm [Wed, 15 Nov 2023 23:03:38 +0000 (23:03 +0000)]
when connecting via socket (the default case), filter addresses by
AddressFamily if one was specified. Fixes the case where, if
CanonicalizeHostname is enabled, ssh may ignore AddressFamily.
bz5326; ok dtucker
djm [Wed, 15 Nov 2023 22:51:49 +0000 (22:51 +0000)]
when deciding whether to enable keystroke timing obfuscation,
only consider enabling it when a channel with a tty is open.
Avoids turning on the obfucation when X11 forwarding only is in use,
which slows it right down. Reported by Roger Marsh
kn [Wed, 15 Nov 2023 20:23:19 +0000 (20:23 +0000)]
Constify disk_map()'s path argument
The disklabel UID passed in is not modified, reflect that and allow callers
using 'const char *'.
OK miod
millert [Wed, 15 Nov 2023 18:56:53 +0000 (18:56 +0000)]
fnematch: fix a bug that could result in extra chars being pushed back.
From Arnold Robbins. https://github.com/onetrueawk/awk/pull/213
millert [Wed, 15 Nov 2023 18:48:13 +0000 (18:48 +0000)]
fnematch: fix out-of-bounds access on EOF
fnematch() expects to store a NUL byte when EOF is encountered.
However, the rewrite broke this assumption because r.len from getrune()
is zero on EOF. This results in j becoming negative on EOF, causing an
out-of-bounds access. It is simplest to just force r.len to 1 on EOF
to copy a single NUL byte--the rune is initialized to zero even for EOF.
This also fixes the call to adjbuf(). We cannot use 'k' to determine
when we need to expand the buffer now that we are potentially reading
more than a single byte at a time.
https://github.com/onetrueawk/awk/pull/211
otto [Wed, 15 Nov 2023 15:52:09 +0000 (15:52 +0000)]
Correct denominators when converting NTP fixed point values to double
and vice-versa; ok tb@
martijn [Wed, 15 Nov 2023 13:36:11 +0000 (13:36 +0000)]
Make sure we allocate the correct size for an appl_agentcap.
OK claudio@ miod@
afresh1 [Wed, 15 Nov 2023 02:07:43 +0000 (02:07 +0000)]
Don't let signify mess up our status line
While not verbose the status line is built as we go, so save errors from
signify until after we've finished the status line. This should exit and print
the error immediately, since this happens when fetching the SHA256.sig and
fw_update exits early in that case.
afresh1 [Wed, 15 Nov 2023 02:03:49 +0000 (02:03 +0000)]
Improve output after waiting for package db lock
OpenBSD::PackageInfo::lock_db will send messages to STDERR if we ended up
waiting for a lock, if that happens, it stomped over the "fw_update:" prefix on
the status line so tidy up and print it out again.
afresh1 [Wed, 15 Nov 2023 02:00:02 +0000 (02:00 +0000)]
Better handle ftp errors in fw_update
Trap STDERR to post-process it looking for 404 errors to handle them differently.
The fetch method now also returns different error codes for errors that can
continue on. Currently only 404 is special and everything else should cause
fw_update to exit early without trying all the files.
Exit early if the SHA256.sig gets a 404 because that is required to figure out
what valid firmware are.
afresh1 [Wed, 15 Nov 2023 01:54:01 +0000 (01:54 +0000)]
Improve fw_update output on errors
Mostly some setup for the future, by separating out the filehandles we use for
the status and errors more specifically, we can trap the things we know about
without hiding surprises.
tb [Wed, 15 Nov 2023 00:55:43 +0000 (00:55 +0000)]
Drop some unnecessary parentheses
tb [Wed, 15 Nov 2023 00:52:44 +0000 (00:52 +0000)]
Shuffle getters and adders down a bit
These use static helper functions which don't need prototypes this way.
millert [Wed, 15 Nov 2023 00:52:42 +0000 (00:52 +0000)]
Add regress test for "grep -m" behavior. From Crystal Kolipe.
millert [Wed, 15 Nov 2023 00:50:43 +0000 (00:50 +0000)]
procline: only reduce mcount once per line, not once per match.
This makes "grep -m" behave like GNU grep (where the -m option
originated). From Crystal Kolipe.
gkoehler [Tue, 14 Nov 2023 21:31:01 +0000 (21:31 +0000)]
Bump powerpc64 default datasize to 1536M
This is for llvm 16; powerpc64 (like some other platforms) needs a
higher datasize limit to build base-clang 16.
ok jca@
nicm [Tue, 14 Nov 2023 20:01:11 +0000 (20:01 +0000)]
Don't strdup NULL filename.
jca [Tue, 14 Nov 2023 16:42:14 +0000 (16:42 +0000)]
Add missing .PATH
Reported and suggested by jsing@
nicm [Tue, 14 Nov 2023 15:59:49 +0000 (15:59 +0000)]
Handle NULL client (in config file) when showing a status message; also
copy the file when processing if-shell since it may be freed. GitHub
issue 3746.
nicm [Tue, 14 Nov 2023 15:38:33 +0000 (15:38 +0000)]
Use SM 2026 for Sync which is more widely supported now.
jsg [Tue, 14 Nov 2023 12:48:46 +0000 (12:48 +0000)]
increase datasize to 1536M for the default login class
needed to build llvm-16 gnu/usr.bin/clang/include/llvm/AMDGPU
ok jca@
claudio [Tue, 14 Nov 2023 10:31:22 +0000 (10:31 +0000)]
This code depends on internals from net/art.h so include it explicitly.
OK bluhm@
claudio [Tue, 14 Nov 2023 10:12:24 +0000 (10:12 +0000)]
Fix typo in comment.
florian [Tue, 14 Nov 2023 08:27:33 +0000 (08:27 +0000)]
Add break to error out on weird characters in gethostbyname().
Missed in previous some time ago; while here remove confusing else.
Input & OK eric
jsg [Tue, 14 Nov 2023 02:26:17 +0000 (02:26 +0000)]
regen
jsg [Tue, 14 Nov 2023 02:25:48 +0000 (02:25 +0000)]
add another Navi 32 device id
7470 rev 00 is Radeon Pro W7700
found in AMD Software: PRO Edition for AMD Radeon PRO W7700
schwarze [Mon, 13 Nov 2023 20:35:33 +0000 (20:35 +0000)]
reduce the man(7) global indentation from 7n to 5n, see man_term.c rev. 1.197
sthen [Mon, 13 Nov 2023 20:19:45 +0000 (20:19 +0000)]
raise i386's datasize for 'daemon' class so that relinking libc at boot
doesn't fail - new clang is even greedier than the old one.
I picked the value 1500M out of the air, it works for me but could perhaps
be finessed downwards a bit.
(I'm also using 1500M for make build / mkr+mkrx on i386; make -j8 build
is no longer a good idea on i386 ;)
sthen [Mon, 13 Nov 2023 19:53:34 +0000 (19:53 +0000)]
fix i386 sets
jasper [Mon, 13 Nov 2023 19:15:01 +0000 (19:15 +0000)]
include function name in warning printf in vmx_handle_np_fault() and svm_handle_np_fault() more clearer output
ok mlarkin@
schwarze [Mon, 13 Nov 2023 19:13:00 +0000 (19:13 +0000)]
Reduce the man(7) default global indentation from 7n, which was an oddity
in groff-1.01 to groff-1.22.4, to 5n for compatibility with Version 7 AT&T
UNIX, 4.3BSD-Reno, groff-1.23.0, and all versions of mdoc(7).
OK jmc@ millert@
bluhm [Mon, 13 Nov 2023 17:18:27 +0000 (17:18 +0000)]
Fix rt_setgate() error handling.
In revision 1.424 the logic in rt_setgate() has changed. The old
code entered a value into rt_gateway also if rt_setgwroute() returned
an error. Now if rt_setgwroute() fails, rt_gateway is NULL and
ROUNDUP(rt->rt_gateway->sa_len) crashes.
Put back the old logic in rt_setgate(). Setting rt_gateway and
rt_gwroute are actually independent.
If malloc(9) in rt_setgate() fails, rt_gateway can still be NULL.
The subsequent crash in free(rt->rt_gateway, M_RTABLE,
ROUNDUP(rt->rt_gateway->sa_len)) was just never observed. Add a
NULL check around these free(9).
Reported-by: syzbot+2e79dd9db712d3c5ade9@syzkaller.appspotmail.com
OK mvs@
tb [Mon, 13 Nov 2023 16:16:14 +0000 (16:16 +0000)]
Make X509_certificate_type() less bad
This converts to proper single exit and undoes a number of unnecessarily
silly muppet antics.
ok beck
tb [Mon, 13 Nov 2023 15:44:15 +0000 (15:44 +0000)]
Garbage collect an incoherent export crypto check
Contrast "#define EVP_PKT_EXP 0x1000 /* <= 512 bit key */" with the diff:
- /* /8 because it's 1024 bits we look for, not bytes */
- if (EVP_PKEY_size(pk) <= 1024 / 8)
- ret |= EVP_PKT_EXP;
EVP_PKT_EXP will be nuked at the next opportunity.
discussed with jsing
tb [Mon, 13 Nov 2023 15:40:44 +0000 (15:40 +0000)]
Use a sensible variable name (i.e. nid) instead of i for a NID
tb [Mon, 13 Nov 2023 15:38:09 +0000 (15:38 +0000)]
Use X509_get_signature_nid() instead of inlining it
ok beck jsing
tb [Mon, 13 Nov 2023 15:36:55 +0000 (15:36 +0000)]
X509_certificate_type() needs to know about RSA-PSS
This doesn't do much right now, but is part of the tangle that is adding
RSA-PSS support.
ok beck jsing
martijn [Mon, 13 Nov 2023 15:05:14 +0000 (15:05 +0000)]
Apparently base-gcc doesn't like having OID() inside MIBDECL(). Handroll
the OID() logic into MIBDECL().
Found, tested, and OK jca@
OK tb@
tb [Mon, 13 Nov 2023 14:13:23 +0000 (14:13 +0000)]
Bye bye libcsi
This is sad, but unfortunately, we never had time to grow it to its
intended use. It's been in maintenance mode for too long, and there
currently aren't concrete projects to pursue this direction further.
It can be revived when the time is ripe. Until then, let it not get
in the way of more urgent work.
discussed with jsing
tb [Mon, 13 Nov 2023 14:03:17 +0000 (14:03 +0000)]
Retire the libcsi regress
robert [Mon, 13 Nov 2023 13:34:40 +0000 (13:34 +0000)]
sync Symbols.list with reality; ok tb@
jsg [Mon, 13 Nov 2023 12:49:41 +0000 (12:49 +0000)]
enable UDF on arm64 install media
ok deraadt@ kn@
beck [Mon, 13 Nov 2023 12:46:07 +0000 (12:46 +0000)]
Prepare to expose OPENSSL_gmtime and OPENSSL_timegm as public
This matches when BoringSSL has done, and allows for getting
rid of the dependency on system timegm() and gmtime() in libtls.
which will make life easier for portable, and remove our
dependency on the potentially very slow system versions.
ok tb@ - tb will handle the minor bump bits and expose
on the next minor bump
CVS :----------------------------------------------------------------------
tb [Mon, 13 Nov 2023 12:43:08 +0000 (12:43 +0000)]
Kill last user of ASN1_time_parse() in the tree
ASN1_time_parse() was useful while OpenSSL didn't have something sort of
equivalent, but now they do. Let's retire ASN1_time_parse() to internal.
This will require some patching in ports, but shrug.
ok beck
tb [Mon, 13 Nov 2023 11:50:36 +0000 (11:50 +0000)]
Check notBefore/notAfter validity with ASN1_TIME_to_tm(3)
ok beck
tb [Mon, 13 Nov 2023 11:46:24 +0000 (11:46 +0000)]
Replace ASN1_time_parse() with ASN1_TIME_to_tm()
Like in libtls, we use ASN1_GENERALIZEDTIME_check() to ensure we actually
have a GeneralizedTime.
ok beck
jca [Mon, 13 Nov 2023 11:33:52 +0000 (11:33 +0000)]
Bump datasize for staff to match amd64
Suggested by jsing@, ok tb@
jsg [Mon, 13 Nov 2023 11:12:37 +0000 (11:12 +0000)]
sync
tb [Mon, 13 Nov 2023 10:56:19 +0000 (10:56 +0000)]
Remove last caller of ASN1_time_parse(3) in libtls
This one is slightly annoying since ASN1_TIME_to_tm(3) doesn't provide a
direct check for a GeneralizedTime, so call ASN1_GENERALIZEDTIME_check()
as well. This means LibreSSL parses the time twice. Shrug.
ok beck
tb [Mon, 13 Nov 2023 10:51:49 +0000 (10:51 +0000)]
Remove ASN1_time_parse() dependency in tls_conninfo.c
During r2k22 ported some of the missing OpenSSL ASN.1 time API. This is
a step towards removing the dependency of libtls on ASN1_time_parse().
The latter grew a dependency on CBS/CBB, and thus the choice is to pull
in all this code or to use a no longer maintained version of the API.
Both options are unappealing.
ok beck
tb [Mon, 13 Nov 2023 10:33:00 +0000 (10:33 +0000)]
Eliminate the timegm(3) dependency in libcrypto
timegm(3) is not available on some operating systems we support in
portable. We currently use musl's implementation, for which gcc-13
decided to emit warnings (which seem incorrect in general and are
irrelevant in this case anyway). Instead of patching this up and
diverge from upstream, we can avoid reports about compiler warnings
by simply not depending on this function.
Rework the caching of notBefore and notAfter by replacing timegm(3)
with asn1_time_tm_to_time_t(3). Also make this API properly error
checkable since at the time x509v3_cache_extensions(3) is called,
nothing is known about the cert, in particular not whether it isn't
malformed one way or the other.
suggested by and ok beck
martijn [Mon, 13 Nov 2023 10:16:51 +0000 (10:16 +0000)]
Add 2 tests to make sure getbulkrequests return the correct error index.
martijn [Mon, 13 Nov 2023 10:14:29 +0000 (10:14 +0000)]
struct appl_varbind_internal's avi_index is used to give the index to
the original varbindlist's index. In the case of a GetBulkRequest this
must never be larger than the length of the original varbindlist.
OK tb@
op [Mon, 13 Nov 2023 10:11:41 +0000 (10:11 +0000)]
adjust `regress' description since REGRESS_FAIL_EARLY is yes now
ok plus various improvements to the text by tb@
jsg [Mon, 13 Nov 2023 09:51:33 +0000 (09:51 +0000)]
sync
ok robert@
tobhe [Mon, 13 Nov 2023 09:18:19 +0000 (09:18 +0000)]
Make sure sftp_get_limits() only returns 0 if 'limits' was initialized.
This fixes a potential uninitialized use of 'limits' in sftp_init() if
sftp_get_limits() returned early because of an unexpected message type.
ok djm@
jca [Sun, 12 Nov 2023 23:50:57 +0000 (23:50 +0000)]
Bump datasize for the default login class, needed to build clang-16
bluhm [Sun, 12 Nov 2023 23:19:14 +0000 (23:19 +0000)]
Declare global variable zeroin46_addr as const.
OK mvs@ jca@
jca [Sun, 12 Nov 2023 23:15:56 +0000 (23:15 +0000)]
Also bump the default limit on riscv64
Reported by jsing@
robert [Sun, 12 Nov 2023 21:17:48 +0000 (21:17 +0000)]
append ExtensionDependencies.inc to CLEANFILES only if .OBJDIR != .CURDIR
martijn [Sun, 12 Nov 2023 20:14:39 +0000 (20:14 +0000)]
Move struct oid from snmpd.h into smi.c and trim a lot of the now unused
fat. This includes all the o_flags member related defines.
if it compiles ship it/OK tb@
martijn [Sun, 12 Nov 2023 20:12:01 +0000 (20:12 +0000)]
Remove a bunch of unused smi_ functions and move a couple of definitions
out of snmpd.h, which aren't used outside of smi.c
OK tb@
martijn [Sun, 12 Nov 2023 20:10:13 +0000 (20:10 +0000)]
Now that smi_oid_cmp() is only used by the oidtree RB-tree, and nothing
fancy is using it, we can simply rely on ober_oid_cmp().
OK tb@
martijn [Sun, 12 Nov 2023 20:07:48 +0000 (20:07 +0000)]
Now that MIBDECL() fills in bo_n, no need to call smi_oidlen() anymore.
OK tb@
martijn [Sun, 12 Nov 2023 20:06:53 +0000 (20:06 +0000)]
Let MIBDECL() make use of OID(). This gives use bo_n for free and we
won't have to rely on error-prone smi_oidlen.
OK tb@
martijn [Sun, 12 Nov 2023 20:04:35 +0000 (20:04 +0000)]
Now that smi.c is basically an oid/name translator, let smi_insert()
create the struct oid and let parse.y supply the arguments.
OK tb@
martijn [Sun, 12 Nov 2023 20:02:05 +0000 (20:02 +0000)]
No need to use struct oid to compare two struct ber_oids. Just call
ober_oid_cmp() directly.
OK tb@
martijn [Sun, 12 Nov 2023 19:59:56 +0000 (19:59 +0000)]
Printing all known objects inside smi when build with -DDEBUG has no
benefit. Remove it and the last consumer of smi_foreach().
OK tb@
martijn [Sun, 12 Nov 2023 19:58:15 +0000 (19:58 +0000)]
No reason to call (error-prone) smi_scalar_oidlen when we include the
scalar .0 ourselves.
OK tb@
robert [Sun, 12 Nov 2023 19:30:04 +0000 (19:30 +0000)]
revert https://reviews.llvm.org/
D135402 for now to shut lld up until we fix
all the symbol lists
otto [Sun, 12 Nov 2023 18:53:22 +0000 (18:53 +0000)]
Bump NTP era if the offset we receive is small, in a similar manner
as ntpd. ok deraadt@
bluhm [Sun, 12 Nov 2023 17:51:40 +0000 (17:51 +0000)]
Use constant sockaddr in route lookup.
In rtalloc() and rtalloc_mpath() declare the parameter dst as const
sockaddr. This makes MP safe route lookup easier as the destination
address is definitely not modified during the operation. Array
rti_info, the central data structure with addresses for route
matching, contains constant sockaddr now.
OK mvs@ dlg@
jca [Sun, 12 Nov 2023 17:38:24 +0000 (17:38 +0000)]
sync path to libclang_rt*.a
jca [Sun, 12 Nov 2023 17:29:04 +0000 (17:29 +0000)]
Fix install path, reminded by otto@
jca [Sun, 12 Nov 2023 17:25:08 +0000 (17:25 +0000)]
Mechanical lib/clang/13.0.0/include -> lib/clang/16/include
The actual headers list still needs to be fixed on !(amd64)
jca [Sun, 12 Nov 2023 17:22:43 +0000 (17:22 +0000)]
+/usr/include/llvm/Config/TargetMCAs.def
jca [Sun, 12 Nov 2023 17:10:17 +0000 (17:10 +0000)]
sync
jca [Sun, 12 Nov 2023 17:09:40 +0000 (17:09 +0000)]
sync (libLLVM bump)
kettenis [Sun, 12 Nov 2023 16:37:28 +0000 (16:37 +0000)]
Bump MAXDSIZ to 2G on armv7. Needed for llvm-16.
ok deraadt@
kettenis [Sun, 12 Nov 2023 16:33:23 +0000 (16:33 +0000)]
Fix parsing of branch target protection options on arm64 to enable
BTI and PAC again by default on OpenBSD.
ok robert@
bluhm [Sun, 12 Nov 2023 16:10:46 +0000 (16:10 +0000)]
Do not modify route info sockaddr in rtm_xaddrs().
The rti_info array is used to describe routes that should be found
by lookup. Modifying the addreses in it is not a good idea. There
were places where rtm_xaddrs() tried to fix the address family
instead of validating it. Replace the modification with a check
and error out with EAFNOSUPPORT on failure. Route labels always
have AF_UNSPEC and the other types are not used anyway.
OK kn@
martijn [Sun, 12 Nov 2023 16:07:34 +0000 (16:07 +0000)]
Now that the last consumer of mps.c is gone, remove it and its
application_legacy.c companion.
OK tb@
martijn [Sun, 12 Nov 2023 16:03:41 +0000 (16:03 +0000)]
Move snmpd.conf's oid keyword into application_internal.c. These objects
get registered under their own backend name, so that they can't overlap
with the internal regions. This removes the last consumer of mps.c
OK tb@
dlg [Sun, 12 Nov 2023 15:42:54 +0000 (15:42 +0000)]
rt_gateway and rt_gwroute use X protections now.
pointed out by bluhm@
dlg [Sun, 12 Nov 2023 15:42:05 +0000 (15:42 +0000)]
rt_setgate performs a series of tweaks to an rtable and the routes in
the rtable which should be serialised to ensure they're consistent.
unfortunately, rt_setgate is called from the network stack while it's
only holding shared NET_LOCK.
this uses the [X] protections as described in route.h to serialise the
changes, and reworks the code to try and keep enough stuff linked up
properly during the changes that it will still work if another cpu is
still using the rtentry structs while they still have shared net lock.
tested by and ok bluhm@
dlg [Sun, 12 Nov 2023 15:18:04 +0000 (15:18 +0000)]
fix the signal numbers passed to siginterrupt.
from dhill@
robert [Sun, 12 Nov 2023 14:41:41 +0000 (14:41 +0000)]
bump datasize to 1536M for the default login class to allow the build
user to generate the AMDGPU includes in llvm-16
discussed with deraadt@
robert [Sun, 12 Nov 2023 14:25:40 +0000 (14:25 +0000)]
TargetMCAs.def is required to be installed in the llvm include dir
so instead of shipping the file internally, let's generate it and
install it with the rest of the headers; unbreaks xenocara build
patrick [Sun, 12 Nov 2023 12:41:43 +0000 (12:41 +0000)]
Add support for the Rockchip RK8602 and RK8603 voltage regulators.
ok dlg@
robert [Sun, 12 Nov 2023 11:43:04 +0000 (11:43 +0000)]
flip the ignoreFunctionAddressEquality flag; lost in merging changes from llvm-13
robert [Sun, 12 Nov 2023 10:49:27 +0000 (10:49 +0000)]
split the Symbols.list up so that arch specific symbols do not end up everywhere
ok tb@
dlg [Sun, 12 Nov 2023 09:21:36 +0000 (09:21 +0000)]
the ws in wscons is short for workstation
jca [Sat, 11 Nov 2023 18:47:02 +0000 (18:47 +0000)]
Fix variable name in comment
Mostly a dummy commit so that the last llvm commit ends up in the git export.
(No idea whether it's actually/still needed but it can't hurt.)