svn commit: r337560 - head/sys/contrib/ipfilter/netinet

2018-08-09 Thread Cy Schubert
Author: cy Date: Fri Aug 10 00:30:15 2018 New Revision: 337560 URL: https://svnweb.freebsd.org/changeset/base/337560 Log: Correct a comment. Should have been detected by ipf_nat_in() not ipf_nat_out(). MFC after:1 week X-MFC-with: r337558 Modified:

svn commit: r338123 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-20 Thread Cy Schubert
Author: cy Date: Tue Aug 21 00:37:48 2018 New Revision: 338123 URL: https://svnweb.freebsd.org/changeset/base/338123 Log: MFC r337410: Remove redundant and incorrect default definition of AF_INET6. AF_INET6 is defined in sys/socket.h where it's defined as 28. A bit of trivia: On

svn commit: r338123 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-20 Thread Cy Schubert
Author: cy Date: Tue Aug 21 00:37:48 2018 New Revision: 338123 URL: https://svnweb.freebsd.org/changeset/base/338123 Log: MFC r337410: Remove redundant and incorrect default definition of AF_INET6. AF_INET6 is defined in sys/socket.h where it's defined as 28. A bit of trivia: On

svn commit: r338170 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-21 Thread Cy Schubert
Author: cy Date: Wed Aug 22 01:23:11 2018 New Revision: 338170 URL: https://svnweb.freebsd.org/changeset/base/338170 Log: MFC r338046: Add handy DTrace probes useful in diagnosing NAT issues. DTrace probes are situated next to error counters and/or in one instance prior to the -1

svn commit: r338170 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-21 Thread Cy Schubert
Author: cy Date: Wed Aug 22 01:23:11 2018 New Revision: 338170 URL: https://svnweb.freebsd.org/changeset/base/338170 Log: MFC r338046: Add handy DTrace probes useful in diagnosing NAT issues. DTrace probes are situated next to error counters and/or in one instance prior to the -1

svn commit: r338171 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-21 Thread Cy Schubert
Author: cy Date: Wed Aug 22 01:43:11 2018 New Revision: 338171 URL: https://svnweb.freebsd.org/changeset/base/338171 Log: MFC r338047: The bucket index is subtracted by one at lines 2304 and 2314. When 0 it becomes -1, except these are unsigned integers, so they become very large

svn commit: r338169 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-21 Thread Cy Schubert
Author: cy Date: Wed Aug 22 01:04:52 2018 New Revision: 338169 URL: https://svnweb.freebsd.org/changeset/base/338169 Log: MFC r338045: Expose np (nat_t - an entry in the nat table structure) in the DTrace probe when nat fails (label badnat). This is useful in diagnosing failed NAT

svn commit: r338169 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-21 Thread Cy Schubert
Author: cy Date: Wed Aug 22 01:04:52 2018 New Revision: 338169 URL: https://svnweb.freebsd.org/changeset/base/338169 Log: MFC r338045: Expose np (nat_t - an entry in the nat table structure) in the DTrace probe when nat fails (label badnat). This is useful in diagnosing failed NAT

svn commit: r338171 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet

2018-08-21 Thread Cy Schubert
Author: cy Date: Wed Aug 22 01:43:11 2018 New Revision: 338171 URL: https://svnweb.freebsd.org/changeset/base/338171 Log: MFC r338047: The bucket index is subtracted by one at lines 2304 and 2314. When 0 it becomes -1, except these are unsigned integers, so they become very large

svn commit: r338154 - head/contrib/wpa/src/drivers

2018-08-21 Thread Cy Schubert
Author: cy Date: Tue Aug 21 19:17:35 2018 New Revision: 338154 URL: https://svnweb.freebsd.org/changeset/base/338154 Log: For CID 1394785, add a comment explaining that global->event_buf is not really a char * but a struct rt_msghdr *. MFC after:3 days Modified:

svn commit: r338367 - head/crypto/heimdal/doc/doxyout/krb5/man/man3

2018-08-29 Thread Cy Schubert
Author: cy Date: Wed Aug 29 06:04:54 2018 New Revision: 338367 URL: https://svnweb.freebsd.org/changeset/base/338367 Log: Avoid printing extraneous function names when searching man page database (apropos, man -k). This commit Replaces .SS with .SH, similar to the man page provided by

svn commit: r338047 - head/sys/contrib/ipfilter/netinet

2018-08-19 Thread Cy Schubert
Author: cy Date: Sun Aug 19 13:45:03 2018 New Revision: 338047 URL: https://svnweb.freebsd.org/changeset/base/338047 Log: The bucket index is subtracted by one at lines 2304 and 2314. When 0 it becomes -1, except these are unsigned integers, so they become very large numbers. Thus are

svn commit: r338046 - head/sys/contrib/ipfilter/netinet

