Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-03 | bump PACKET_TAG_MAXSIZE from 52 to 60 bytes to make room for the | Reyk Floeter | |
upcoming bridge tunneltag change (the tag is used in the mtagpl pool). OK henning@ | |||
2016-09-03 | Retire zaurus, as it hasn't made the EABI jump and will be permanently broken | Philip Guenther | |
shortly when we use the hardware thread register in userland | |||
2016-09-03 | Remove iwm_alloc_* wrapper functions around iwm_dma_contig_alloc(). | Stefan Sperling | |
Call iwm_dma_contig_alloc() directly instead. | |||
2016-09-03 | fix typo "mode" -> "model" when referring to "Model specific registers" | Mike Larkin | |
2016-09-03 | shorten s_time; help/ok bcook | Jason McIntyre | |
2016-09-03 | remove parens from method calls | Ted Unangst | |
2016-09-03 | Do not reinitialize __guard_local if it is 0. This cannot be done | Theo 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-03 | Make .openbsd.randomdata section RO. Highlight is that the stack protector | Theo 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-03 | Update to 4.1.12 | Florian 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-03 | proving 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-03 | naddy@ pointed out that SHA512/256 is slightly different | Marc Espie | |
so use SHA384 which is on the shelf and good enough | |||
2016-09-03 | tweak previous; | Jason McIntyre | |
2016-09-03 | the SMALL code made a half hearted effort to exclude compression code | Ted Unangst | |
but some of the write code remained. shuffle things around a bit to make the exclusion more complete. | |||
2016-09-03 | Get rid of the various iwm_free_* wrappers around iwm_dma_contig_free(). | Stefan Sperling | |
Call iwm_dma_contig_free() directly instead. | |||
2016-09-03 | cherry-pick a few diffs from libc malloc; ok guenther@ | Otto Moerbeek | |
2016-09-03 | check -z mode, just by creating an archive and checking it's still proper | Marc Espie | |
gzip. | |||
2016-09-03 | fix parameters checking | Marc Espie | |
2016-09-03 | add SDBG to cpuid bits and identcpu | Mike Larkin | |
2016-09-03 | MAJOR tweak: switch to SHA512/256 | Marc Espie | |
adjust the header information to be self-descripting and contain a signature date, and pass that thru when checking. | |||
2016-09-03 | remove unused variable | Bob Beck | |
2016-09-03 | sync | Stuart Henderson | |
2016-09-03 | Add doas.conf example configuration file. | Paul Irofti | |
Discussed with and loved by many. OK tedu@, tom@, deraadt@. | |||
2016-09-03 | Remove the oh so funny "LOSS OF MIND" from the diclaimer that was not | Reyk 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-03 | Get rid of iwm_mvm_send_add_sta_cmd_status() which is a pointless wrapper | Stefan Sperling | |
around iwm_mvm_send_cmd_pdu_status(). Just call the function directly. | |||
2016-09-03 | start pulling apart some function pointers that take too many parameters | Ted Unangst | |
because of excessive code sharing. compression and decompression are not entirely similar, they should share less. ok joerg millert | |||
2016-09-03 | Since the initial entropy pool is 8192 bytes, we need three pages to create | Mark Kettenis | |
the alias mapping when clearing it, since there is no guarantee the pool is page aligned. ok deraadt@ | |||
2016-09-03 | Make the installer safer by fetching and verifying external data | Robert Peichaer | |
as unprivileged users. OK halex, tb, deraadt | |||
2016-09-03 | As 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-03 | fix some wrong interrupt code that doesn't fit with the new model | Mike Larkin | |
ok stefan@ | |||
2016-09-03 | Adding a clean up block to vioblk_notifyq() and vionet_enq_rx() | Nayden Markatchev | |
OK mlarkin@ | |||
2016-09-03 | provide better interrupt responsiveness by exiting to vmd whenever | Mike 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-03 | Remove NULL pointer checks before calls to free(). | Nayden Markatchev | |
OK bluhm@ nicm@ | |||
2016-09-03 | Add a do_as() function that executes commands as unprivileged user | Robert 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-03 | set password to return of readpassphrase(), not always the buffer. | Ted Unangst | |
2016-09-03 | nitpicks. all header info is relative. make gzheader freeable. | Marc Espie | |
allocate properly for storing shas. | |||
2016-09-03 | Add two users accounts to the install media that have no privileges | Robert 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-03 | Return immediately when m_getuio() fails by invalid uio parameter. | YASUOKA Masahiko | |
ok mikeb bluhm claudio | |||
2016-09-03 | convert to use readpassphrase() instead of DEPRECATED/getpass() | Gleydson Soares | |
OK millert@ | |||
2016-09-03 | the sudo timeout was 5 minutes i believe, so we'll match that. | Ted Unangst | |
2016-09-03 | convert to use readpassphrase() instead of DEPRECATED/getpass() | Gleydson Soares | |
OK millert@ | |||
2016-09-03 | note that getpass is obsolete. removed from posix in 2001. | Ted Unangst | |
2016-09-03 | Enable a stripped down version of doas(1) on the install media. | Robert Peichaer | |
OK halex, tb, deraadt | |||
2016-09-03 | Some isakmpd tests need generated header files from isakmpd. Change | Alexander Bluhm | |
to /usr/src/sbin/isakmpd and make depend before regress. fixed together with mikeb@ | |||
2016-09-03 | convert to use readpassphrase() instead of DEPRECATED/getpass() | Gleydson Soares | |
OK millert@ | |||
2016-09-03 | convert to use readpassphrase() instead of DEPRECATED/getpass() | Gleydson Soares | |
OK millert@ | |||
2016-09-03 | convert to use readpassphrase() instead of DEPRECATED/getpass() | Gleydson Soares | |
OK millert@ | |||
2016-09-03 | Enable PIE on arm now that sjlj exceptions are no longer used after | Jonathan 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-03 | Use macros for iwm(4) bitmask definitions instead of enums. | Stefan Sperling | |
ok mpi benno | |||
2010-01-15 | NSD v3.2.4 | Jakob Schlyter | |
2016-09-03 | Simplify 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@ |