summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-03Document X509_get_default_cert_dir_env(3)Ingo Schwarze
and X509_get_default_cert_file_env(3). LibreSSL itself does not call getenv(3), but a few application programs including epic5, fetchmail, fossil, slic3r call these functions, so in case programmers find them in existing code, telling them what they do seems useful.
2021-08-03Document X509_get_default_cert_area(3).Ingo Schwarze
Put it into this page because this is the code actually using it. Despite its name and include file, it is unrelated to X.509 and unrelated to certificates: it is just the default directory containing the library configuration file, openssl.cnf(5).
2021-08-03Increase default data bytes limit for Child SAs to 4 GB.tobhe
Lower limits lead to excessive rekeying and lost data in high performance setups without much benefit. Brought up by mvs@ ok patrick@ sthen@
2021-08-03Make sure VM_MAXUSER_ADDRESS is aligned to a page boundary, as MI codeSebastien Marie
relies upon this; sparc64 turned out to be the only platform where this was not the case. help, diff, and commit message from Miod Vallat "makes sense" kettenis@
2021-08-03syncTheo de Raadt
2021-08-03regression tests for scp SFTP protocol support; mostly by JakubDamien Miller
Jelen in GHPR#194 ok markus
2021-08-02support for using the SFTP protocol for file transfers in scp, via aDamien Miller
new "-M sftp" option. Marked as experimental for now. Some corner-cases exist, in particular there is no attempt to provide bug-compatibility with scp's weird "double shell" quoting rules. Mostly by Jakub Jelen in GHPR#194 with some tweaks by me. ok markus@ Thanks jmc@ for improving the scp.1 bits.
2021-08-02MP support seems to work fine nowMark Kettenis
ok deraadt@
2021-08-02Don't call rtm_ifchg() in trunk_port_state().mvs
The preceding trunk_link_active() already produced RTM_IFINFO message when trunk(4) state was changed. I such case we double RTM_IFINFO message or we produce false message when trunk(4) state was not changed. ok florian@
2021-08-02Add memory barrier (data FENCE) before making the SBI call to issue aMark Kettenis
FENCE.I instruction on the remote harts. According to the RISC-V ISA documentation this is necessary to make remote harts observe earlier stores. Also issue the local FENCE.I first; this is what both FreeBSD and Linux does. Seems to fix at least some of the issue we've seen running GENERIC.MP on MP machines. ok jca@
2021-08-02rkpwm(4) device tree bindings were updated to not have clock names anymore,Patrick Wildt
so simply look up the first clock instead of looking for a specific one by name. Allows rkpwm(4) to find the clock when using a recent device tree. From Tomasz Bielecki ok kettenis@
2021-08-02Show if add_path was used when decoding the BGP message in MRT format.Claudio Jeker
This may help to spot encoding errors a bit more easily.
2021-08-02Shuffle conditions around to help my brain.Claudio Jeker
2021-08-02tweaks regarding X509_LOOKUP_by_subject(3):Ingo Schwarze
* document the X509_OBJECT output parameter * more precision regarding return values * clarify relationship with X509_LOOKUP_ctrl(3) for the dir lookup method
2021-08-02new manual page X509_STORE_get_by_subject(3)Ingo Schwarze
2021-08-02Don't call cpu_setperf() when reading hw.setperf.Theo Buehler
"makes perfect sense to me" chris ok gnezdo jca
2021-08-02Fix incorrect status code for expired mails resulting in a misleadingEric Faurot
bounce report. From Erik Brens
2021-08-02Add infrastructure to build llvm-objcopy and llvm-objdump.Patrick Wildt
ok kettenis@ sthen@
2021-08-02Leave resolv.conf to resolvd if it learned nameserverskn
During install (not upgrade) the installer parses resolv.conf looking for nameservers, FQDN and domain information; it also prompts for nameservers if none were found. If DHCP is used and nameservers were found, resolv.conf gets recreated from scratch. Under dhclient(8) this was fine, but resolvd(8) persists learned proposals across such file modifications and resolv.conf will thus contain a mix between managed and manual entries -- stale duplicates which users have to remove manually. Do not touch resolv.conf anymore in case resolvd knows better and thus provide a clean file for installations. OK florian
2021-08-01%i is going out of vogue, use %d insteadjob
also clean up a comment OK tb@
2021-08-01whitespaceMark Kettenis
2021-08-01style(9)Mark Kettenis
2021-08-01document X509_STORE_load_mem(3) and X509_STORE_add_lookup(3)Ingo Schwarze
2021-08-01syncTheo de Raadt
2021-08-01Allow trapv2 packages to be submitted over SNMPv3.Martijn van Duren
This is a type-O that snuck in when merging traphandler into snmpe. OK jmatthew@
2021-08-01Set smi_application in usm's ber as well.Martijn van Duren
OK jmatthew@
2021-08-01Do not abuse the IMSG_CTL_SEND_REQUEST imsg to transition toFlorian Obser
REBOOTING. There will be a few more cases internal to dhcpleased that have nothing to do with the control socket. While here move requesting a new lease via a call to dhclient under ifndef SMALL, nothing on the ramdisk uses this.
2021-08-01KNFjob
OK benno@
2021-07-31syncTheo de Raadt
2021-07-31document X509_LOOKUP_mem(3) in X509_LOOKUP_hash_dir(3)Ingo Schwarze
and add a new manual page X509_LOOKUP_new(3)
2021-07-31remove mention of BeagleV StarlightJonathan Gray
"The BeagleV-Starlight prototype will not be going into mass production" https://forum.beagleboard.org/t/the-future-of-beaglev-community/30463
2021-07-31We have defines for alert levels - use them instead of magic numbers.Joel Sing
2021-07-31drm/ttm: add a check against null pointer dereferenceJonathan Gray
From Zheyu Ma 5c3d753b872a706af9317fef4edfb6b640d8a71e in linux 5.10.y/5.10.55 9e5c772954406829e928dbe59891d08938ead04b in mainline linux
2021-07-31Fix displaying incorrect patterns on LUNA's wscons with 1bppKenji Aoyama
framebuffer when Backspace is typed. Reading data from LUNA framebuffer's 'common write plane' is not valid. But on 1bpp framebuffer routine attempts to read from common write plane in macro. That causes displaying incorrect patterns. This bug was found on nono's LUNA-88K emulation first, then inspected on the real hardware after I fortunately got 1bpp framebuffer. Spotted and investigated by Isaki and Sugahara of nono procject. Tested on my LUNA-88K2.
2021-07-30Add newline for debug printf.Marcus Glocker
2021-07-30Increase static number of nframes which enables very initial ISOC support,Marcus Glocker
e.g. uvideo(4) with lower resolutions. In general we might need to re-write parts of the nframes handling in the driver, since the NetBSD nframes transfer allocation doesn't match with our USB stack. With this we can at least start further testing and improvement for ISOC support.
2021-07-30Add checks when reading VRPs with a maxLength via RTRjob
Ensure the maxLength is greater than or equal to the length of the accompanying prefix, and less than or equal to the length (in bits) of an IP address in the address family (32 for IPv4 and 128 for IPv6). The same checks are applied when reading VRPs from configuration on disk. OK claudio@
2021-07-30Move the explanations related to *ptree closer together and correctIngo Schwarze
the lie that *ptree is set upon success - in some cases of success, it is set to NULL, whereas in some cases of failure, a non-trivial tree may be returned. beck@ pointed out that statements related to *ptree were scattered all over the place, and this patch works for him.
2021-07-30fix a formatting error and add some Xr;Jason McIntyre
from debian at helgefjell de removed references to rlogin etc. as no longer relevant; suggested by djm ok djm dtucker
2021-07-30fix a formatting error and mark up known_hosts consistently;Jason McIntyre
issues reported by debian at helgefjell de ok djm dtucker
2021-07-30Print iwx(4) firmware version numbers like Linux iwlwifi does it.Stefan Sperling
Starting with major version 35 the Linux driver prints the minor version number in hexadecimal. Same change was made for iwm(4) in CVS commit LCM6R5u9jeF8bcXB
2021-07-30Remove an unused 320k bytes DMA memory allocation from iwx(4).Stefan Sperling
This allocation was left over from code inherited from iwm(4) where it is used for transferring firmware code to the device. Devices supported by iwx(4) use an entirely different mechanism for loading firmware and don't need this allocation at all. Based on a patch by zxystd from the OpenIntelWireless project.
2021-07-30Use inline function for SFENCE.VMA instruction. Fixes missing "memory"Mark Kettenis
clobber in the inline assembly.
2021-07-30Cleanup ptrace-related code; still untested.Mark Kettenis
2021-07-30Fix the transfer abort function dwc2_abort_xfer() to work again with theMarcus Glocker
recently updated code. There, sync the hardware specific parts with the NetBSD driver.
2021-07-30Fix the show rib detail output. The add_path condition was totally wrong.Claudio Jeker
2021-07-30document locate.mklocatedb as wellMarc Espie
tweaks by schwarze@ okay millert@
2021-07-30Add /etc/dhcpleased.confbket
OK florian@
2021-07-30set the name of the allocating process in struct drm_framebufferJonathan Gray
2021-07-30whitespaceTheo Buehler