summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-03bump PACKET_TAG_MAXSIZE from 52 to 60 bytes to make room for theReyk Floeter
upcoming bridge tunneltag change (the tag is used in the mtagpl pool). OK henning@
2016-09-03Retire zaurus, as it hasn't made the EABI jump and will be permanently brokenPhilip Guenther
shortly when we use the hardware thread register in userland
2016-09-03Remove iwm_alloc_* wrapper functions around iwm_dma_contig_alloc().Stefan Sperling
Call iwm_dma_contig_alloc() directly instead.
2016-09-03fix typo "mode" -> "model" when referring to "Model specific registers"Mike Larkin
2016-09-03shorten s_time; help/ok bcookJason McIntyre
2016-09-03remove parens from method callsTed Unangst
2016-09-03Do not reinitialize __guard_local if it is 0. This cannot be doneTheo de Raadt
anymore, since it is now RO. It is the bootloader's job to initialize it correctly. If the bootloader fails to perform that, you silently lose. The road to building an always-available rng is served by us depending on it :)
2016-09-03Make .openbsd.randomdata section RO. Highlight is that the stack protectorTheo de Raadt
cookie becomes readonly, spraying over it in KVA becomes more difficult. amd64 version from guenther, i386 version by myself ok guenther kettenis
2016-09-03Update to 4.1.12Florian Obser
----------------------------------------------------------------- BUG FIXES: - Fix malformed edns query assertion failure, reported by Michal Kepien (NASK). ----------------------------------------------------------------- Does not effect OpenBSD since we are not running configure with --enable-checking OK sthen@
2016-09-03proving once again my commit and somebody will test strategy works,Ted Unangst
deraadt found that savecore also uses a source file from compress. add (6.0 versions) of the needed files to permit progress elsewhere.
2016-09-03naddy@ pointed out that SHA512/256 is slightly differentMarc Espie
so use SHA384 which is on the shelf and good enough
2016-09-03tweak previous;Jason McIntyre
2016-09-03the SMALL code made a half hearted effort to exclude compression codeTed Unangst
but some of the write code remained. shuffle things around a bit to make the exclusion more complete.
2016-09-03Get rid of the various iwm_free_* wrappers around iwm_dma_contig_free().Stefan Sperling
Call iwm_dma_contig_free() directly instead.
2016-09-03cherry-pick a few diffs from libc malloc; ok guenther@Otto Moerbeek
2016-09-03check -z mode, just by creating an archive and checking it's still properMarc Espie
gzip.
2016-09-03fix parameters checkingMarc Espie
2016-09-03add SDBG to cpuid bits and identcpuMike Larkin
2016-09-03MAJOR tweak: switch to SHA512/256Marc Espie
adjust the header information to be self-descripting and contain a signature date, and pass that thru when checking.
2016-09-03remove unused variableBob Beck
2016-09-03syncStuart Henderson
2016-09-03Add doas.conf example configuration file.Paul Irofti
Discussed with and loved by many. OK tedu@, tom@, deraadt@.
2016-09-03Remove the oh so funny "LOSS OF MIND" from the diclaimer that was notReyk Floeter
part of the original ISC license that we use in OpenBSD. Done for files were Henning is the original author. OK henning@ deraadt@
2016-09-03Get rid of iwm_mvm_send_add_sta_cmd_status() which is a pointless wrapperStefan Sperling
around iwm_mvm_send_cmd_pdu_status(). Just call the function directly.
2016-09-03start pulling apart some function pointers that take too many parametersTed Unangst
because of excessive code sharing. compression and decompression are not entirely similar, they should share less. ok joerg millert
2016-09-03Since the initial entropy pool is 8192 bytes, we need three pages to createMark Kettenis
the alias mapping when clearing it, since there is no guarantee the pool is page aligned. ok deraadt@
2016-09-03Make the installer safer by fetching and verifying external dataRobert Peichaer
as unprivileged users. OK halex, tb, deraadt
2016-09-03As vmm(4) can now exit to vmd at any time to process pending interrupts,Mike Larkin
don't kill the VM if we are presented with an exit type that is not something we directly need to handle. Instead, simply re-enter the guest, possibly injecting an interrupt along the way. Still exit the process if presented with a triple fault, until we implement reboot support. ok stefan@
2016-09-03fix some wrong interrupt code that doesn't fit with the new modelMike Larkin
ok stefan@
2016-09-03Adding a clean up block to vioblk_notifyq() and vionet_enq_rx()Nayden Markatchev
OK mlarkin@
2016-09-03provide better interrupt responsiveness by exiting to vmd wheneverMike Larkin
vcpu->vc_intr is asserted and the guest is ready for interrupts, instead of waiting until the next time we would have exited to vmd for some other reason. ok stefan@
2016-09-03Remove NULL pointer checks before calls to free().Nayden Markatchev
OK bluhm@ nicm@
2016-09-03Add a do_as() function that executes commands as unprivileged userRobert Peichaer
and ensures that no processes of this user remain active afterwards. Optionally, it creates a file, that is owned by the user only for this command execution. Afterwards it's chown'd by root. Add wrapper functions for do_as(). unpriv() uses the _sndio user and unpriv2() uses the _file user to execute commands. OK halex, tb, deraadt
2016-09-03set password to return of readpassphrase(), not always the buffer.Ted Unangst
2016-09-03nitpicks. all header info is relative. make gzheader freeable.Marc Espie
allocate properly for storing shas.
2016-09-03Add two users accounts to the install media that have no privilegesRobert Peichaer
on a base system. They are used with doas(1) to execute certain commands as unprivileged users during install and upgrade . OK halex, tb, deraadt
2016-09-03Return immediately when m_getuio() fails by invalid uio parameter.YASUOKA Masahiko
ok mikeb bluhm claudio
2016-09-03convert to use readpassphrase() instead of DEPRECATED/getpass()Gleydson Soares
OK millert@
2016-09-03the sudo timeout was 5 minutes i believe, so we'll match that.Ted Unangst
2016-09-03convert to use readpassphrase() instead of DEPRECATED/getpass()Gleydson Soares
OK millert@
2016-09-03note that getpass is obsolete. removed from posix in 2001.Ted Unangst
2016-09-03Enable a stripped down version of doas(1) on the install media.Robert Peichaer
OK halex, tb, deraadt
2016-09-03Some isakmpd tests need generated header files from isakmpd. ChangeAlexander Bluhm
to /usr/src/sbin/isakmpd and make depend before regress. fixed together with mikeb@
2016-09-03convert to use readpassphrase() instead of DEPRECATED/getpass()Gleydson Soares
OK millert@
2016-09-03convert to use readpassphrase() instead of DEPRECATED/getpass()Gleydson Soares
OK millert@
2016-09-03convert to use readpassphrase() instead of DEPRECATED/getpass()Gleydson Soares
OK millert@
2016-09-03Enable PIE on arm now that sjlj exceptions are no longer used afterJonathan Gray
the switch to eabi. This does not include static PIE which will be handled later. A specific sequence of steps is required to cross over this change, using a snapshot is the easiest way to do so. ok kettenis@
2016-09-03Use macros for iwm(4) bitmask definitions instead of enums.Stefan Sperling
ok mpi benno
2010-01-15NSD v3.2.4Jakob Schlyter
2016-09-03Simplify shutdown process.Renato Westphal
On shutdown, there's no need to use kill(2) to kill the child processes. Just closing the IPC sockets will make the children receive an EOF, break out from the event loop and then exit. Tha advantages of this "pipe teardown" are: * simpler code; * no need to pledge "proc" in the parent process; * removal of a (hard to trigger) PID reuse race condition. ok benno@ claudio@