Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-03 | Those while loops look better written as for loops | Jeremie Courreges-Anglas | |
ok kettenis@ | |||
2016-09-30 | Zap stray whitespace. | Kenneth R Westerback | |
2016-09-30 | Use WSKBDIO_GETENCODINGS ioctl to generate a list of supported keyboard | Mark Kettenis | |
encodings. Restores functionality lost when removing the kvm groveling code. ok deraadt@, jca@ | |||
2016-09-29 | Don't record non-existant client identifier in lease file. | Kenneth R Westerback | |
2016-09-29 | 'ifname' --> 'ifi->name' so DEBUG compiles again. | Kenneth R Westerback | |
2016-09-28 | document kern.allowkmem; ok deraadt | Jason McIntyre | |
2016-09-28 | Always do the setgroups, setresgid and setresuid even if if the | Florian Obser | |
unprivileged user is not present instead of erroring out. This lets ping and traceroute work in restricted enviornments like the bgplg chroot. Problem reported by sthen@ input & prodding deraadt@ | |||
2016-09-27 | remove more kvm code | Theo de Raadt | |
2016-09-27 | Reintroduce rdaemon() - working properly this time | Jeremie Courreges-Anglas | |
Thanks Ken for fixing my initial implementation. ok krw@ | |||
2016-09-26 | Remove kvm groveling code. To restore the lost functionality we need to | Mark Kettenis | |
implement something like a WSKBDIO_GETENCODINGS ioctl that fetches a list of possible encodings for the specified keyboard from the kernel. Until that happens, kbd -l will simple show the same harcoded list of possible encodings as the installer does. Prompted by deraadt@ | |||
2016-09-26 | Pass the flags argument of recvfromto down to the underlying recvmsg | Jeremie Courreges-Anglas | |
Doesn't matter in iked as recvfromto is only called with flags = 0, but this code tends to be copied. ok sthen@ florian@ | |||
2016-09-26 | Drop privileges to newly added _ping user/group. | Florian Obser | |
It does not buy us much when called as a unpriv user. But if run as root we can now lose privileges. OK natano@, deraadt@ is happy | |||
2016-09-24 | print a BFD route message. | Peter Hessler | |
protected with #ifdef BFD while we still figure out some of the mechanisms. OK mpi@ | |||
2016-09-23 | kern.arandom no longer exists | Theo de Raadt | |
from rob pierce | |||
2016-09-21 | Remove reference to zaurus | Frederic Cambus | |
OK sthen@ | |||
2016-09-21 | Document auto rounds. | Joel Sing | |
2016-09-21 | Add support for automatically selecting the number of rounds to use with | Joel Sing | |
bcrypt pbkdf, based on system performance. This is based on the bcrypt autorounds code we have in libc. Discussed with djm@ and tedu@. | |||
2016-09-21 | Be clearer with the description of bioctl(8)'s -r option. | Joel Sing | |
ok jmc@ | |||
2016-09-21 | sysctl KERN_ARND is no longer used (in ports, it only occurs in fallback | Theo de Raadt | |
paths of libevent). This interface was the first generation of what eventually became getentropy(2) and arc4random(3) -- june 1997! Ports scan by sthen, general agreement guenther | |||
2016-09-20 | whitespace | Theo de Raadt | |
2016-09-20 | various cleanup; ok florian | Jason McIntyre | |
2016-09-19 | Update for bcrypt pbkdf. | Joel Sing | |
2016-09-19 | Switch softraid crypto from PKCS5 PBKDF2 to bcrypt PBKDF. | Joel Sing | |
New volumes will be created with bcrypt PBKDF, however existing volumes will continue to use PKCS5 PBKDF2 until a passphrase change is made. If you're booting from softraid crypto, ensure that your boot loader has been upgraded to a version that supports bcrypt prior to changing your passphrase. Also be aware that once the passphrase has been changed, an older version of bioctl(8) (one that does not support bcrypt PBKDF) will not be able to "unlock" the volume. Partly based on a diff from djm@. | |||
2016-09-19 | Only allow standard dot notation for IPv4 addresses. | Florian Obser | |
We can get rid of inet_aton(3) and use the AF independent getaddrinfo(3). OK natano@, krw@, millert@, claudio@ | |||
2016-09-18 | unbreak IPv6 source selection | Florian Obser | |
2016-09-18 | simplify startup, since we know earlier which type of socket we need | Theo de Raadt | |
ok florian | |||
2016-09-18 | whitespace | Theo de Raadt | |
2016-09-18 | If running in verbose mode and no source address has been specified | Florian Obser | |
with -I find the kernel selected address and print it even for v4 addresses. OK phessler@, natano@, mpi@, claudio@, benno@, sthen@, millert@ | |||
2016-09-18 | Do not print 'ping6' in reporting output, just 'ping'. | Florian Obser | |
OK tom@, natano@, claudio@, sthen@, millert@ | |||
2016-09-18 | minor tweaks; | Jason McIntyre | |
2016-09-17 | backwards if(v6flag); pointed out by naddy | Florian Obser | |
2016-09-17 | ... and we have unification. | Florian Obser | |
"Das tritt nach meiner Kenntnis... ist das sofort... unverzueglich..." | |||
2016-09-17 | unhook ping6 from the build | Florian Obser | |
2016-09-17 | Merge ping6(8) manual into ping(8). | Florian Obser | |
Tweak & OK jmc@ | |||
2016-09-17 | ping6(8) is now a hardlink to ping(8). | Florian Obser | |
The instbin stuff looks good to deraadt@ | |||
2016-09-17 | The final merge ping6 into ping. | Florian Obser | |
"why slow down?" deraadt@ | |||
2016-09-17 | Sync printing of wrong additional data to ping version. | Florian Obser | |
2016-09-17 | Use ECHOTMLEN define; no functional change. | Florian Obser | |
2016-09-17 | Only print that data is truncated like ping(8) does. While here get | Florian Obser | |
rid of the MINIMUM macro, it wasn't doing anything, anyway. | |||
2016-09-17 | iov_base is already set in this case; reduce diff to ping6(8). | Florian Obser | |
2016-09-17 | MAXPAYLOAD is different between ping and ping6. | Florian Obser | |
2016-09-17 | dead store | Florian Obser | |
2016-09-17 | Just use AF_INET like everywhere else. | Florian Obser | |
2016-09-17 | malloc sets errno; use err not errx | Florian Obser | |
2016-09-17 | whitespace | Florian Obser | |
2016-09-17 | Make getting source address more AF independent. | Florian Obser | |
2016-09-17 | If -I was not given hoist getting source address up. | Florian Obser | |
2016-09-17 | Make source address selection more AF independent. | Florian Obser | |
2016-09-17 | Introduce AF independent from. | Florian Obser | |
2016-09-17 | Use AF independent dst where possible. | Florian Obser | |