CVS: cvs.openbsd.org: src

2019-11-21 Thread Darren Tucker
CVSROOT:/cvs
Module name:src
Changes by: dtuc...@cvs.openbsd.org 2019/11/21 23:50:30

Modified files:
usr.bin/ssh: misc.c 

Log message:
Wait for FD to be readable or writeable during a nonblocking connect,
not just readable.  Prevents a timeout when the server doesn't immediately
send a banner (eg multiplexers like sslh) but is also slightly quicker
for other connections since, unlike ssh1, ssh2 doesn't specify that the
client should parse the server banner before sending its own.  Patch
from mniss...@chromium.org, ok djm@



CVS: cvs.openbsd.org: src

2019-11-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2019/11/21 23:31:30

Modified files:
etc/rc.d   : sndiod 

Log message:
sndiod(8) reopens audio interfaces on SIGHUP, which makes a lot of sense
when -F is used. Because of this allow rc.d script to reload sndiod.
OK kn ratchov aja



CVS: cvs.openbsd.org: src

2019-11-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2019/11/21 23:26:00

Modified files:
share/man/man4 : route.4 

Log message:
Add RTP_PROPOSAL_UMB to the priorities list



CVS: cvs.openbsd.org: src

2019-11-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2019/11/21 23:24:09

Modified files:
sbin/route : route.c 

Log message:
Teach route(8) about RTP_PROPOSAL_UMB



CVS: cvs.openbsd.org: src

2019-11-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2019/11/21 23:22:30

Modified files:
sys/dev/usb: if_umb.c 

Log message:
Use rtm_proposal() to send out DNS updates. Both when DNS are added and
when the interface is deconfigured (when going down).



CVS: cvs.openbsd.org: src

2019-11-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2019/11/21 23:20:15

Modified files:
sys/net: rtsock.c route.h 

Log message:
Add rtm_proposal, a function to send out RTM_PROPOSAL messages from the
kernel. Will be used to have umb(4) inform unwind(8) about DNS changes.
OK bluhm@ tested by florian@ and deraadt@



CVS: cvs.openbsd.org: src

2019-11-21 Thread Kenneth R Westerback
CVSROOT:/cvs
Module name:src
Changes by: k...@cvs.openbsd.org2019/11/21 16:22:14

Modified files:
sys/scsi   : cd.c ch.c scsi_base.c 

Log message:
Be consistent and always use [!]ISSET() to test flags in xs->flags.



CVS: cvs.openbsd.org: src

2019-11-21 Thread Kenneth R Westerback
CVSROOT:/cvs
Module name:src
Changes by: k...@cvs.openbsd.org2019/11/21 15:31:27

Modified files:
sys/scsi   : cd.c scsi_base.c scsi_ioctl.c 

Log message:
Be consistent and always use SET() to set flags in xs->flags.



CVS: cvs.openbsd.org: www

2019-11-21 Thread T . J . Townsend
CVSROOT:/cvs
Module name:www
Changes by: t...@cvs.openbsd.org2019/11/21 14:01:42

Modified files:
.  : errata65.html errata66.html 

Log message:
release inteldrm and mesa errata



CVS: cvs.openbsd.org: src

2019-11-21 Thread Tim van der Molen
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2019/11/21 13:02:20

Modified files:
lib/libcrypto/hkdf: hkdf.c 

Log message:
A touch of style(9)

OK tb@ tedu@



CVS: cvs.openbsd.org: src

2019-11-21 Thread Tim van der Molen
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2019/11/21 13:01:06

Modified files:
lib/libcrypto/hkdf: hkdf.c 

Log message:
Use explicit_bzero() to clear key material

OK tb@ tedu@



CVS: cvs.openbsd.org: src

2019-11-21 Thread Florian Obser
CVSROOT:/cvs
Module name:src
Changes by: flor...@cvs.openbsd.org 2019/11/21 12:27:33

Modified files:
sbin/slaacd: engine.c slaacd.h 

Log message:
We do not send lifetimes or source in DNS proposals.
Do not copy them to the main process.



CVS: cvs.openbsd.org: src

2019-11-21 Thread Florian Obser
CVSROOT:/cvs
Module name:src
Changes by: flor...@cvs.openbsd.org 2019/11/21 12:26:02

Modified files:
sbin/route : route.c 

Log message:
output RTM_PROPOSALs more similar to other route messages
no objection krw@ who has further suggestions for improvement



CVS: cvs.openbsd.org: src

2019-11-21 Thread Ayaka Koshibe
CVSROOT:/cvs
Module name:src
Changes by: akosh...@cvs.openbsd.org2019/11/21 10:24:15

Modified files:
sys/net: switchofp.c 

Log message:
Fix comment typo: specification



CVS: cvs.openbsd.org: src

2019-11-21 Thread Ted Unangst
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2019/11/21 09:13:39

Modified files:
lib/libutil: bcrypt_pbkdf.c 

Log message:
zero tmpout too. reminded by related diff from tim



CVS: cvs.openbsd.org: src

2019-11-21 Thread Ted Unangst
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2019/11/21 09:07:25

Modified files:
lib/libutil: bcrypt_pbkdf.c pkcs5_pbkdf2.c 

Log message:
overwrite the key in failure modes in case the caller doesn't check.
ok deraadt