2018-08-19 Thread Cy Schubert
Author: cy Date: Sun Aug 19 13:44:59 2018 New Revision: 338046 URL: https://svnweb.freebsd.org/changeset/base/338046 Log: Add handy DTrace probes useful in diagnosing NAT issues. DTrace probes are situated next to error counters and/or in one instance prior to the -1 return from various

svn commit: r338045 - head/sys/contrib/ipfilter/netinet

2018-08-19 Thread Cy Schubert
Author: cy Date: Sun Aug 19 13:44:56 2018 New Revision: 338045 URL: https://svnweb.freebsd.org/changeset/base/338045 Log: Expose np (nat_t - an entry in the nat table structure) in the DTrace probe when nat fails (label badnat). This is useful in diagnosing failed NAT issues and was used in

Re: svn commit: r337936 - in head/sys/contrib/libsodium: . builds builds/msvc builds/msvc/build builds/msvc/properties builds/msvc/vs2010 builds/msvc/vs2010/libsodium builds/msvc/vs2012 builds/msvc

2018-08-17 Thread Cy Schubert
d, which is why importing into vendor is important. It makes the job of some random committer who's chosen to or been tasked to update it easier. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. __

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
In message , Kyle Evans writes: > On Thu, Jul 19, 2018 at 7:32 PM, Shawn Webb wrot > e: > > On Thu, Jul 19, 2018 at 07:24:46PM -0500, Kyle Evans wrote: > >> On Thu, Jul 19, 2018 at 6:21 PM, Kyle Evans wrote: > >> > On Thu, Jul 19, 2018 at 4:33 PM, Cy Schub

svn commit: r336528 - head/contrib/wpa/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Fri Jul 20 01:53:28 2018 New Revision: 336528 URL: https://svnweb.freebsd.org/changeset/base/336528 Log: Revert r336501. It was a of the wrong rev from the vendor branch. Modified: head/contrib/wpa/src/rsn_supp/wpa.c Modified: head/contrib/wpa/src/rsn_supp/wpa.c

svn commit: r336530 - head/contrib/wpa/wpa_supplicant

2018-07-19 Thread Cy Schubert
Author: cy Date: Fri Jul 20 02:17:19 2018 New Revision: 336530 URL: https://svnweb.freebsd.org/changeset/base/336530 Log: To reduce our diff between our sources and our upline, sync up with upline. Also making it easier to read. Obtained from:diffing base with ports X-MFC-with:

Re: svn commit: r336528 - head/contrib/wpa/src/rsn_supp

2018-07-19 Thread Cy Schubert
In message , Kyle Evans writes: > On Thu, Jul 19, 2018 at 8:53 PM, Cy Schubert wrote: > > Author: cy > > Date: Fri Jul 20 01:53:28 2018 > > New Revision: 336528 > > URL: https://svnweb.freebsd.org/changeset/base/336528 > > > > Log: > > Revert r3365

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
In message , Kyle Evans writes: > On Thu, Jul 19, 2018 at 7:57 PM, Cy Schubert wrot > e: > > In message > il.com> > > , Kyle Evans writes: > >> On Thu, Jul 19, 2018 at 7:32 PM, Shawn Webb w > rot > >> e: > >> > On Thu, Jul 19, 2018 at 0

svn commit: r336529 - head/contrib/wpa/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Fri Jul 20 02:04:10 2018 New Revision: 336529 URL: https://svnweb.freebsd.org/changeset/base/336529 Log: MFV: r336486 Prevent reinstallation of an already in-use group key. Upline git commit cb5132bb35698cc0c743e34fe0e845dfc4c3e410. Obtained from:

svn commit: r336531 - head/contrib/wpa/src/drivers

2018-07-19 Thread Cy Schubert
Author: cy Date: Fri Jul 20 02:25:39 2018 New Revision: 336531 URL: https://svnweb.freebsd.org/changeset/base/336531 Log: Remove a redundant declaration. While at it add a blank line, conforming with the convention used in this file. X-MFC-with: r336203 Modified:

Re: svn commit: r336619 - head/lib/libc/gen

2018-07-23 Thread Cy Schubert
In message <1532364679.1344.161.ca...@freebsd.org>, Ian Lepore writes: > On Mon, 2018-07-23 at 09:41 -0700, Cy Schubert wrote: > > I'm sure. Rolling this libc commit back addressed the ssh segfaults > > on all my systems. > > > > --- > > Sent using a tin

RE: svn commit: r336625 - head/usr.sbin/pw

2018-07-23 Thread Cy Schubert
. Apologies for any typos and autocorrect. Also, this old phone only supports top post. Apologies. Cy Schubert or The need of the many outweighs the greed of the few. --- -Original Message- From: Ian Lepore Sent: 23/07/2018 08:00 To: Alan Somers Cc: src-committers; svn-src-all@freebsd.org

RE: svn commit: r336619 - head/lib/libc/gen

