summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-15do not use CRLF when passing data lines to filters.Eric Faurot
ok gilles@
2019-05-15Add the -m flag to the ftp.1 man page.kmos
Adjust the usage message of ftp(1) to reflect its two operating modes and list missing flags. OK florian@ jmc@
2019-05-15delete some duplicate wordsIngo Schwarze
2019-05-15re-indent bwscoll() after previous commit; no binary changeIngo Schwarze
2019-05-15s3 is never NULL since s2 (formerly used for SSLv2) does not exist, so there isBrent Cook
no need to check for it. Fixes COV-165788, identified with help from Alex Bumstead. ok jsing@
2019-05-15Cleanup:Ingo Schwarze
Delete handling of LC_COLLATE (which has no effect) and delete support for non-ASCII single-byte encodings, allowing to replace the condition byte_sort == 1 with sort_mb_cur_max == 1. Since none of our single-byte character and string functions are locale dependent, also zap inspection of LC_CTYPE while here. For know, keep the code supporting multi-byte encodings even though it is very ugly, it cannot be reached right now, and we have no plans to enable it any time soon. OK millert@ tb@
2019-05-15remove some use of uninitialized values pointed out by jsg@Jonathan Matthew
2019-05-15Rework tx path to allow using up to 13 segments per packet, so we don'tJonathan Matthew
have to defrag everything. While working on this I discovered both of the tx doorbells can be rung once per mcx_start() call, rather than once per packet. dlg@ helped a lot by making me read the documentation again.
2019-05-15Add support to the BIOS bootloader for random kernel base VAMike Larkin
This diff adds support to be able to load a randomly linked kernel VA (subject to some range restrictions). This change has been in snaps for a few days without any fallout. ok deraadt@
2019-05-15free size for amap; ok visa@anton
2019-05-15normalize newlines when reading the messageEric Faurot
spotted by martijn@ ok martijn@ gilles@
2019-05-15When doing the fork+exec'ing for ssh-keysign, rearrange the socketTheo de Raadt
into fd3, so as to not mistakenly leak other fd forward accidentally. ok djm
2019-05-15Reduce branch emulation page access protection during setup. The setupVisa Hankala
stage does not need execute access, so map the page initially with read-write protection. OK miod@
2019-05-15Drop redundant pmap_proc_iflush() call. The needed instruction cacheVisa Hankala
invalidation is done by mips64 pmap when the branch emulation page is made executable. Originally, the pmap_proc_iflush() call was necessary. The instruction cache invalidation was added in pmap_protect() after the FPU emulation was introduced. OK miod@
2019-05-15syncrob
2019-05-15Split ber.3 into logical parts. Further tweaking will be done in tree.rob
Discussed with and ok jmc@, schwarze@, claudio@
2019-05-14Fix athn(4) 9280 1T2R devices; broken since my noisefloor calib commitStefan Sperling
Problem reported and fix tested by Stephane Guedon ok jca@ mpi@
2019-05-14test different buffer sizesanton
2019-05-14do not intermingle direct io (write), and potentially buffered io (stdio)Theo de Raadt
against the same outputs ok kmos florian
2019-05-14Document -vFlorian Obser
2019-05-14-v forces verbose mode even if stdin is not a terminalFlorian Obser
Found the hard way by bluhm Debugged with deraadt & bluhm
2019-05-14make "bgpctl sh rib detail *out*" look less confusingSebastian Benoit
ok claudio@
2019-05-14Remove the REGRESS_MAXTIME feature from regress framework. TheAlexander Bluhm
timeout based on CPU seconds is pretty useless, most hanging tests sleep and do not spin. The timeout could not be distinguished from failure. Only 3 tests used it. OK anton@ schwarze@ cheloha@ otto@
2019-05-14Correct missing test to determine if length is in bytes or in bits.Bob Beck
Issue found by Guido Vranken <guidovranken@gmail.com> ok tedu@ tb@
2019-05-14Add free(9) sizes to ahc(4)jan
From Miod OK tedu@
2019-05-14document CONFIGURE_STYLE=autoreconf; ok espie@Christian Weisgerber
2019-05-14Move common config passing code into a function.Florian Obser
OK pamela
2019-05-14Revert my recent sysupgrade changes; it broke unattended upgrades forAntoine Jacoutot
espie@. Need to look deeper.
2019-05-14armv7 and arm64 also have ci_idepthJonathan Gray
ok anton@
2019-05-14allow specifying a cmdfile instead of trying to pipe in commands for -ef.Ted Unangst
ok deraadt
2019-05-14minor macro cleanupIngo Schwarze
2019-05-14minor wording improvement from Stephen GregorattoIngo Schwarze
2019-05-14Delete some .Sx macros that were used in a wrong way.Ingo Schwarze
Part of a patch from Stephen Gregoratto <dev at sgregoratto dot me>.
2019-05-14fix typos in log messagesEric Faurot
2019-05-14Fix sizing of main-vertical and main-horizontal layouts, GitHub issue 1736.Nicholas Marriott
2019-05-14Add support for `boot device' to vm.conf grammar which is the `-B device'anton
counterpart from vmctl. ok mlarkin@
2019-05-14Enable TLSv1.0 and TLSv1.1Jeremie Courreges-Anglas
Like the old ftp. Discussed with at least with tedu@ "We should match existing behavior at least for now"
2019-05-14Use propper regress target to integrate better into test framework.Alexander Bluhm
2019-05-14Add lock order checking for smr_barrier(9). This is similar to theVisa Hankala
checking done in taskq_barrier(9) and timeout_barrier(9). OK mpi@
2019-05-14Remove leftover elf.cSunil Nimmagadda
2019-05-14Use elf(3) api instead of an ad-hoc elf parser.Sunil Nimmagadda
Ok mpi@
2019-05-14Remove an unused and leftover label.Sunil Nimmagadda
2019-05-14tls_write(3): Handle short writes.Sunil Nimmagadda
Ok jca@
2019-05-13Add tee(1) to the ramdisk filesystem and use it to provide both aChristian Weisgerber
moving progress bar during auto upgrade/install and a clean log afterwards. ok deraadt@
2019-05-13Remove strict mode for now, it is in the way.Florian Obser
2019-05-13print a newline for attach. from f holopTed Unangst
2019-05-13Add a kernel implementation of realpath() as __realpath().Bob Beck
We want this so that we can stop allowing readlink() on traversed vnodes in unveil(). This includes all the kernel side and the system call. This is not yet used in libc for realpath, so nothing calls this yet. The libc wrapper will be committed later. Testing by many, and ports build by naddy@ ok deraadt@
2019-05-13Remove unused pad check, which is handled by tls1_cbc_remove_padding() now.Brent Cook
Fixes COV-174858 ok tb@
2019-05-13Acquire mutex before incrementing the refcount. Fixes COV-186144Brent Cook
ok tb@
2019-05-13Add missing word in comment.Theo Buehler