summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-25Extend maximum message size of the shutdown communication to 255 bytes.Claudio Jeker
See also draft-snijders-idr-rfc8203bis-01. OK job@
2019-04-25sticky-address is working with source-hash.YASUOKA Masahiko
ok deraadt
2019-04-25Since we now have an attachhook, the actual interrupt handler is installedMark Kettenis
late, after we enable interrupts. If the interrupt pin used for inteldrm(4) is shared with another device, we may end up being called before the actual interrup handler is installed resulting in a null-pointer dereference. Fix this by adding an explicit check that the interrupt handler function pointer has been set. ok matthieu@, jsg@
2019-04-25Automatically scroll if dragging to create a selection with the mouseNicholas Marriott
and the cursor reaches the top or bottom line.
2019-04-25Use calloc/freezero when allocating and freeing the session ticket data.Joel Sing
The decrypted session ticket contains key material. ok tb@
2019-04-25Use EVP_CIPHER_CTX_{new,free}() and HMAC_CTX_{new,free}() instead ofJoel Sing
allocating on stack. While here also check the return values from EVP_DecryptInit_ex() and HMAC_Init_ex(). ok tb@
2019-04-25Rename some variables in tls_decrypt_ticket().Joel Sing
Rename mlen to hlen since it is a hmac (and this matches hctx and hmac). Rename ctx to cctx since it is a cipher context and ctx is usually used to mean SSL_CTX in this code. ok tb@
2019-04-25Follow up on jmatthew's suggestion:Kevin Lo
in x_media_change(), return the errno from ieee80211_media_change() and do the error check from x_init(). ok stsp@, jmatthew@, phessler@
2019-04-25Also touch --param ssp-buffer-size when using retguard in lieu of themortimer
stack protector. Fixes 'unused arguments' warning when this argument is given. Noticed by robert@, ok robert@
2019-04-24Do not check for working go executable during make clean cleandir obj.Alexander Bluhm
reminded by jsing@
2019-04-24Add product id for the USB serial adapter found in Juniper SRX 300.remi
ok deraadt@ phessler@ sthen@
2019-04-24Use bg not fg when adjusting for aixterm, from Ailin Nemui.Nicholas Marriott
2019-04-24regenremi
2019-04-24Use setaf/setab for aixterm colours, from Ailin Nemui.Nicholas Marriott
2019-04-24New product id for the USB serial adapter found in Juniper SRX 300.remi
ok deraadt@ phessler@ sthen@
2019-04-24Do not loop forever if there is a nonprintable character in the format.Nicholas Marriott
2019-04-24Do not check for working go executable during make clean cleandir obj.Alexander Bluhm
2019-04-24restrict filesystem access to read only on main process via unveil(2)Ricardo Mestre
ok benno@ deraadt@
2019-04-24In unattended mode do a reboot even if things go wrong andFlorian Obser
additionally install a watchdog to do a reboot after 30 minutes if the script gets completely stuck. A half upgraded system that reboots at least gives us a chance that it will come back and we can fix it. Just having it sit there isn't helping anyone. It would be nicer if the watchdog were kernel based... OK deraadt
2019-04-24Perform unattended upgrade if /bsd.upgrade is present.Florian Obser
Sets are expected to be in /home/upgrade. Original idea, input & OK deraadt
2019-04-24Re-add HISTORY sectiondenis
2019-04-24Tweak the initial sentence to mention OCTEON II and OCTEON III.Visa Hankala
2019-04-24clarify the difference between .Cm and .Ic;Ingo Schwarze
triggered by a question from Fabio Scotoni
2019-04-24Fix the capitalization of OCTEON.Visa Hankala
2019-04-24Tell when the openprom(4) interface appeared instead of when the manualVisa Hankala
page appeared.
2019-04-24new manual page rcsfile(5)Ingo Schwarze
written by Fabio Scotoni <fabio at esse dot ch> with minimal tweaks by me OK jmc@ deraadt@ millert@ on an earlier version
2019-04-24implement SIOCGIFSFFPAGE so ifconfig can get transceiver info.Jonathan Matthew
the controller has an i2c read operation that's almost exactly what we want, except it only does 64 bytes at a time, so this is pretty simple. ok dlg@
2019-04-24Style tweaks:Philip Guenther
- use NULL for pointer comparisons and assignments. - in level comparisons, use PTP_LEVELS instead of magic constants - eliminate some superfluous variables in pmap_free_ptp() ok mlarkin@
2019-04-24regenDavid Gwynne
2019-04-24add the product id for VMware NVMe interfaceDavid Gwynne
2019-04-23syncTheo de Raadt
2019-04-23Somehow missed these bits in last commit.Nicholas Marriott
2019-04-23Indicate an array option with a flag rather than a special type so thatNicholas Marriott
in future will not have to be strings.
2019-04-23add ccp to acpi, and scale back the caps;Jason McIntyre
2019-04-23Since ppb(4) properly allocates bus ranges for attached devices,Patrick Wildt
the hotplug code doesn't need to do the same. Also the hotplug code only configured a single bus and did that before the proper allocation ran, so there was no chance for hotplugged ppb(4)s to have children busses. ok kettenis@
2019-04-23syncTheo de Raadt
2019-04-23shorten some stringsTheo de Raadt
2019-04-23syncTheo de Raadt
2019-04-23clarify how .%P is conventionally used;Ingo Schwarze
triggered by a question from Fabio Scotoni <fabio at esse dot ch>
2019-04-23ccp(4) attaches to acpi(4) now.Mark Kettenis
2019-04-23Add support for ccp(4) at acpi(4).Mark Kettenis
ok deraadt@
2019-04-23Add support for "pinconf-single" devices and add support for bias andMark Kettenis
drive-strength properties. Needed for various HiSilicon SoCs. ok patrick@, jsg@
2019-04-23replace "--" with "\(en" in numeric ranges in .%P macros;Ingo Schwarze
markup error reported by Fabio Scotoni <fabio at esse dot ch>
2019-04-23missing dots after ".%P pp"; the case of btree(3) wasIngo Schwarze
reported by Fabio Scotoni <fabio at esse dot ch>; also garbage collect one .Tn while here
2019-04-23add some missing "pp." to .%P macros;Ingo Schwarze
Fabio Scotoni <fabio at esse dot ch> reported it was missing in eqn(7)
2019-04-23Remove HISTORY sectiondenis
"been there from the start" from kettenis@
2019-04-23Add missing manpage.denis
OK jmc@
2019-04-23Convert tls_decrypt_ticket() to CBS.Joel Sing
This removes various pointer arithmetic and manual length checks. ok tb@
2019-04-23Add missing manpage.denis
Input from jmc@ OK jmc@ visa@
2019-04-23Call exit(2) if sigreturn(2) fails on mips64. This is what otherVisa Hankala
architectures do. Noticed by deraadt@