2018-07-23 Thread Cy Schubert
I'm sure. Rolling this libc commit back addressed the ssh segfaults on all my systems. --- Sent using a tiny phone keyboard. Apologies for any typos and autocorrect. Also, this old phone only supports top post. Apologies. Cy Schubert or The need of the many outweighs the greed of the few

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-23 Thread Cy Schubert
In message , Kyle Evans writes: > On Mon, Jul 23, 2018 at 7:55 AM, Dave Cottlehuber wrote: > > On Thu, 19 Jul 2018, at 15:25, Niclas Zeising wrote: > >> On 07/19/18 15:20, Cy Schubert wrote: > >> > In message <2f0ab2c2-b7cc-3dae-2d65-ea3c4a951...@daem

RE: svn commit: r336619 - head/lib/libc/gen

2018-07-23 Thread Cy Schubert
, this old phone only supports top post. Apologies. Cy Schubert or The need of the many outweighs the greed of the few. --- -Original Message- From: Ian Lepore Sent: 23/07/2018 17:05 To: Cy Schubert Cc: Alan Somers; src-committers; svn-src-all@freebsd.org; svn-src-h...@freebsd.org Subject

Re: svn commit: r336619 - head/lib/libc/gen

2018-07-23 Thread Cy Schubert
e thing > getpwnam() and other callers of __pw_scan() do, and init the struct to > have pointers to empty strings. And we should update some manpages to > make that an explicit contract. My previous email. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org T

RE: svn commit: r336619 - head/lib/libc/gen

2018-07-23 Thread Cy Schubert
keyboard. Apologies for any typos and autocorrect. Also, this old phone only supports top post. Apologies. Cy Schubert or The need of the many outweighs the greed of the few. --- -Original Message- From: Ian Lepore Sent: 23/07/2018 13:40 To: Cy Schubert Cc: Alan Somers; src-committers; svn-src

Re: svn commit: r336619 - head/lib/libc/gen

2018-07-22 Thread Cy Schubert
300 #endif 301 #ifdef HAVE_STRUCT_PASSWD_PW_CLASS 302 copy->pw_class = xstrdup(pw->pw_class); 303 #endif 304 copy->pw_dir = xstrdup(pw->pw_dir); 305 copy->pw_shell = xstrdup(pw->pw_shell); 306

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
it works for a little while, before > going down again. With the old wpa_supplicant I didn't have this problem. > > I don't have very much else to add except noting that I'm affected as > well. I haven't had time to debug it properly (which is why I've never > reported it) Do

svn commit: r336496 - vendor/wpa/dist/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 17:49:39 2018 New Revision: 336496 URL: https://svnweb.freebsd.org/changeset/base/336496 Log: Import upline security patch: FILS: Do not allow multiple (Re)Association Response frames. This is also upline git commit e760851176c77ae6de19821bb1d5bf3ae2cb5187.

svn commit: r336494 - vendor/wpa/dist/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 17:37:13 2018 New Revision: 336494 URL: https://svnweb.freebsd.org/changeset/base/336494 Log: Import upline security patch: TDLS: Reject TPK-TK reconfiguration. This is also upline git commmit ff89af96e5a35c86f50330d2b86c18323318a60c. Obtained from:

svn commit: r336495 - vendor/wpa/dist/wpa_supplicant

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 17:46:33 2018 New Revision: 336495 URL: https://svnweb.freebsd.org/changeset/base/336495 Log: Import upline security patch: WNM: Ignore WNM-Sleep Mode Request in wnm_sleep_mode=0 case. This is also upline git commit 114f2830d2c2aee6db23d48240e93415a256a37c.

svn commit: r336493 - vendor/wpa/dist/src/ap

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 17:34:58 2018 New Revision: 336493 URL: https://svnweb.freebsd.org/changeset/base/336493 Log: Import upline security patch: Fix PTK rekeying to generate a new ANonce. This is also upline git commit 0adc9b28b39d414d5febfff752f6a1576f785c85. Obtained from:

svn commit: r336485 - vendor/wpa/dist/src/ap

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 14:35:27 2018 New Revision: 336485 URL: https://svnweb.freebsd.org/changeset/base/336485 Log: Import upline hostapd-avoid-key-reinstallation security patch. Obtained from:https://w1.fi/security/2017-1/\

svn commit: r336487 - vendor/wpa/dist/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 14:41:46 2018 New Revision: 336487 URL: https://svnweb.freebsd.org/changeset/base/336487 Log: Import upline security patch: Extend protection of GTK/IGTK reinstallation of WNM-Sleep Mode cases. This git commit 87e2db16bafcbc60b8d0016175814a73c1e8ed45.

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
where a new ANonce is generated when going directly to the PTKSTART state since there is no need to try to determine the PMK again in such a case. This is far from ideal since the new PTK would depend on a new nonce only from the supplicant. Fix this by generating a new ANonce w

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
t; > down again. With the old wpa_supplicant I didn't have this problem. > > > > I don't have very much else to add except noting that I'm affected as well. > > I haven't had time to debug it properly (which is why I've never reported > > it) > > I plan on trying out t

svn commit: r336486 - in vendor/wpa/dist/src: common rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 14:37:32 2018 New Revision: 336486 URL: https://svnweb.freebsd.org/changeset/base/336486 Log: Import upline security patch to prevent an alreadi in use group ke. Obtained from:https://w1.fi/security/2017-1/\

svn commit: r336499 - head/contrib/wpa/src/ap

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 19:04:30 2018 New Revision: 336499 URL: https://svnweb.freebsd.org/changeset/base/336499 Log: MFV: r336485 Address: hostapd: Avoid key reinstallation in FT handshake Obtained from:https://w1.fi/security/2017-1/\

svn commit: r336501 - head/contrib/wpa/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 19:22:26 2018 New Revision: 336501 URL: https://svnweb.freebsd.org/changeset/base/336501 Log: MFV: r336486 Prevent reinstallation of an already in-use group key. Upline git commit cb5132bb35698cc0c743e34fe0e845dfc4c3e410. Obtained from:

svn commit: r336502 - head/contrib/wpa

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 19:32:08 2018 New Revision: 336502 URL: https://svnweb.freebsd.org/changeset/base/336502 Log: MFV r336487: Import upline security patch: Extend protection of GTK/IGTK reinstallation of WNM-Sleep Mode cases. This git commit

svn commit: r336513 - head/contrib/wpa

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 20:20:43 2018 New Revision: 336513 URL: https://svnweb.freebsd.org/changeset/base/336513 Log: MFV r336495: Another props change. The real work was done by r324696. We're simply syncing up with the vendor branch again. mport upline security patch: WNM:

svn commit: r336506 - head/contrib/wpa/src/rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 20:10:34 2018 New Revision: 336506 URL: https://svnweb.freebsd.org/changeset/base/336506 Log: MFV r336490: Prevent installation of an all-zero TK. This is also upline git commit 53bb18cc8b7a4da72e47e4b3752d0d2135cffb23. Obtained from:

svn commit: r336510 - head/contrib/wpa

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 20:14:33 2018 New Revision: 336510 URL: https://svnweb.freebsd.org/changeset/base/336510 Log: MFV r336493: Fix PTK rekeying to generate a new ANonce. This is also upline git commit 0adc9b28b39d414d5febfff752f6a1576f785c85. This commit is a NOP, just

svn commit: r336512 - head/contrib/wpa

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 20:18:13 2018 New Revision: 336512 URL: https://svnweb.freebsd.org/changeset/base/336512 Log: MFV r336494: TDLS: Reject TPK-TK reconfiguration. This is also upline git commmit ff89af96e5a35c86f50330d2b86c18323318a60c. Once again this is a NOP as this is a

svn commit: r336515 - head/contrib/wpa

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 20:23:27 2018 New Revision: 336515 URL: https://svnweb.freebsd.org/changeset/base/336515 Log: MFV r336496: A props change to sync up with the vendor branch. The real work was done by r324696. FILS: Do not allow multiple (Re)Association Response frames.

svn commit: r336490 - in vendor/wpa/dist/src: common rsn_supp

2018-07-19 Thread Cy Schubert
Author: cy Date: Thu Jul 19 16:58:20 2018 New Revision: 336490 URL: https://svnweb.freebsd.org/changeset/base/336490 Log: Import upline security patch: Prevent installation of an all-zero TK This is also upline git commit 53bb18cc8b7a4da72e47e4b3752d0d2135cffb23. Obtained from:

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-18 Thread Cy Schubert
dd wrote > : > > Is it during a rekey event? > > > > > > > > -adrian > > > > On Wed, 18 Jul 2018 at 08:16, Kyle Evans wrote: > >> > >> On Wed, Jul 11, 2018 at 1:53 PM, Cy Schubert wrote: > >> > Author: cy > >> > Date: Wed J

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
In message <17042686.mc0x0p6...@asus.theweb.org.ua>, "Oleg V. Nauman" writes: > On Thursday, July 19, 2018 4:54:42 PM EEST Cy Schubert wrote: > > In message > il.com> > > > > , Kyle Evans writes: > > > On Thu, Jul 19, 2018 at 7:13 AM, N

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-19 Thread Cy Schubert
In message <201807192114.w6jleapa097...@slippy.cwsent.com>, Cy Schubert writes: > In message <17042686.mc0x0p6...@asus.theweb.org.ua>, "Oleg V. Nauman" > writes: > > On Thursday, July 19, 2018 4:54:42 PM EEST Cy Schubert wrote: > > > In message &

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-23 Thread Cy Schubert
In message <1532350523.2338008.1449756200.7870027F@webmail.messagingengi ne.com> , Dave Cottlehuber writes: > On Thu, 19 Jul 2018, at 15:25, Niclas Zeising wrote: > > On 07/19/18 15:20, Cy Schubert wrote: > > > In message <2f0ab2c2-b7cc-3dae-2d65-ea3c4a951...@daemonic.

svn commit: r338464 - in stable: 10/crypto/heimdal/doc/doxyout/krb5/man/man3 11/crypto/heimdal/doc/doxyout/krb5/man/man3

2018-09-04 Thread Cy Schubert
Author: cy Date: Wed Sep 5 01:33:30 2018 New Revision: 338464 URL: https://svnweb.freebsd.org/changeset/base/338464 Log: Avoid printing extraneous function names when searching man page database (apropos, man -k). This commit Replaces .SS with .SH, similar to the man page provided by

svn commit: r338464 - in stable: 10/crypto/heimdal/doc/doxyout/krb5/man/man3 11/crypto/heimdal/doc/doxyout/krb5/man/man3

2018-09-04 Thread Cy Schubert
Author: cy Date: Wed Sep 5 01:33:30 2018 New Revision: 338464 URL: https://svnweb.freebsd.org/changeset/base/338464 Log: Avoid printing extraneous function names when searching man page database (apropos, man -k). This commit Replaces .SS with .SH, similar to the man page provided by

Re: svn commit: r338098 - in head: . tools/build

2018-08-29 Thread Cy Schubert
; .include > This broke my krb5 project branch. The fix for me is easy but rather inelegant, adding yet another for loop. Would it not be better to guarantee that mtree is in $WORLDTEMP for platforms that don't have it naturally or unconditionally? And, before we use it? With this change

svn commit: r336151 - head/kerberos5/usr.bin/verify_krb5_conf

2018-07-09 Thread Cy Schubert
Author: cy Date: Tue Jul 10 00:26:13 2018 New Revision: 336151 URL: https://svnweb.freebsd.org/changeset/base/336151 Log: Remove redundant space. MFC after:3 days Modified: head/kerberos5/usr.bin/verify_krb5_conf/Makefile Modified: head/kerberos5/usr.bin/verify_krb5_conf/Makefile

svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drivers c...

2018-07-11 Thread Cy Schubert
Author: cy Date: Wed Jul 11 18:53:18 2018 New Revision: 336203 URL: https://svnweb.freebsd.org/changeset/base/336203 Log: MFV r324714: Update wpa 2.5 --> 2.6. MFC after:1 month Added: head/contrib/wpa/src/ap/mbo_ap.c - copied unchanged from r336186,

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-11 Thread Cy Schubert
In message <201807111853.w6biri9b080...@repo.freebsd.org>, Cy Schubert writes: > Author: cy > Date: Wed Jul 11 18:53:18 2018 > New Revision: 336203 > URL: https://svnweb.freebsd.org/changeset/base/336203 > > Log: > MFV r324714: > > Update wpa 2.5 --&g

Re: svn commit: r336031 - head/usr.bin/top

2018-07-06 Thread Cy Schubert
nst char *msgfmt, ...) > > va_start(args, msgfmt); > > > > /* first, format the message */ > > -vsnprintf(next_msg, sizeof(next_msg), msgfmt, args); > > +vsnprintf(next_msg, strlen(next_msg), msgfmt, args); > I highly suspect that this strlen(

Re: svn commit: r336028 - head/usr.bin/top

2018-07-07 Thread Cy Schubert
_msg, strlen(next_msg), msgfmt, args); +vsnprintf(next_msg, screen_width + 5, msgfmt, args); va_end(args); > > > > I also think restructure of the buffer management is required first > > if we want to eliminate the column width limitation. Using sbuf(9) > > consis

svn commit: r336235 - stable/11/kerberos5/usr.bin/verify_krb5_conf

2018-07-12 Thread Cy Schubert
Author: cy Date: Fri Jul 13 00:37:47 2018 New Revision: 336235 URL: https://svnweb.freebsd.org/changeset/base/336235 Log: MFC r336151: Remove redundant space. Modified: stable/11/kerberos5/usr.bin/verify_krb5_conf/Makefile Directory Properties: stable/11/ (props changed) Modified:

Re: svn commit: r336203 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/patches contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drive

2018-07-11 Thread Cy Schubert
In message <201807111853.w6biri9b080...@repo.freebsd.org>, Cy Schubert writes: > Author: cy > Date: Wed Jul 11 18:53:18 2018 > New Revision: 336203 > URL: https://svnweb.freebsd.org/changeset/base/336203 > > Log: > MFV r324714: > > Update wpa 2.5 --&g

Re: svn commit: r335919 - head/sys/netinet6

2018-07-04 Thread Cy Schubert
goto badheadlocked; 422 } 423 INP_RLOCK(last); 424 if (__predict_true(inp->inp_flags2 & INP_FREED) == 0) { 425 UDP_PROBE(receive, NULL, last, ip6, last, uh); 426

Re: svn commit: r335919 - head/sys/netinet6

2018-07-04 Thread Cy Schubert
9UW"; > protected-headers="v1" > From: "Andrey V. Elsukov" > To: Cy Schubert , Matt Macy > Cc: src-committ...@freebsd.org, svn-src-all@freebsd.org, > svn-src-h...@freebsd.org > Message-ID: <13fa004f-6d8a-025e-9d4f-957f08111...@yandex.ru> >

Re: svn commit: r327949 - in head/sys/dev: aacraid advansys ath beri/virtio bnxt bwn ciss cxgbe/crypto esp fb gpio if_ndis iwi kbd liquidio liquidio/base mpr mps mpt mrsas mxge netmap nvme pst ral r

2018-01-13 Thread Cy Schubert
mxge/if_mxge.c:4538:9: error: unused variable 'bytes' [-Werror,-Wunused-variable] size_t bytes; ^ 1 error generated. *** [if_mxge.o] Error code 1 > - sc->msix_ih = malloc(bytes, M_DEVBUF, M_NOWAIT|M_ZERO); > + sc->msix_ih = mallocarray(sc->num_slices, sizeof(*sc->m

RE: svn commit: r330972 - stable/11/share/misc

2018-03-15 Thread Cy Schubert
rather than having to poll. Polling is inefficient use of my time. --- Sent using a tiny phone keyboard. Apologies for any typos and autocorrect. Also, this old phone only supports top post. Apologies. Cy Schubert <cy.schub...@cschubert.com> or <c...@freebsd.org> The need of the ma

Re: svn commit: r328013 - head/sbin/fsck_ffs

2018-03-10 Thread Cy Schubert
loss should the primary slice fail to boot. In that case data loss is tolerable to allow a better chance I can remotely ssh in. (Of course there's no 100% guarantee if there's data loss but it's better than 0% if the gateway dropped into single user

Re: svn commit: r328013 - head/sbin/fsck_ffs

2018-03-10 Thread Cy Schubert
that fsck -p during /etc/rc processing can > run into many different file systems, some more resilent to running > things like fsck -R -y, some not. Having been in this situation with FreeBSD, Solaris, Linux, and many other operating systems, if you have more than a reasonable numb

Re: svn commit: r331369 - head/sys/vm

2018-04-07 Thread Cy Schubert
In message <201803230615.w2n6ftmj040...@slippy.cwsent.com>, Cy Schubert writes: > In message <20180323150709.h...@besplex.bde.org>, Bruce Evans writes: > > On Thu, 22 Mar 2018, Jeff Roberson wrote: > > > > > On Thu, 22 Mar 2018, Cy Schubert wrote: > >

svn commit: r332736 - in stable/11: include lib/libc/stdio lib/libc/tests/stdio

2018-04-18 Thread Cy Schubert
Author: cy Date: Wed Apr 18 19:18:14 2018 New Revision: 332736 URL: https://svnweb.freebsd.org/changeset/base/332736 Log: MFC r331936, r331942, r331943, r331945, r331947, r331948 Add new gets_s(3) stdio function. This implements the gets_s(3) function as documented at

Re: svn commit: r332967 - in head: cddl/lib/libdtrace sys/kern sys/netinet sys/netinet6 sys/sys

2018-04-24 Thread Cy Schubert
bmitter. > > Submitted by: Johannes Lundberg > Sponsored by: Limelight Networks Hi Sean, Why? Not that I agree or disagree with this commit specifically, including the reason why in the log might assist someone browsing through the log. -- Cheers, Cy Schubert <cy.sc

Re: svn commit: r332967 - in head: cddl/lib/libdtrace sys/kern sys/netinet sys/netinet6 sys/sys

2018-04-24 Thread Cy Schubert
In message <a3a4fa3e-ce42-4bdd-88bc-efef16ee1...@freebsd.org>, Devin Teske writ es: > > > --Apple-Mail=_782CDA06-B0D5-4122-82C6-1541344DA2A3 > Content-Transfer-Encoding: quoted-printable > Content-Type: text/plain; > charset=us-ascii > > > > On Ap

RE: svn commit: r331650 - in head/sys: amd64/amd64 amd64/ia32amd64/linux amd64/linux32 cddl/contrib/opensolaris/uts/intel/dtracecddl/dev/dtrace/amd64 cddl/dev/dtrace/i386 i386/i386 i386/linux x86/inc.

2018-03-27 Thread Cy Schubert
Have you disabled DDB in your kernel config? --- Sent using a tiny phone keyboard. Apologies for any typos and autocorrect. Also, this old phone only supports top post. Apologies. Cy Schubert <cy.schub...@cschubert.com> or <c...@freebsd.org> The need of the many outweighs the gree

Re: Mismerge at r330897 in stable/11, Audit report

2018-03-28 Thread Cy Schubert
think if we revert the bogus merges with the wrong > > > history thats as good as its gona get. > > > > > >> > > >> >From a look it seems the following was also merged: > > >> r316370, r317095, r324394, and a few others. > > >>

svn commit: r331938 - svnadmin/conf

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 19:35:11 2018 New Revision: 331938 URL: https://svnweb.freebsd.org/changeset/base/331938 Log: Add myself for MIT krb5-1.16 import into vendor-crypto branch. Modified: svnadmin/conf/sizelimit.conf Modified: svnadmin/conf/sizelimit.conf

svn commit: r331940 - svnadmin/conf

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 19:36:48 2018 New Revision: 331940 URL: https://svnweb.freebsd.org/changeset/base/331940 Log: Import of MIT krb5-1.16 is now complete. Modified: svnadmin/conf/sizelimit.conf Modified: svnadmin/conf/sizelimit.conf

svn commit: r331936 - in head/lib/libc: stdio tests/stdio

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 18:52:38 2018 New Revision: 331936 URL: https://svnweb.freebsd.org/changeset/base/331936 Log: Add new gets_s(3) stdio function. This implements the gets_s(3) function as documented at http://en.cppreference.com/w/c/io/gets. It facilitates the optional

svn commit: r331941 - vendor-crypto/krb5/1.16

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 19:39:06 2018 New Revision: 331941 URL: https://svnweb.freebsd.org/changeset/base/331941 Log: Tag MIT krb5-1.16. Added: vendor-crypto/krb5/1.16/ - copied from r331940, vendor-crypto/krb5/dist/ ___

svn commit: r331942 - head/lib/libc/stdio

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 19:51:23 2018 New Revision: 331942 URL: https://svnweb.freebsd.org/changeset/base/331942 Log: Add gets_s(3) to the man page title (noticed by ed@). While I'm at it correct the update date in the man page. Reported by: ed@ MFC after:2 weeks X-MFC

svn commit: r331945 - head/lib/libc/stdio

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 20:38:25 2018 New Revision: 331945 URL: https://svnweb.freebsd.org/changeset/base/331945 Log: Correct the version number for gets_s(3). Reported by: kib@ MFC after:2 weeks X-MFC with: r331936 Differential Revision:

Re: svn commit: r331936 - in head/lib/libc: stdio tests/stdio

2018-04-03 Thread Cy Schubert
In message <20180403204240.gn1...@kib.kiev.ua>, Konstantin Belousov writes: > On Tue, Apr 03, 2018 at 01:24:42PM -0700, Cy Schubert wrote: > > In message <20180403202010.gk1...@kib.kiev.ua>, Konstantin Belousov > > writes: > > > On Tue, Apr 03, 2018 at

svn commit: r331948 - head/include

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 20:59:46 2018 New Revision: 331948 URL: https://svnweb.freebsd.org/changeset/base/331948 Log: Remove redundant check. Reported by: kib@ MFC after:2 weeks X-MFC with: r331936 Differential Revision:https://reviews.freebsd.org/D12785 Modified:

Re: svn commit: r331945 - head/lib/libc/stdio

2018-04-03 Thread Cy Schubert
In message <20180403205431.go1...@kib.kiev.ua>, Konstantin Belousov writes: > On Tue, Apr 03, 2018 at 08:38:25PM +, Cy Schubert wrote: > > Author: cy > > Date: Tue Apr 3 20:38:25 2018 > > New Revision: 331945 > > URL: https://svnweb.freebsd.org/c

Re: svn commit: r331936 - in head/lib/libc: stdio tests/stdio

2018-04-03 Thread Cy Schubert
In message <20180403202010.gk1...@kib.kiev.ua>, Konstantin Belousov writes: > On Tue, Apr 03, 2018 at 06:52:39PM +, Cy Schubert wrote: > > Modified: head/lib/libc/stdio/Symbol.map > > === > === >

svn commit: r331943 - head/include

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 20:14:37 2018 New Revision: 331943 URL: https://svnweb.freebsd.org/changeset/base/331943 Log: Include update to stdio.h missed in r331936. In my attempt to limit the commit in r331936 to only the gets_s() commit and not include unrelated patches in my tree,

Re: svn commit: r331936 - in head/lib/libc: stdio tests/stdio

2018-04-03 Thread Cy Schubert
In message <20180403202233.gl1...@kib.kiev.ua>, Konstantin Belousov writes: > On Tue, Apr 03, 2018 at 11:20:10PM +0300, Konstantin Belousov wrote: > > On Tue, Apr 03, 2018 at 06:52:39PM +0000, Cy Schubert wrote: > > > Modified: head/l

Re: svn commit: r331936 - in head/lib/libc: stdio tests/stdio

2018-04-03 Thread Cy Schubert
In message <20180403202010.gk1...@kib.kiev.ua>, Konstantin Belousov writes: > On Tue, Apr 03, 2018 at 06:52:39PM +, Cy Schubert wrote: > > Modified: head/lib/libc/stdio/Symbol.map > > === > === >

svn commit: r331947 - head/lib/libc/stdio

2018-04-03 Thread Cy Schubert
Author: cy Date: Tue Apr 3 20:53:53 2018 New Revision: 331947 URL: https://svnweb.freebsd.org/changeset/base/331947 Log: The correct symbol version for FreeBSD 12 is 1.5. Reported by: kib@ MFC after:2 weeks X-MFC with: r331936 Differential Revision:

Re: svn commit: r331943 - head/include

2018-04-03 Thread Cy Schubert
In message <20180403204057.gm1...@kib.kiev.ua>, Konstantin Belousov writes: > On Tue, Apr 03, 2018 at 08:14:37PM +, Cy Schubert wrote: > > Author: cy > > Date: Tue Apr 3 20:14:37 2018 > > New Revision: 331943 > > URL: https://svnweb.freebsd.org/c

Re: svn commit: r331326 - in head/stand: forth i386/loader

2018-03-21 Thread Cy Schubert
6/loader/loader.rc Wed Mar 21 22:01:51 2018(r33132 > 6) > @@ -3,10 +3,13 @@ > \ > \ Includes additional commands > include /boot/loader.4th > +include /boot/efi.4th > try-include /boot/loader.rc.local > > \ Reads and processes loader.conf variables &

Re: svn commit: r331369 - head/sys/vm

2018-03-22 Thread Cy Schubert
gt;> + if (vm_reserv_reclaim_inactive(domain)) > >> + goto again; > >> #endif > >> - { > >> - /* > >> -* If not, allocate it from the free page qu

Re: svn commit: r331369 - head/sys/vm

2018-03-22 Thread Cy Schubert
In message <alpine.BSF.2.21.1803221518200.2307@desktop>, Jeff Roberson writes: > On Thu, 22 Mar 2018, Cy Schubert wrote: > > > It broke i386 too. > > I just did > TARGET_ARCH=i386 make buildworld > TARGET_ARCH=i386 make buildkernel > > This worked for m

Re: svn commit: r331369 - head/sys/vm

2018-03-22 Thread Cy Schubert
In message <alpine.BSF.2.21.1803221553380.2307@desktop>, Jeff Roberson writes: > On Thu, 22 Mar 2018, Cy Schubert wrote: > > > In message <alpine.BSF.2.21.1803221518200.2307@desktop>, Jeff Roberson > > writes: > >> On Thu, 22 Mar 2018, Cy Schubert wrote: &g

svn commit: r331415 - head/sys/vm

2018-03-22 Thread Cy Schubert
Author: cy Date: Fri Mar 23 03:22:30 2018 New Revision: 331415 URL: https://svnweb.freebsd.org/changeset/base/331415 Log: Fix build on i386 without INVARIANTS following r331369. --- vm_reserv.o --- In file included from /opt/src/svn-current/sys/vm/vm_reserv.c:48: In file included from

Re: svn commit: r331369 - head/sys/vm

2018-03-22 Thread Cy Schubert
In message <alpine.BSF.2.21.1803221541590.2307@desktop>, Jeff Roberson writes: > On Thu, 22 Mar 2018, Cy Schubert wrote: > > > It broke i386 too. > > I believe I'm not able to reproduce this because it is a result of changes > in kernel config. I can not reproduce i

Re: svn commit: r331369 - head/sys/vm

2018-03-23 Thread Cy Schubert
In message <20180323150709.h...@besplex.bde.org>, Bruce Evans writes: > On Thu, 22 Mar 2018, Jeff Roberson wrote: > > > On Thu, 22 Mar 2018, Cy Schubert wrote: > > > >> It broke i386 too. > > > > I just did > > TARGET_ARCH=i386 ma

Re: svn commit: r331326 - in head/stand: forth i386/loader

2018-03-22 Thread Cy Schubert
In message <CACNAnaFznfuKqjK8cQsVDnRbc8J96CG+0q2piHrM9D=rlds...@mail.gma il.com> , Kyle Evans writes: > On Wed, Mar 21, 2018 at 10:30 PM, Cy Schubert <cy.schub...@cschubert.com> wro > te: > > In message <201803212201.w2lm1pvl020...@repo.freebsd.org>, Kyle Evans &

Re: svn commit: r330297 - in head: lib/libc/sys sys/compat/freebsd32 sys/i386/ibcs2 sys/kern sys/sys

2018-03-02 Thread Cy Schubert
el/t_sysv.c === --- /opt/src/svn-current/contrib/netbsd-tests/kernel/t_sysv.c (revision 330299) +++ /opt/src/svn-current/contrib/netbsd-tests/kernel/t_sysv.c (working copy) @@ -49,6 +49,7 @@ #include #include #include +#defi

Re: svn commit: r330297 - in head: lib/libc/sys sys/compat/freebsd32 sys/i386/ibcs2 sys/kern sys/sys

2018-03-02 Thread Cy Schubert
In message <20180302233343.gc83...@spindle.one-eyed-alien.net>, Brooks Davis wr ites: > > > --ALfTUftag+2gvp1h > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On Fri, Mar 02, 2018 at 03:31

<    3   4   5   6   7   8   9   10   11   12   >