CVS commit: [netbsd-5-1] src/doc

2015-11-07 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Nov  7 20:55:34 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
tickets 1974, 1978-1981


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.34 -r1.1.2.35 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.34 src/doc/CHANGES-5.1.6:1.1.2.35
--- src/doc/CHANGES-5.1.6:1.1.2.34	Fri Aug 14 06:00:50 2015
+++ src/doc/CHANGES-5.1.6	Sat Nov  7 20:55:34 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.34 2015/08/14 06:00:50 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.35 2015/11/07 20:55:34 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2696,3 +2696,76 @@ crypto/dist/openssl/util/mkerr.pl		patch
 	POODLE fix in October last year that caused the SSL server side	to
 	fail to handshake.
 	[spz, ticket#1976]
+
+sys/ufs/lfs/lfs_segment.c			1.247 via patch
+
+	Fix catastrophic bug in lfs_rewind() that changed segment
+	numbers (lfs_curseg/lfs_nextseg in the superblock) using the
+	wrong units.  These fields are for whatever reason the start
+	addresses of segments (measured in frags) rather than the
+	segment numbers 0..n.  Only affects dumping from a mounted
+	file system.
+	[dholland, ticket #1974]
+
+sys/dev/mii/atphy.c1.17
+
+	Fix incorrect argument of mii_anar(). Fixes PR#50206.
+	[msaitoh, ticket #1978]
+
+sys/kern/kern_exec.c1.419, 1.420
+sys/kern/kern_exit.c1.246, 1.247
+sys/kern/kern_synch.c1.309
+
+	In execve_runproc(), update the p_waited entry for the process
+	being moved to SSTOP state, not for its parent.  If the value is
+	not already zero, it could prevent its parent from waiting for
+	the process.  Fixes PR kern/50298
+	--
+	When clearing out the scheduler queues during system shutdown,
+	we move all processes to the SSTOP state.  Make sure we update
+	each process's p_waited and the parents' p_nstopchild counters
+	to maintain consistent values.  Fixes PR kern/50318
+	--
+	Currently, if a process is exiting and its parent has indicated
+	no intent of reaping the process (nor any other children), the
+	process will get reparented to init.  Since the state of the
+	exiting process at this point is SDEAD, proc_reparent() will not
+	update either the old or new parent's p_nstopchild counters.
+	This change causes both old and new parents to be properly
+	updated.  Fixes PR kern/50300
+	--
+	For processes marked with PS_STOPEXIT, update the process's
+	p_waited value, and update its parent's p_nstopchild value when
+	marking the process's p_stat to SSTOP.  The process needed to be
+	SACTIVE to get here, so this transition represents an additional
+	process for which the parent needs to wait.  Fixes PR kern/50308
+	--
+	In spawn_return() we temporarily move the process state to SSTOP,
+	but without updating its p_waited value or its parent's
+	p_nstopchild counter.  Later, we restore the original state,
+	again without any adjustment of the related values.  This leaves
+	a relatively short window when the values are inconsistent and
+	could interfere with the proper operation of sys_wait() for the
+	parent.  If during this window, any of the checks being made
+	result in an error, we call exit1() which will eventually migrate
+	the process's state to SDEAD (with an intermediate transition to
+	SDYING).  At this point the other variables get updated, and we
+	finally restore a consistent state.
+	This change updates the p_waited and parent's p_nstopchild at each
+	step to eliminate any windows during which the values could lead
+	to incorrect decisions.  Fixes PR kern/50330
+	[pgoyette, ticket #1979]
+
+sys/kern/kern_sig.c1.321
+
+	When delivering a signal, it's possible that the process's state
+	in p_stat is SACTIVE yet p_sflag is PS_STOPPING (while waiting
+	for other lwp's to stop).  In that case, we don't want to adjust
+	the parent's p_nstopchild count.
+	[pgoyette, ticket #1980]
+
+sys/kern/kern_exit.c1.248
+
+	Update value of p_stat before we release the proc_lock.
+	[pgoyette, ticket #1981]
+



CVS commit: [netbsd-5-1] src/doc

2015-11-07 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Nov  7 20:55:34 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
tickets 1974, 1978-1981


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.34 -r1.1.2.35 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-09-14 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Sep 15 00:03:24 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.3

Log Message:
Fix file list for ticket 1865;  add a missing "/"


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.53 -r1.1.2.54 src/doc/CHANGES-5.1.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.3
diff -u src/doc/CHANGES-5.1.3:1.1.2.53 src/doc/CHANGES-5.1.3:1.1.2.54
--- src/doc/CHANGES-5.1.3:1.1.2.53	Sun Sep 22 22:12:05 2013
+++ src/doc/CHANGES-5.1.3	Tue Sep 15 00:03:24 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.3,v 1.1.2.53 2013/09/22 22:12:05 riz Exp $
+# $NetBSD: CHANGES-5.1.3,v 1.1.2.54 2015/09/15 00:03:24 riz Exp $
 
 A complete list of changes from the NetBSD 5.1.2 release to the NetBSD 5.1.3
 release:
@@ -2393,54 +2393,54 @@ distrib/utils/sysinst/menus.mi		1.35, 1.
 	public servers.
 	[msaitoh, ticket #1846]
 
-xsrc/external/mitMesaLib/dist/src/glx/x11/XF86dri.c	patch
-xsrc/external/mitlibFS/dist/src/FSOpenServ.c		patch
-xsrc/external/mitlibX11/dist/modules/im/ximcp/imLcPrs.c	patch
-xsrc/external/mitlibX11/dist/modules/im/ximcp/imTrX.c	patch
-xsrc/external/mitlibX11/dist/src/AllCells.c		patch
-xsrc/external/mitlibX11/dist/src/Font.c			patch
-xsrc/external/mitlibX11/dist/src/FontInfo.c		patch
-xsrc/external/mitlibX11/dist/src/FontNames.c		patch
-xsrc/external/mitlibX11/dist/src/GetFPath.c		patch
-xsrc/external/mitlibX11/dist/src/GetImage.c		patch
-xsrc/external/mitlibX11/dist/src/GetMoEv.c		patch
-xsrc/external/mitlibX11/dist/src/GetPntMap.c		patch
-xsrc/external/mitlibX11/dist/src/GetProp.c		patch
-xsrc/external/mitlibX11/dist/src/LiHosts.c		patch
-xsrc/external/mitlibX11/dist/src/ListExt.c		patch
-xsrc/external/mitlibX11/dist/src/ModMap.c		patch
-xsrc/external/mitlibX11/dist/src/Xrm.c			patch
-xsrc/external/mitlibX11/dist/src/xcms/cmsColNm.c	patch
-xsrc/external/mitlibX11/dist/src/xkb/XKBExtDev.c	patch
-xsrc/external/mitlibX11/dist/src/xkb/XKBGeom.c		patch
-xsrc/external/mitlibX11/dist/src/xkb/XKBGetMap.c	patch
-xsrc/external/mitlibX11/dist/src/xkb/XKBNames.c		patch
-xsrc/external/mitlibXcursor/dist/src/file.c		patch
-xsrc/external/mitlibXext/dist/src/XEVI.c		patch
-xsrc/external/mitlibXext/dist/src/XShape.c		patch
-xsrc/external/mitlibXext/dist/src/XSync.c		patch
-xsrc/external/mitlibXext/dist/src/Xcup.c		patch
-xsrc/external/mitlibXext/dist/src/Xdbe.c		patch
-xsrc/external/mitlibXfixes/dist/src/Cursor.c		patch
-xsrc/external/mitlibXi/dist/src/XGMotion.c		patch
-xsrc/external/mitlibXi/dist/src/XGetBMap.c		patch
-xsrc/external/mitlibXi/dist/src/XGetDCtl.c		patch
-xsrc/external/mitlibXi/dist/src/XGetDProp.c		patch
-xsrc/external/mitlibXi/dist/src/XGetFCtl.c		patch
-xsrc/external/mitlibXi/dist/src/XGetProp.c		patch
-xsrc/external/mitlibXi/dist/src/XListDev.c		patch
-xsrc/external/mitlibXi/dist/src/XQueryDv.c		patch
-xsrc/external/mitlibXinerama/dist/src/Xinerama.c	patch
-xsrc/external/mitlibXrandr/dist/src/XrrProperty.c	patch
-xsrc/external/mitlibXrender/dist/src/Filter.c		patch
-xsrc/external/mitlibXrender/dist/src/Xrender.c		patch
-xsrc/external/mitlibXres/dist/src/XRes.c		patch
-xsrc/external/mitlibXt/dist/src/ResConfig.c		patch
-xsrc/external/mitlibXt/dist/src/Selection.c		patch
-xsrc/external/mitlibXv/dist/src/Xv.c			patch
-xsrc/external/mitlibXvMC/dist/src/XvMC.c		patch
-xsrc/external/mitlibXxf86dga/dist/src/XF86DGA2.c	patch
-xsrc/external/mitlibXxf86vm/dist/src/XF86VMode.c	patch
+xsrc/external/mit/MesaLib/dist/src/glx/x11/XF86dri.c	patch
+xsrc/external/mit/libFS/dist/src/FSOpenServ.c		patch
+xsrc/external/mit/libX11/dist/modules/im/ximcp/imLcPrs.c patch
+xsrc/external/mit/libX11/dist/modules/im/ximcp/imTrX.c	patch
+xsrc/external/mit/libX11/dist/src/AllCells.c		patch
+xsrc/external/mit/libX11/dist/src/Font.c		patch
+xsrc/external/mit/libX11/dist/src/FontInfo.c		patch
+xsrc/external/mit/libX11/dist/src/FontNames.c		patch
+xsrc/external/mit/libX11/dist/src/GetFPath.c		patch
+xsrc/external/mit/libX11/dist/src/GetImage.c		patch
+xsrc/external/mit/libX11/dist/src/GetMoEv.c		patch
+xsrc/external/mit/libX11/dist/src/GetPntMap.c		patch
+xsrc/external/mit/libX11/dist/src/GetProp.c		patch
+xsrc/external/mit/libX11/dist/src/LiHosts.c		patch
+xsrc/external/mit/libX11/dist/src/ListExt.c		patch
+xsrc/external/mit/libX11/dist/src/ModMap.c		patch
+xsrc/external/mit/libX11/dist/src/Xrm.c			patch
+xsrc/external/mit/libX11/dist/src/xcms/cmsColNm.c	patch
+xsrc/external/mit/libX11/dist/src/xkb/XKBExtDev.c	patch
+xsrc/external/mit/libX11/dist/src/xkb/XKBGeom.c		patch
+xsrc/external/mit/libX11/dist/src/xkb/XKBGetMap.c	patch
+xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c	patch
+xsrc/external/mit/libXcursor/dist/src/file.c		patch
+xsrc/external/mit/libXext/dist/src/XEVI.c		patch
+xsrc/external/mit/libXext/dist/src/XShape.c		patch
+xsrc/external/mit/libXext/dist/src/XSync.c		patch
+xsrc/external/mit/libXext/dist/src/Xcup.c		patch

CVS commit: [netbsd-5-1] src/doc

2015-09-14 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Sep 15 00:03:24 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.3

Log Message:
Fix file list for ticket 1865;  add a missing "/"


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.53 -r1.1.2.54 src/doc/CHANGES-5.1.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-08-14 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Aug 14 06:00:50 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1976.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.33 -r1.1.2.34 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.33 src/doc/CHANGES-5.1.6:1.1.2.34
--- src/doc/CHANGES-5.1.6:1.1.2.33	Fri Jul 24 07:47:34 2015
+++ src/doc/CHANGES-5.1.6	Fri Aug 14 06:00:50 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.33 2015/07/24 07:47:34 martin Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.34 2015/08/14 06:00:50 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2655,3 +2655,44 @@ sys/netinet/tcp_output.c			1.184
 	Make sure that snd_win doesn't go negative.
 	[matt, ticket #1973]
 
+crypto/dist/openssl/e_os2.h			patch
+crypto/dist/openssl/crypto/asn1/a_int.c		patch
+crypto/dist/openssl/crypto/asn1/tasn_new.c	patch
+crypto/dist/openssl/crypto/bn/bn.h		patch
+crypto/dist/openssl/crypto/bn/bn_err.c		patch
+crypto/dist/openssl/crypto/bn/bn_print.c	patch
+crypto/dist/openssl/crypto/bn/bn_rand.c		patch
+crypto/dist/openssl/crypto/bn/bn_shift.c	patch
+crypto/dist/openssl/crypto/cms/cms_smime.c	patch
+crypto/dist/openssl/crypto/ec/ec2_smpl.c	patch
+crypto/dist/openssl/crypto/ec/ec_check.c	patch
+crypto/dist/openssl/crypto/ec/ec_key.c		patch
+crypto/dist/openssl/crypto/ec/ec_lib.c		patch
+crypto/dist/openssl/crypto/ec/ecp_smpl.c	patch
+crypto/dist/openssl/crypto/ec/ectest.c		patch
+crypto/dist/openssl/crypto/ecdsa/ecdsatest.c	patch
+crypto/dist/openssl/crypto/ecdsa/ecs_ossl.c	patch
+crypto/dist/openssl/crypto/objects/obj_dat.c	patch
+crypto/dist/openssl/crypto/ocsp/ocsp_vfy.c	patch
+crypto/dist/openssl/crypto/pem/pem_pk8.c	patch
+crypto/dist/openssl/crypto/pkcs7/pk7_doit.c	patch
+crypto/dist/openssl/crypto/x509/x509_lu.c	patch
+crypto/dist/openssl/crypto/x509/x509_vfy.c	patch
+crypto/dist/openssl/doc/crypto/BN_rand.pod	patch
+crypto/dist/openssl/doc/crypto/BN_set_bit.pod	patch
+crypto/dist/openssl/doc/crypto/pem.pod		patch
+crypto/dist/openssl/ssl/d1_lib.c		patch
+crypto/dist/openssl/ssl/s3_clnt.c		patch
+crypto/dist/openssl/ssl/s3_srvr.c		patch
+crypto/dist/openssl/ssl/ssl.h			patch
+crypto/dist/openssl/ssl/ssl_err.c		patch
+crypto/dist/openssl/ssl/ssl_lib.c		patch
+crypto/dist/openssl/ssl/ssl_locl.h		patch
+crypto/dist/openssl/ssl/ssl_sess.c		patch
+crypto/dist/openssl/util/mkerr.pl		patch
+
+	This change covers the vulnerabilities relevant to netbsd-5 from the
+	June OpenSSL advisory, and also fixes a regression introduced with the
+	POODLE fix in October last year that caused the SSL server side	to
+	fail to handshake.
+	[spz, ticket#1976]



CVS commit: [netbsd-5-1] src/doc

2015-08-14 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Aug 14 06:00:50 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1976.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.33 -r1.1.2.34 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-07-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Jul 24 07:47:34 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1973


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.32 -r1.1.2.33 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.32 src/doc/CHANGES-5.1.6:1.1.2.33
--- src/doc/CHANGES-5.1.6:1.1.2.32	Wed Jul  1 07:19:29 2015
+++ src/doc/CHANGES-5.1.6	Fri Jul 24 07:47:34 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.32 2015/07/01 07:19:29 bouyer Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.33 2015/07/24 07:47:34 martin Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2647,3 +2647,11 @@ usr.bin/calendar/calendar.c			1.51
 	are serious if they happen.
 	[dholland, ticket #1971]
 
+sys/netinet/tcp_input.c1.343
+sys/netinet/tcp_output.c			1.184
+
+	If we are sending a window probe and there's unacked data in the
+	socket, make sure at least the persist timer is running.
+	Make sure that snd_win doesn't go negative.
+	[matt, ticket #1973]
+



CVS commit: [netbsd-5-1] src/doc

2015-07-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Jul 24 07:47:34 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1973


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.32 -r1.1.2.33 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-07-01 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Jul  1 07:19:29 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
ticket 1971


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.31 -r1.1.2.32 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.31 src/doc/CHANGES-5.1.6:1.1.2.32
--- src/doc/CHANGES-5.1.6:1.1.2.31	Thu Jun  4 09:07:28 2015
+++ src/doc/CHANGES-5.1.6	Wed Jul  1 07:19:29 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.31 2015/06/04 09:07:28 martin Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.32 2015/07/01 07:19:29 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2633,3 +2633,17 @@ sys/arch/x86/x86/intel_busclock.c		1.10,
 	[sborrill, ticket #1963]
 
 
+usr.bin/calendar/calendar.c			1.51
+
+	Correct privilege handling problems in calendar -a (which runs as root
+	from /etc/daily); do not exec other programs while the real uid is
+	still 0.
+
+	Also, clear the supplementary groups list up front and call initgroups
+	when becoming another user, to avoid leaking any extra group
+	privileges that we might have.
+
+	And finally, don't silently ignore errors changing uid and gid; those
+	are serious if they happen.
+	[dholland, ticket #1971]
+



CVS commit: [netbsd-5-1] src/doc

2015-07-01 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Jul  1 07:19:29 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
ticket 1971


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.31 -r1.1.2.32 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-06-04 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Jun  4 09:07:28 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1963


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.30 -r1.1.2.31 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.30 src/doc/CHANGES-5.1.6:1.1.2.31
--- src/doc/CHANGES-5.1.6:1.1.2.30	Mon Jun  1 15:54:15 2015
+++ src/doc/CHANGES-5.1.6	Thu Jun  4 09:07:28 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.30 2015/06/01 15:54:15 sborrill Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.31 2015/06/04 09:07:28 martin Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2625,3 +2625,11 @@ sys/arch/x86/include/specialreg.h		1.72 
 	compatibility.
 	[msaitoh, ticket #1968]
 
+sys/arch/x86/x86/intel_busclock.c		1.10, 1.13-23 via patch
+
+	Update p[34]_get_bus_clock() to avoid panic in est(4).
+	Return correct bus clock on some CPUs. Use rdmsr_safe()
+	to access MSRs safely.
+	[sborrill, ticket #1963]
+
+



CVS commit: [netbsd-5-1] src/doc

2015-06-01 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Jun  1 15:52:03 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1968


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.28 -r1.1.2.29 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-06-01 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Jun  1 15:52:03 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1968


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.28 -r1.1.2.29 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.28 src/doc/CHANGES-5.1.6:1.1.2.29
--- src/doc/CHANGES-5.1.6:1.1.2.28	Mon Jun  1 14:45:27 2015
+++ src/doc/CHANGES-5.1.6	Mon Jun  1 15:52:03 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.28 2015/06/01 14:45:27 sborrill Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.29 2015/06/01 15:52:03 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2619,3 +2619,9 @@ sys/arch/i386/i386/cpufunc.S			1.16-1.17
 	Backport rdmsr_safe() to access MSR safely.
 	[msaitoh, ticket #1969]
 
+sys/arch/x86/include/specialreg.h		1.72 via patch
+
+	Add CPUID_TO_*() macros to avoid bug. Old macros are kept for
+	compatibility.
+	[msaitoh, ticket #1968]
+



CVS commit: [netbsd-5-1] src/doc

2015-06-01 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Jun  1 15:54:15 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Reword ticket #1968


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.29 -r1.1.2.30 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-06-01 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Jun  1 15:54:15 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Reword ticket #1968


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.29 -r1.1.2.30 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.29 src/doc/CHANGES-5.1.6:1.1.2.30
--- src/doc/CHANGES-5.1.6:1.1.2.29	Mon Jun  1 15:52:03 2015
+++ src/doc/CHANGES-5.1.6	Mon Jun  1 15:54:15 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.29 2015/06/01 15:52:03 sborrill Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.30 2015/06/01 15:54:15 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2621,7 +2621,7 @@ sys/arch/i386/i386/cpufunc.S			1.16-1.17
 
 sys/arch/x86/include/specialreg.h		1.72 via patch
 
-	Add CPUID_TO_*() macros to avoid bug. Old macros are kept for
+	Backport CPUID_TO_*() macros. Old macros are kept for
 	compatibility.
 	[msaitoh, ticket #1968]
 



CVS commit: [netbsd-5-1] src/doc

2015-06-01 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Jun  1 14:45:27 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1969


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.27 -r1.1.2.28 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.27 src/doc/CHANGES-5.1.6:1.1.2.28
--- src/doc/CHANGES-5.1.6:1.1.2.27	Fri May 22 11:22:34 2015
+++ src/doc/CHANGES-5.1.6	Mon Jun  1 14:45:27 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.27 2015/05/22 11:22:34 sborrill Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.28 2015/06/01 14:45:27 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2612,3 +2612,10 @@ sys/arch/xen/xen/xenevt.c			1.42
 	Fix off by one error, addresses port-xen/49919.
 	[bouyer, ticket #1965]
 
+sys/arch/x86/include/cpufunc.h			1.13
+sys/arch/amd64/amd64/cpufunc.S			1.20-1.21 via patch
+sys/arch/i386/i386/cpufunc.S			1.16-1.17, 1.21 via patch
+
+	Backport rdmsr_safe() to access MSR safely.
+	[msaitoh, ticket #1969]
+



CVS commit: [netbsd-5-1] src/doc

2015-06-01 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Jun  1 14:45:27 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1969


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.27 -r1.1.2.28 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-05-22 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri May 22 11:22:34 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1965


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.26 -r1.1.2.27 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.26 src/doc/CHANGES-5.1.6:1.1.2.27
--- src/doc/CHANGES-5.1.6:1.1.2.26	Sun Apr 26 12:55:28 2015
+++ src/doc/CHANGES-5.1.6	Fri May 22 11:22:34 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.26 2015/04/26 12:55:28 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.27 2015/05/22 11:22:34 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2606,3 +2606,9 @@ sys/kern/sys_select.cpatch
 	exceeded, then return EINVAL instead of silently truncating the list.
 	Addresses PR/17507.
 	[prlw1, ticket #1957]
+
+sys/arch/xen/xen/xenevt.c			1.42
+
+	Fix off by one error, addresses port-xen/49919.
+	[bouyer, ticket #1965]
+



CVS commit: [netbsd-5-1] src/doc

2015-05-22 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri May 22 11:22:34 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1965


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.26 -r1.1.2.27 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-04-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Apr 26 12:55:28 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Update ticket 1958.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.25 -r1.1.2.26 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.25 src/doc/CHANGES-5.1.6:1.1.2.26
--- src/doc/CHANGES-5.1.6:1.1.2.25	Fri Apr 24 05:49:18 2015
+++ src/doc/CHANGES-5.1.6	Sun Apr 26 12:55:28 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.25 2015/04/24 05:49:18 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.26 2015/04/26 12:55:28 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2584,7 +2584,10 @@ crypto/dist/openssl/dist/ssl/s2_srvr.c	1
 	X509_to_X509_REQ NULL pointer deref (CVE-2015-0288)
 	[spz, ticket #1954]
 
-sys/arch/sparc/stand/ofwboot/Locore.c		1.14
+sys/arch/sparc/include/openfirm.h		1.7
+sys/arch/sparc/stand/ofwboot/Locore.c		1.11, 1.14
+sys/arch/sparc/stand/ofwboot/loadfile_machdep.c	1.7
+sys/arch/sparc/stand/ofwboot/openfirm.h		1.4
 
 	Fix kernel loading failures from partitions started from over first
 	4GB of disks on sparc64.



CVS commit: [netbsd-5-1] src/doc

2015-04-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Apr 26 12:55:28 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Update ticket 1958.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.25 -r1.1.2.26 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-04-23 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Apr 24 05:49:18 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1957.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.24 -r1.1.2.25 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-04-23 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Apr 24 05:49:18 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1957.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.24 -r1.1.2.25 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.24 src/doc/CHANGES-5.1.6:1.1.2.25
--- src/doc/CHANGES-5.1.6:1.1.2.24	Sun Apr 19 07:46:48 2015
+++ src/doc/CHANGES-5.1.6	Fri Apr 24 05:49:18 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.24 2015/04/19 07:46:48 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.25 2015/04/24 05:49:18 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2595,3 +2595,11 @@ xsrc/xfree/xc/lib/X11/Xlibint.h1.2
 
 	Fix CVE-2013-7439: Buffer overflow in MakeBigReq macro in libX11.
 	[mrg, ticket #1959]
+
+sys/kern/sys_select.cpatch
+
+	Limit nfds arg to poll() to a large enough value that user programs
+	cannot allocate indefinite sized blocks of kvm. If the limit is
+	exceeded, then return EINVAL instead of silently truncating the list.
+	Addresses PR/17507.
+	[prlw1, ticket #1957]



CVS commit: [netbsd-5-1] src/doc

2015-04-19 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Apr 19 07:46:49 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1959.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.23 -r1.1.2.24 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.23 src/doc/CHANGES-5.1.6:1.1.2.24
--- src/doc/CHANGES-5.1.6:1.1.2.23	Fri Apr 17 10:52:38 2015
+++ src/doc/CHANGES-5.1.6	Sun Apr 19 07:46:48 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.23 2015/04/17 10:52:38 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.24 2015/04/19 07:46:48 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2589,3 +2589,9 @@ sys/arch/sparc/stand/ofwboot/Locore.c		1
 	Fix kernel loading failures from partitions started from over first
 	4GB of disks on sparc64.
 	[nakayama, ticket #1958]
+
+xsrc/external/mit/libX11/dist/include/X11/Xlibint.h	patch
+xsrc/xfree/xc/lib/X11/Xlibint.h1.2
+
+	Fix CVE-2013-7439: Buffer overflow in MakeBigReq macro in libX11.
+	[mrg, ticket #1959]



CVS commit: [netbsd-5-1] src/doc

2015-04-19 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Apr 19 07:46:49 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1959.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.23 -r1.1.2.24 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-04-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Apr 17 10:52:38 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1958.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.22 -r1.1.2.23 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.22 src/doc/CHANGES-5.1.6:1.1.2.23
--- src/doc/CHANGES-5.1.6:1.1.2.22	Thu Mar 19 18:13:25 2015
+++ src/doc/CHANGES-5.1.6	Fri Apr 17 10:52:38 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.22 2015/03/19 18:13:25 riz Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.23 2015/04/17 10:52:38 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2584,3 +2584,8 @@ crypto/dist/openssl/dist/ssl/s2_srvr.c	1
 	X509_to_X509_REQ NULL pointer deref (CVE-2015-0288)
 	[spz, ticket #1954]
 
+sys/arch/sparc/stand/ofwboot/Locore.c		1.14
+
+	Fix kernel loading failures from partitions started from over first
+	4GB of disks on sparc64.
+	[nakayama, ticket #1958]



CVS commit: [netbsd-5-1] src/doc

2015-04-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Apr 17 10:52:38 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1958.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.22 -r1.1.2.23 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-03-19 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Thu Mar 19 18:13:25 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Fix paths in previous.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.21 src/doc/CHANGES-5.1.6:1.1.2.22
--- src/doc/CHANGES-5.1.6:1.1.2.21	Thu Mar 19 16:40:32 2015
+++ src/doc/CHANGES-5.1.6	Thu Mar 19 18:13:25 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.21 2015/03/19 16:40:32 riz Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.22 2015/03/19 18:13:25 riz Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2565,13 +2565,13 @@ xsrc/xfree/xc/lib/font/bitmap/bdfread.c 
 	(bdfReadCharacters: ensure metrics fit into xCharInfo struct)
 	[mrg, ticket #1953]
 
-crypto/external/bsd/openssl/dist/crypto/asn1/a_type.c 1.2
-crypto/external/bsd/openssl/dist/crypto/asn1/tasn_dec.c 1.2
-crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_doit.c 1.2
-crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_lib.c 1.2
-crypto/external/bsd/openssl/dist/doc/crypto/d2i_X509.pod 1.2
-crypto/external/bsd/openssl/dist/ssl/s2_lib.c	1.3
-crypto/external/bsd/openssl/dist/ssl/s2_srvr.c	1.2
+crypto/dist/openssl/dist/crypto/asn1/a_type.c 1.2
+crypto/dist/openssl/dist/crypto/asn1/tasn_dec.c 1.2
+crypto/dist/openssl/dist/crypto/pkcs7/pk7_doit.c 1.2
+crypto/dist/openssl/dist/crypto/pkcs7/pk7_lib.c 1.2
+crypto/dist/openssl/dist/doc/crypto/d2i_X509.pod 1.2
+crypto/dist/openssl/dist/ssl/s2_lib.c	1.3
+crypto/dist/openssl/dist/ssl/s2_srvr.c	1.2
 
 	Address OpenSSL Security Advisory [19 Mar 2015]:
 	RSA silently downgrades to EXPORT_RSA [Client] (CVE-2015-0204)



CVS commit: [netbsd-5-1] src/doc

2015-03-19 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Thu Mar 19 18:13:25 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Fix paths in previous.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-03-19 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Thu Mar 19 16:40:32 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1594


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-03-19 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Thu Mar 19 16:40:32 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1594


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.20 src/doc/CHANGES-5.1.6:1.1.2.21
--- src/doc/CHANGES-5.1.6:1.1.2.20	Tue Mar 17 18:43:50 2015
+++ src/doc/CHANGES-5.1.6	Thu Mar 19 16:40:32 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.20 2015/03/17 18:43:50 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.21 2015/03/19 16:40:32 riz Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2565,3 +2565,22 @@ xsrc/xfree/xc/lib/font/bitmap/bdfread.c 
 	(bdfReadCharacters: ensure metrics fit into xCharInfo struct)
 	[mrg, ticket #1953]
 
+crypto/external/bsd/openssl/dist/crypto/asn1/a_type.c 1.2
+crypto/external/bsd/openssl/dist/crypto/asn1/tasn_dec.c 1.2
+crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_doit.c 1.2
+crypto/external/bsd/openssl/dist/crypto/pkcs7/pk7_lib.c 1.2
+crypto/external/bsd/openssl/dist/doc/crypto/d2i_X509.pod 1.2
+crypto/external/bsd/openssl/dist/ssl/s2_lib.c	1.3
+crypto/external/bsd/openssl/dist/ssl/s2_srvr.c	1.2
+
+	Address OpenSSL Security Advisory [19 Mar 2015]:
+	RSA silently downgrades to EXPORT_RSA [Client] (CVE-2015-0204)
+	Segmentation fault in ASN1_TYPE_cmp (CVE-2015-0286)
+	ASN.1 structure reuse memory corruption (CVE-2015-0287)
+	PKCS7 NULL pointer dereferences (CVE-2015-0289)
+	Base64 decode (CVE-2015-0292)
+	DoS via reachable assert in SSLv2 servers (CVE-2015-0293)
+	Use After Free following d2i_ECPrivatekey error (CVE-2015-0209)
+	X509_to_X509_REQ NULL pointer deref (CVE-2015-0288)
+	[spz, ticket #1954]
+



CVS commit: [netbsd-5-1] src/doc

2015-03-17 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Mar 17 18:43:50 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
1953


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-03-17 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Mar 17 18:43:50 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
1953


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.19 src/doc/CHANGES-5.1.6:1.1.2.20
--- src/doc/CHANGES-5.1.6:1.1.2.19	Mon Mar 16 21:22:17 2015
+++ src/doc/CHANGES-5.1.6	Tue Mar 17 18:43:50 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.19 2015/03/16 21:22:17 bouyer Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.20 2015/03/17 18:43:50 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2556,3 +2556,12 @@ distrib/utils/x_gzip/Makefile			patch
 	Sync gzip core with HEAD.
 	[mrg, ticket #1951]
 
+xsrc/external/mit/libXfont/dist/src/bitmap/bdfread.c patch
+xsrc/xfree/xc/lib/font/bitmap/bdfread.c 	patch
+
+	Fix CVE-2015-1802 (bdfReadProperties: property count needs
+	range check), CVE-2015-1803 (bdfReadCharacters: bailout if a
+	char's bitmap cannot be read), and CVE-2015-1804
+	(bdfReadCharacters: ensure metrics fit into xCharInfo struct)
+	[mrg, ticket #1953]
+



CVS commit: [netbsd-5-1] src/doc

2015-03-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Mar 16 21:22:18 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
complete list for ticket #1951


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.18 -r1.1.2.19 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.18 src/doc/CHANGES-5.1.6:1.1.2.19
--- src/doc/CHANGES-5.1.6:1.1.2.18	Sun Mar 15 21:17:44 2015
+++ src/doc/CHANGES-5.1.6	Mon Mar 16 21:22:17 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.18 2015/03/15 21:17:44 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.19 2015/03/16 21:22:17 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2551,6 +2551,7 @@ usr.bin/gzip/Makefilepatch
 usr.bin/gzip/gzip.11.20-1.24
 usr.bin/gzip/gzip.c1.98-1.107
 usr.bin/gzip/zuncompress.c			1.7-1.8
+distrib/utils/x_gzip/Makefile			patch
 
 	Sync gzip core with HEAD.
 	[mrg, ticket #1951]



CVS commit: [netbsd-5-1] src/doc

2015-03-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Mar 16 21:22:18 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
complete list for ticket #1951


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.18 -r1.1.2.19 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-03-15 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Mar 15 21:17:44 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
1951


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-03-15 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Mar 15 21:17:44 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
1951


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.17 src/doc/CHANGES-5.1.6:1.1.2.18
--- src/doc/CHANGES-5.1.6:1.1.2.17	Mon Feb 23 09:42:23 2015
+++ src/doc/CHANGES-5.1.6	Sun Mar 15 21:17:44 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.17 2015/02/23 09:42:23 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.18 2015/03/15 21:17:44 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2546,3 +2546,12 @@ dist/bind/lib/dns/zone.c			patch
 	an untrusted replacement could cause named to crash with an assertion
 	failure.
 	[spz, ticket #1950]
+
+usr.bin/gzip/Makefilepatch
+usr.bin/gzip/gzip.11.20-1.24
+usr.bin/gzip/gzip.c1.98-1.107
+usr.bin/gzip/zuncompress.c			1.7-1.8
+
+	Sync gzip core with HEAD.
+	[mrg, ticket #1951]
+



CVS commit: [netbsd-5-1] src/doc

2015-02-23 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Feb 23 09:42:23 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1950.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.16 -r1.1.2.17 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.16 src/doc/CHANGES-5.1.6:1.1.2.17
--- src/doc/CHANGES-5.1.6:1.1.2.16	Wed Feb 11 15:43:38 2015
+++ src/doc/CHANGES-5.1.6	Mon Feb 23 09:42:23 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.16 2015/02/11 15:43:38 martin Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.17 2015/02/23 09:42:23 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2540,3 +2540,9 @@ sys/dev/usb/usbdi.c1.163 (via patch)
 	Clip xfer-actlen also in the !DIAGNOSTIC case.
 	[aymeric, ticket #1948]
 
+dist/bind/lib/dns/zone.c			patch
+
+	Patch for CVE-2015-1349: Revoking a managed trust anchor and supplying
+	an untrusted replacement could cause named to crash with an assertion
+	failure.
+	[spz, ticket #1950]



CVS commit: [netbsd-5-1] src/doc

2015-02-23 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Feb 23 09:42:23 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1950.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.16 -r1.1.2.17 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-02-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Feb 11 15:35:07 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1949


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.14 src/doc/CHANGES-5.1.6:1.1.2.15
--- src/doc/CHANGES-5.1.6:1.1.2.14	Wed Feb  4 04:48:10 2015
+++ src/doc/CHANGES-5.1.6	Wed Feb 11 15:35:07 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.14 2015/02/04 04:48:10 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.15 2015/02/11 15:35:07 martin Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2528,3 +2528,10 @@ lib/libevent/buffer.cpatch
 	Fix CVE-2014-6272.
 	[spz, ticket #1947]
 
+external/mit/xorg-server/dist/xkb/xkb.c		1.2 (via patch)
+xfree/xc/programs/Xserver/xkb/xkb.c		1.2 (via patch)
+
+	Apply fixes for CVE-2015-0255:
+	Information leak in the XkbSetGeometry request of X servers.
+	[mrg, ticket #1949]
+



CVS commit: [netbsd-5-1] src/doc

2015-02-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Feb 11 15:35:07 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1949


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-02-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Feb 11 15:43:38 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1948


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.15 src/doc/CHANGES-5.1.6:1.1.2.16
--- src/doc/CHANGES-5.1.6:1.1.2.15	Wed Feb 11 15:35:07 2015
+++ src/doc/CHANGES-5.1.6	Wed Feb 11 15:43:38 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.15 2015/02/11 15:35:07 martin Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.16 2015/02/11 15:43:38 martin Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2535,3 +2535,8 @@ xfree/xc/programs/Xserver/xkb/xkb.c		1.2
 	Information leak in the XkbSetGeometry request of X servers.
 	[mrg, ticket #1949]
 
+sys/dev/usb/usbdi.c1.163 (via patch)
+
+	Clip xfer-actlen also in the !DIAGNOSTIC case.
+	[aymeric, ticket #1948]
+



CVS commit: [netbsd-5-1] src/doc

2015-02-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Feb 11 15:43:38 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1948


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-02-03 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Feb  4 04:48:10 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
ticket 1947


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.13 src/doc/CHANGES-5.1.6:1.1.2.14
--- src/doc/CHANGES-5.1.6:1.1.2.13	Mon Jan 26 11:51:16 2015
+++ src/doc/CHANGES-5.1.6	Wed Feb  4 04:48:10 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.13 2015/01/26 11:51:16 martin Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.14 2015/02/04 04:48:10 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2523,4 +2523,8 @@ lib/libssl/shlib_version
 	Bignum squaring may produce incorrect results (CVE-2014-3570)
 	[spz, ticket #1945]
 
+lib/libevent/buffer.cpatch
+
+	Fix CVE-2014-6272.
+	[spz, ticket #1947]
 



CVS commit: [netbsd-5-1] src/doc

2015-02-03 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Feb  4 04:48:10 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
ticket 1947


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-01-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Jan 26 11:51:16 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1945


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.12 -r1.1.2.13 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-01-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Jan 26 11:51:16 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1945


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.12 -r1.1.2.13 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.12 src/doc/CHANGES-5.1.6:1.1.2.13
--- src/doc/CHANGES-5.1.6:1.1.2.12	Wed Jan  7 18:44:13 2015
+++ src/doc/CHANGES-5.1.6	Mon Jan 26 11:51:16 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.12 2015/01/07 18:44:13 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.13 2015/01/26 11:51:16 martin Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -2449,3 +2449,78 @@ etc/rc.d/ntpd	1.15
 	New ntpd wants to be able to translate ntp into a port number after
 	chroot, so give it its own small copy of /etc/services in the chroot
 	[he, ticket #1940]
+
+crypto/dist/openssl/apps/s_client.c   patch
+crypto/dist/openssl/apps/s_server.c   patch
+crypto/dist/openssl/apps/speed.c  patch
+crypto/dist/openssl/crypto/Makefile   patch
+crypto/dist/openssl/crypto/constant_time_locl.h   patch
+crypto/dist/openssl/crypto/cversion.c patch
+crypto/dist/openssl/crypto/asn1/a_bitstr.cpatch
+crypto/dist/openssl/crypto/asn1/a_type.c  patch
+crypto/dist/openssl/crypto/asn1/a_verify.cpatch
+crypto/dist/openssl/crypto/asn1/asn1.hpatch
+crypto/dist/openssl/crypto/asn1/asn1_err.cpatch
+crypto/dist/openssl/crypto/asn1/tasn_dec.cpatch
+crypto/dist/openssl/crypto/asn1/x_algor.c patch
+crypto/dist/openssl/crypto/bio/bio.h  patch
+crypto/dist/openssl/crypto/bio/bss_dgram.cpatch
+crypto/dist/openssl/crypto/bn/bn_asm.cpatch
+crypto/dist/openssl/crypto/bn/bntest.cpatch
+crypto/dist/openssl/crypto/bn/asm/mips3.s patch
+crypto/dist/openssl/crypto/bn/asm/x86_64-gcc.cpatch
+crypto/dist/openssl/crypto/dsa/dsa_vrf.c  patch
+crypto/dist/openssl/crypto/ec/ec_mult.c   patch
+crypto/dist/openssl/crypto/ec/ec_pmeth.c  patch
+crypto/dist/openssl/crypto/ecdsa/ecs_vrf.cpatch
+crypto/dist/openssl/crypto/evp/Makefile   patch
+crypto/dist/openssl/crypto/evp/evp_enc.c  patch
+crypto/dist/openssl/crypto/objects/obj_xref.h patch
+crypto/dist/openssl/crypto/objects/objxref.pl patch
+crypto/dist/openssl/crypto/ts/ts_rsp_sign.c   patch
+crypto/dist/openssl/crypto/x509/x509.hpatch
+crypto/dist/openssl/crypto/x509/x509_vpm.cpatch
+crypto/dist/openssl/crypto/x509/x_all.c   patch
+crypto/dist/openssl/ssl/d1_both.c patch
+crypto/dist/openssl/ssl/d1_clnt.c patch
+crypto/dist/openssl/ssl/d1_enc.c  patch
+crypto/dist/openssl/ssl/d1_lib.c  patch
+crypto/dist/openssl/ssl/d1_pkt.c  patch
+crypto/dist/openssl/ssl/d1_srvr.c patch
+crypto/dist/openssl/ssl/dtls1.h   patch
+crypto/dist/openssl/ssl/s23_srvr.cpatch
+crypto/dist/openssl/ssl/s2_enc.c  patch
+crypto/dist/openssl/ssl/s2_pkt.c  patch
+crypto/dist/openssl/ssl/s2_srvr.c patch
+crypto/dist/openssl/ssl/s3_both.c patch
+crypto/dist/openssl/ssl/s3_clnt.c patch
+crypto/dist/openssl/ssl/s3_enc.c  patch
+crypto/dist/openssl/ssl/s3_lib.c  patch
+crypto/dist/openssl/ssl/s3_pkt.c  patch
+crypto/dist/openssl/ssl/s3_srvr.c patch
+crypto/dist/openssl/ssl/ssl.h patch
+crypto/dist/openssl/ssl/ssl_cert.cpatch
+crypto/dist/openssl/ssl/ssl_lib.c patch
+crypto/dist/openssl/ssl/ssl_locl.hpatch
+crypto/dist/openssl/util/libeay.num   patch
+crypto/dist/openssl/util/mk1mf.pl 

CVS commit: [netbsd-5-1] src/doc

2015-01-07 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jan  7 18:44:13 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1938 and 1940.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.11 -r1.1.2.12 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.11 src/doc/CHANGES-5.1.6:1.1.2.12
--- src/doc/CHANGES-5.1.6:1.1.2.11	Mon Jan  5 23:33:45 2015
+++ src/doc/CHANGES-5.1.6	Wed Jan  7 18:44:13 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.11 2015/01/05 23:33:45 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.12 2015/01/07 18:44:13 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -151,3 +151,2301 @@ usr.sbin/bind/include/isc/platform.h		1.
 	setup can cause BIND to issue an unlimited sequence of queries to
 	follow a delegation.
 	[spz, ticket #1937]
+
+dist/ntp/COPYRIGHT		delete
+dist/ntp/ChangeLog		delete
+dist/ntp/CommitLog		delete
+dist/ntp/CommitLog-4.1.0	delete
+dist/ntp/ElectricFence/CHANGES	delete
+dist/ntp/ElectricFence/COPYING	delete
+dist/ntp/ElectricFence/Makefile.amdelete
+dist/ntp/ElectricFence/Makefile.indelete
+dist/ntp/ElectricFence/README	delete
+dist/ntp/ElectricFence/efence.c	delete
+dist/ntp/ElectricFence/efence.h	delete
+dist/ntp/ElectricFence/eftest.c	delete
+dist/ntp/ElectricFence/libefence.3delete
+dist/ntp/ElectricFence/page.c	delete
+dist/ntp/ElectricFence/print.c	delete
+dist/ntp/ElectricFence/tstheap.cdelete
+dist/ntp/INSTALL		delete
+dist/ntp/Makefile.am		delete
+dist/ntp/Makefile.in		delete
+dist/ntp/NEWS			delete
+dist/ntp/NOTES.y2kfixes		delete
+dist/ntp/README			delete
+dist/ntp/README.bk		delete
+dist/ntp/README.hackers		delete
+dist/ntp/README.patches		delete
+dist/ntp/README.refclocks	delete
+dist/ntp/README.versions	delete
+dist/ntp/TODO			delete
+dist/ntp/WHERE-TO-START		delete
+dist/ntp/aclocal.m4		delete
+dist/ntp/adjtimed/Makefile.am	delete
+dist/ntp/adjtimed/Makefile.in	delete
+dist/ntp/adjtimed/README	delete
+dist/ntp/adjtimed/adjtimed.c	delete
+dist/ntp/arlib/COPYING		delete
+dist/ntp/arlib/INSTALL		delete
+dist/ntp/arlib/Makefile.am	delete
+dist/ntp/arlib/Makefile.in	delete
+dist/ntp/arlib/README		delete
+dist/ntp/arlib/UNSHAR.HDR	delete
+dist/ntp/arlib/aclocal.m4	delete
+dist/ntp/arlib/arlib.3		delete
+dist/ntp/arlib/arlib.c		delete
+dist/ntp/arlib/arlib.h		delete
+dist/ntp/arlib/arplib.h		delete
+dist/ntp/arlib/configure	delete
+dist/ntp/arlib/configure.in	delete
+dist/ntp/arlib/depcomp		delete
+dist/ntp/arlib/install-sh	delete
+dist/ntp/arlib/missing		delete
+dist/ntp/arlib/sample.c		delete
+dist/ntp/bincheck.mf		delete
+dist/ntp/bootstrap		delete
+dist/ntp/build			delete
+dist/ntp/clockstuff/Makefile.am	delete
+dist/ntp/clockstuff/Makefile.in	delete
+dist/ntp/clockstuff/README	delete
+dist/ntp/clockstuff/chutest.c	delete
+dist/ntp/clockstuff/clktest.c	delete
+dist/ntp/clockstuff/propdelay.c	delete
+dist/ntp/compile		delete
+dist/ntp/conf/README		delete
+dist/ntp/conf/baldwin.conf	delete
+dist/ntp/conf/beauregard.conf	delete
+dist/ntp/conf/grundoon.conf	delete
+dist/ntp/conf/malarky.conf	delete
+dist/ntp/conf/pogo.conf		delete
+dist/ntp/conf/rackety.conf	delete
+dist/ntp/config.guess		delete
+dist/ntp/config.h.in		delete
+dist/ntp/config.sub		delete
+dist/ntp/configure		delete
+dist/ntp/configure.ac		delete
+dist/ntp/depcomp		delete
+dist/ntp/dot.emacs		delete
+dist/ntp/excludes		delete
+dist/ntp/flock-build		delete
+dist/ntp/html/accopt.html	delete
+dist/ntp/html/assoc.html	delete
+dist/ntp/html/audio.html	delete
+dist/ntp/html/authopt.html	delete
+dist/ntp/html/build/build.html	delete
+dist/ntp/html/build/config.html	delete
+dist/ntp/html/build/hints.html	delete
+dist/ntp/html/build/hints/a-ux	delete
+dist/ntp/html/build/hints/aix	delete
+dist/ntp/html/build/hints/bsdi	delete
+dist/ntp/html/build/hints/changesdelete
+dist/ntp/html/build/hints/decosf1delete
+dist/ntp/html/build/hints/decosf2delete
+dist/ntp/html/build/hints/freebsddelete
+dist/ntp/html/build/hints/hpux	delete
+dist/ntp/html/build/hints/linux	delete
+dist/ntp/html/build/hints/mpeix	delete
+dist/ntp/html/build/hints/netbsddelete
+dist/ntp/html/build/hints/notes-xntp-v3delete
+dist/ntp/html/build/hints/parse	delete
+dist/ntp/html/build/hints/refclocksdelete
+dist/ntp/html/build/hints/rs6000delete
+dist/ntp/html/build/hints/sco.htmldelete
+dist/ntp/html/build/hints/sgi	delete

CVS commit: [netbsd-5-1] src/doc

2015-01-07 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jan  7 18:44:13 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1938 and 1940.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.11 -r1.1.2.12 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2015-01-05 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jan  5 23:33:45 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Update ticket 1937.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.10 src/doc/CHANGES-5.1.6:1.1.2.11
--- src/doc/CHANGES-5.1.6:1.1.2.10	Thu Dec 25 23:46:18 2014
+++ src/doc/CHANGES-5.1.6	Mon Jan  5 23:33:45 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.10 2014/12/25 23:46:18 he Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.11 2015/01/05 23:33:45 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -144,6 +144,7 @@ dist/bind/lib/isc/include/isc/types.h		p
 dist/bind/lib/isccfg/namedconf.c		patch
 lib/libisc/Makefilepatch
 usr.sbin/bind/Makefile.inc			patch
+usr.sbin/bind/include/isc/platform.h		1.18
 
 	Apply fix for BIND, backported from the patch for 9.8.8 from ISC.
 	This is a fix for CVE-2014-8500, where a maliciously constructed



CVS commit: [netbsd-5-1] src/doc

2015-01-05 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jan  5 23:33:45 UTC 2015

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Update ticket 1937.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-12-25 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Thu Dec 25 23:46:18 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1937.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.9 src/doc/CHANGES-5.1.6:1.1.2.10
--- src/doc/CHANGES-5.1.6:1.1.2.9	Mon Dec 22 12:58:36 2014
+++ src/doc/CHANGES-5.1.6	Thu Dec 25 23:46:18 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.9 2014/12/22 12:58:36 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.10 2014/12/25 23:46:18 he Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -127,3 +127,26 @@ xsrc/xfree/xc/programs/Xserver/render/re
 	the check properly.
 	CVE-2013-6424
 	[mrg, ticket #1935]
+
+dist/bind/lib/isc/counter.c			new, via patch
+dist/bind/lib/isc/include/isc/counter.h		new, via patch
+dist/bind/bin/named/config.c			patch
+dist/bind/bin/named/query.c			patch
+dist/bind/bin/named/server.c			patch
+dist/bind/lib/dns/adb.cpatch
+dist/bind/lib/dns/resolver.c			patch
+dist/bind/lib/dns/include/dns/adb.h		patch
+dist/bind/lib/dns/include/dns/resolver.h	patch
+dist/bind/lib/export/isc/Makefile.in		patch
+dist/bind/lib/isc/Makefile.in			patch
+dist/bind/lib/isc/include/isc/Makefile.in	patch
+dist/bind/lib/isc/include/isc/types.h		patch
+dist/bind/lib/isccfg/namedconf.c		patch
+lib/libisc/Makefilepatch
+usr.sbin/bind/Makefile.inc			patch
+
+	Apply fix for BIND, backported from the patch for 9.8.8 from ISC.
+	This is a fix for CVE-2014-8500, where a maliciously constructed
+	setup can cause BIND to issue an unlimited sequence of queries to
+	follow a delegation.
+	[spz, ticket #1937]



CVS commit: [netbsd-5-1] src/doc

2014-12-25 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Thu Dec 25 23:46:18 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket 1937.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-12-22 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Dec 22 12:58:36 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Update ticket 1935.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.8 src/doc/CHANGES-5.1.6:1.1.2.9
--- src/doc/CHANGES-5.1.6:1.1.2.8	Mon Dec 15 07:13:33 2014
+++ src/doc/CHANGES-5.1.6	Mon Dec 22 12:58:36 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.8 2014/12/15 07:13:33 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.9 2014/12/22 12:58:36 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -53,6 +53,7 @@ xsrc/external/mit/xorg-server/dist/Xi/se
 xsrc/external/mit/xorg-server/dist/Xi/xiproperty.c patch
 xsrc/external/mit/xorg-server/dist/dbe/dbe.cpatch
 xsrc/external/mit/xorg-server/dist/dix/dispatch.c patch
+xsrc/external/mit/xorg-server/dist/exa/exa_render.c  1.2
 xsrc/external/mit/xorg-server/dist/glx/glxcmds.c patch
 xsrc/external/mit/xorg-server/dist/glx/glxcmdsswap.c patch
 xsrc/external/mit/xorg-server/dist/glx/glxserver.h patch
@@ -74,6 +75,7 @@ xsrc/external/mit/xorg-server/dist/inclu
 xsrc/external/mit/xorg-server/dist/os/access.c  patch, 1.3 via patch
 xsrc/external/mit/xorg-server/dist/os/rpcauth.c patch
 xsrc/external/mit/xorg-server/dist/randr/rrsdispatch.c patch
+xsrc/external/mit/xorg-server/dist/render/picture.h  1.2
 xsrc/external/mit/xorg-server/dist/render/render.c patch
 xsrc/external/mit/xorg-server/dist/xfixes/select.c patch
 xsrc/xfree/xc/programs/Xserver/GL/glx/glxcmds.c	1.2
@@ -121,5 +123,7 @@ xsrc/xfree/xc/programs/Xserver/render/re
 	CVE-2014-8101
 	CVE-2014-8102
 	CVE-2014-8103
+	If t-bottom is close to MIN_INT, removing top can wraparound, so do
+	the check properly.
+	CVE-2013-6424
 	[mrg, ticket #1935]
-



CVS commit: [netbsd-5-1] src/doc

2014-12-22 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Dec 22 12:58:36 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Update ticket 1935.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-12-14 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Dec 15 07:13:33 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
update 1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.7 src/doc/CHANGES-5.1.6:1.1.2.8
--- src/doc/CHANGES-5.1.6:1.1.2.7	Fri Dec 12 06:58:00 2014
+++ src/doc/CHANGES-5.1.6	Mon Dec 15 07:13:33 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.7 2014/12/12 06:58:00 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.8 2014/12/15 07:13:33 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -80,12 +80,14 @@ xsrc/xfree/xc/programs/Xserver/GL/glx/gl
 xsrc/xfree/xc/programs/Xserver/GL/glx/glxcmdsswap.c 1.2
 xsrc/xfree/xc/programs/Xserver/GL/glx/glxserver.h 1.2
 xsrc/xfree/xc/programs/Xserver/GL/glx/rensize.c	1.2
-xsrc/xfree/xc/programs/Xserver/GL/glx/single2.c	1.2
-xsrc/xfree/xc/programs/Xserver/GL/glx/single2swap.c 1.2
-xsrc/xfree/xc/programs/Xserver/GL/glx/singlepix.c 1.2
-xsrc/xfree/xc/programs/Xserver/GL/glx/singlepixswap.c 1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/single2.c	1.2, patch
+xsrc/xfree/xc/programs/Xserver/GL/glx/single2swap.c 1.2, patch
+xsrc/xfree/xc/programs/Xserver/GL/glx/singlepix.c 1.2, patch
+xsrc/xfree/xc/programs/Xserver/GL/glx/singlepixswap.c 1.2, patch
 xsrc/xfree/xc/programs/Xserver/GL/glx/unpack.h	1.2
+xsrc/xfree/xc/programs/Xserver/Xext/EVI.c	patch
 xsrc/xfree/xc/programs/Xserver/Xext/xcmisc.c	1.3
+xsrc/xfree/xc/programs/Xserver/Xext/xf86vmode.c	patch
 xsrc/xfree/xc/programs/Xserver/Xext/xvdisp.c	1.2
 xsrc/xfree/xc/programs/Xserver/Xi/chgdctl.c	1.2
 xsrc/xfree/xc/programs/Xserver/Xi/chgfctl.c	1.2



CVS commit: [netbsd-5-1] src/doc

2014-12-14 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Dec 15 07:13:33 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
update 1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-12-11 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Dec 12 06:58:00 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
update 1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.6 src/doc/CHANGES-5.1.6:1.1.2.7
--- src/doc/CHANGES-5.1.6:1.1.2.6	Wed Dec 10 23:01:02 2014
+++ src/doc/CHANGES-5.1.6	Fri Dec 12 06:58:00 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.6 2014/12/10 23:01:02 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.7 2014/12/12 06:58:00 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -76,6 +76,28 @@ xsrc/external/mit/xorg-server/dist/os/rp
 xsrc/external/mit/xorg-server/dist/randr/rrsdispatch.c patch
 xsrc/external/mit/xorg-server/dist/render/render.c patch
 xsrc/external/mit/xorg-server/dist/xfixes/select.c patch
+xsrc/xfree/xc/programs/Xserver/GL/glx/glxcmds.c	1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/glxcmdsswap.c 1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/glxserver.h 1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/rensize.c	1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/single2.c	1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/single2swap.c 1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/singlepix.c 1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/singlepixswap.c 1.2
+xsrc/xfree/xc/programs/Xserver/GL/glx/unpack.h	1.2
+xsrc/xfree/xc/programs/Xserver/Xext/xcmisc.c	1.3
+xsrc/xfree/xc/programs/Xserver/Xext/xvdisp.c	1.2
+xsrc/xfree/xc/programs/Xserver/Xi/chgdctl.c	1.2
+xsrc/xfree/xc/programs/Xserver/Xi/chgfctl.c	1.2
+xsrc/xfree/xc/programs/Xserver/Xi/sendexev.c	1.2
+xsrc/xfree/xc/programs/Xserver/dbe/dbe.c	1.3
+xsrc/xfree/xc/programs/Xserver/dix/dispatch.c	1.2
+xsrc/xfree/xc/programs/Xserver/include/dix.h	1.2
+xsrc/xfree/xc/programs/Xserver/include/misc.h	1.2
+xsrc/xfree/xc/programs/Xserver/os/access.c	1.7
+xsrc/xfree/xc/programs/Xserver/os/rpcauth.c	1.2
+xsrc/xfree/xc/programs/Xserver/randr/randr.c	1.2
+xsrc/xfree/xc/programs/Xserver/render/render.c	1.4
 
 	apply fixes for X.Org Security Advisory:  Dec. 9, 2014
 	Protocol handling issues in X Window System servers



CVS commit: [netbsd-5-1] src/doc

2014-12-11 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Dec 12 06:58:00 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
update 1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-12-10 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Dec 10 23:01:02 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
update 1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.5 src/doc/CHANGES-5.1.6:1.1.2.6
--- src/doc/CHANGES-5.1.6:1.1.2.5	Tue Dec  9 19:59:40 2014
+++ src/doc/CHANGES-5.1.6	Wed Dec 10 23:01:02 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.5 2014/12/09 19:59:40 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.6 2014/12/10 23:01:02 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -69,9 +69,9 @@ xsrc/external/mit/xorg-server/dist/glx/s
 xsrc/external/mit/xorg-server/dist/glx/swap_interval.c patch
 xsrc/external/mit/xorg-server/dist/glx/unpack.h patch
 xsrc/external/mit/xorg-server/dist/hw/xfree86/dri2/dri2ext.c patch
-xsrc/external/mit/xorg-server/dist/include/dix.h patch
+xsrc/external/mit/xorg-server/dist/include/dix.h patch, 1.3
 xsrc/external/mit/xorg-server/dist/include/misc.h patch
-xsrc/external/mit/xorg-server/dist/os/access.c  patch
+xsrc/external/mit/xorg-server/dist/os/access.c  patch, 1.3 via patch
 xsrc/external/mit/xorg-server/dist/os/rpcauth.c patch
 xsrc/external/mit/xorg-server/dist/randr/rrsdispatch.c patch
 xsrc/external/mit/xorg-server/dist/render/render.c patch



CVS commit: [netbsd-5-1] src/doc

2014-12-10 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Dec 10 23:01:02 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
update 1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-12-09 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Dec  9 19:59:40 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.4 src/doc/CHANGES-5.1.6:1.1.2.5
--- src/doc/CHANGES-5.1.6:1.1.2.4	Sun Nov 23 04:56:23 2014
+++ src/doc/CHANGES-5.1.6	Tue Dec  9 19:59:40 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.4 2014/11/23 04:56:23 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.5 2014/12/09 19:59:40 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -45,3 +45,57 @@ share/zoneinfo/zone1970.tab			patch
 	* Changes to historical data.
 	[apb, ticket #1934]
 
+xsrc/external/mit/xorg-server/dist/Xext/xcmisc.c patch
+xsrc/external/mit/xorg-server/dist/Xext/xvdisp.c patch
+xsrc/external/mit/xorg-server/dist/Xi/chgdctl.c patch
+xsrc/external/mit/xorg-server/dist/Xi/chgfctl.c patch
+xsrc/external/mit/xorg-server/dist/Xi/sendexev.c patch
+xsrc/external/mit/xorg-server/dist/Xi/xiproperty.c patch
+xsrc/external/mit/xorg-server/dist/dbe/dbe.cpatch
+xsrc/external/mit/xorg-server/dist/dix/dispatch.c patch
+xsrc/external/mit/xorg-server/dist/glx/glxcmds.c patch
+xsrc/external/mit/xorg-server/dist/glx/glxcmdsswap.c patch
+xsrc/external/mit/xorg-server/dist/glx/glxserver.h patch
+xsrc/external/mit/xorg-server/dist/glx/indirect_program.c patch
+xsrc/external/mit/xorg-server/dist/glx/indirect_reqsize.c patch
+xsrc/external/mit/xorg-server/dist/glx/indirect_reqsize.h patch
+xsrc/external/mit/xorg-server/dist/glx/indirect_texture_compression.c patch
+xsrc/external/mit/xorg-server/dist/glx/indirect_util.c patch
+xsrc/external/mit/xorg-server/dist/glx/rensize.c patch
+xsrc/external/mit/xorg-server/dist/glx/single2.c patch
+xsrc/external/mit/xorg-server/dist/glx/single2swap.c patch
+xsrc/external/mit/xorg-server/dist/glx/singlepix.c patch
+xsrc/external/mit/xorg-server/dist/glx/singlepixswap.c patch
+xsrc/external/mit/xorg-server/dist/glx/swap_interval.c patch
+xsrc/external/mit/xorg-server/dist/glx/unpack.h patch
+xsrc/external/mit/xorg-server/dist/hw/xfree86/dri2/dri2ext.c patch
+xsrc/external/mit/xorg-server/dist/include/dix.h patch
+xsrc/external/mit/xorg-server/dist/include/misc.h patch
+xsrc/external/mit/xorg-server/dist/os/access.c  patch
+xsrc/external/mit/xorg-server/dist/os/rpcauth.c patch
+xsrc/external/mit/xorg-server/dist/randr/rrsdispatch.c patch
+xsrc/external/mit/xorg-server/dist/render/render.c patch
+xsrc/external/mit/xorg-server/dist/xfixes/select.c patch
+
+	apply fixes for X.Org Security Advisory:  Dec. 9, 2014
+	Protocol handling issues in X Window System servers
+	included are fixes for:
+	denial of service due to unchecked malloc in client authentication
+	CVE-2014-8091
+	integer overflows calculating memory needs for requests
+	CVE-2014-8092
+	CVE-2014-8093
+	CVE-2014-8094
+	out of bounds access due to not validating length or offset values
+	in requests
+	CVE-2014-8095
+	CVE-2014-8096
+	CVE-2014-8097
+	CVE-2014-8098
+	CVE-2014-8099
+	CVE-2014-8100
+	CVE-2014-8101
+	CVE-2014-8102
+	CVE-2014-8103
+	[mrg, ticket #1935]
+



CVS commit: [netbsd-5-1] src/doc

2014-12-09 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Dec  9 19:59:40 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
1935


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Nov 23 04:56:23 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
addition to ticket 1934


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.3 src/doc/CHANGES-5.1.6:1.1.2.4
--- src/doc/CHANGES-5.1.6:1.1.2.3	Fri Nov 21 09:17:25 2014
+++ src/doc/CHANGES-5.1.6	Sun Nov 23 04:56:23 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.3 2014/11/21 09:17:25 sborrill Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.4 2014/11/23 04:56:23 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -20,6 +20,7 @@ sys/dev/raidframe/rf_reconstruct.c		1.12
 	Fixes PR kern/49244.
 	[oster, ticket #1933]
 
+distrib/sets/lists/base/mi			1.1090
 doc/3RDPARTY	patch
 share/zoneinfo/NEWSnew
 share/zoneinfo/africapatch



CVS commit: [netbsd-5-1] src/doc

2014-11-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Nov 23 04:56:23 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
addition to ticket 1934


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-21 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Nov 21 08:25:26 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1933


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.1 src/doc/CHANGES-5.1.6:1.1.2.2
--- src/doc/CHANGES-5.1.6:1.1.2.1	Wed Nov 19 06:33:54 2014
+++ src/doc/CHANGES-5.1.6	Fri Nov 21 08:25:26 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.1 2014/11/19 06:33:54 snj Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.2 2014/11/21 08:25:26 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -11,3 +11,12 @@ sys/sys/param.h	patched by hand
 	Welcome to 5.1.5_PATCH.
 	[snj]
 
+sys/dev/raidframe/raidframevar.h		1.17
+sys/dev/raidframe/rf_netbsdkintf.c		1.316
+sys/dev/raidframe/rf_reconstruct.c		1.121 via patch
+
+	Fix a long-standing bug related to rebooting while a
+	reconstruct-to-spare is underway but not yet complete.
+	Fixes PR kern/49244.
+	[oster, ticket #1933]
+



CVS commit: [netbsd-5-1] src/doc

2014-11-21 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Nov 21 09:17:25 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1934


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.6
diff -u src/doc/CHANGES-5.1.6:1.1.2.2 src/doc/CHANGES-5.1.6:1.1.2.3
--- src/doc/CHANGES-5.1.6:1.1.2.2	Fri Nov 21 08:25:26 2014
+++ src/doc/CHANGES-5.1.6	Fri Nov 21 09:17:25 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.6,v 1.1.2.2 2014/11/21 08:25:26 sborrill Exp $
+# $NetBSD: CHANGES-5.1.6,v 1.1.2.3 2014/11/21 09:17:25 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.5 release to the NetBSD 5.1.6
 release:
@@ -20,3 +20,27 @@ sys/dev/raidframe/rf_reconstruct.c		1.12
 	Fixes PR kern/49244.
 	[oster, ticket #1933]
 
+doc/3RDPARTY	patch
+share/zoneinfo/NEWSnew
+share/zoneinfo/africapatch
+share/zoneinfo/antarctica			patch
+share/zoneinfo/asiapatch
+share/zoneinfo/australasia			patch
+share/zoneinfo/backwardpatch
+share/zoneinfo/backzonenew
+share/zoneinfo/europepatch
+share/zoneinfo/leapseconds			patch
+share/zoneinfo/leapseconds.awk			patch
+share/zoneinfo/northamerica			patch
+share/zoneinfo/southamerica			patch
+share/zoneinfo/zone.tabpatch
+share/zoneinfo/zone1970.tab			patch
+
+	Update tzdata from 2014f to 2014j.  Some of the changes are:
+	* A new Zone Pacific/Bougainville, for the part of Papua New Guinea
+	  that plans to switch from UTC+10 to UTC+11 on 2014-12-28 at 02:00.
+	* Changes for Fiji, Belarus, and Turks  Caicos that take effect
+	  at various times in 2014.
+	* Changes to historical data.
+	[apb, ticket #1934]
+



CVS commit: [netbsd-5-1] src/doc

2014-11-21 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Nov 21 08:25:26 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1933


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-21 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Nov 21 09:17:25 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.6

Log Message:
Ticket #1934


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-5.1.6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Nov  9 05:29:47 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Add some files for ticket 1931.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.23 -r1.1.2.24 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.23 src/doc/CHANGES-5.1.5:1.1.2.24
--- src/doc/CHANGES-5.1.5:1.1.2.23	Fri Nov  7 08:05:34 2014
+++ src/doc/CHANGES-5.1.5	Sun Nov  9 05:29:46 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.23 2014/11/07 08:05:34 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.24 2014/11/09 05:29:46 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -362,6 +362,14 @@ distrib/common/Makefile.bootcd			1.18
 distrib/notes/common/main			1.484
 distrib/notes/macppc/prep.OPENFIRMWARE		1.15
 distrib/notes/sparc/install			1.57
+distrib/alpha/cdroms/installcd/Makefile		1.2
+distrib/pmax/cdroms/installcd/Makefile		1.2
+distrib/prep/cdroms/installcd/Makefile		1.3
+distrib/sgimips/cdroms/installcd/Makefile	1.2
+distrib/sparc/cdroms/installcd/Makefile		1.2
+distrib/sparc64/cdroms/installcd/Makefile	1.14
+distrib/sun3/cdroms/installcd/Makefile		1.2
+distrib/vax/cdroms/installcd/Makefile		1.2
 etc/Makefile	1.394
 share/man/man7/release.7			1.32
 



CVS commit: [netbsd-5-1] src/doc

2014-11-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Nov  9 05:29:47 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Add some files for ticket 1931.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.23 -r1.1.2.24 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-07 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Nov  7 08:05:34 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1931.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.22 -r1.1.2.23 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.22 src/doc/CHANGES-5.1.5:1.1.2.23
--- src/doc/CHANGES-5.1.5:1.1.2.22	Wed Nov  5 14:18:28 2014
+++ src/doc/CHANGES-5.1.5	Fri Nov  7 08:05:34 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.22 2014/11/05 14:18:28 sborrill Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.23 2014/11/07 08:05:34 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -358,3 +358,13 @@ share/man/man7/release.7			1.33-1.36 via
 	this.
 	[snj, ticket #1930]
 
+distrib/common/Makefile.bootcd			1.18
+distrib/notes/common/main			1.484
+distrib/notes/macppc/prep.OPENFIRMWARE		1.15
+distrib/notes/sparc/install			1.57
+etc/Makefile	1.394
+share/man/man7/release.7			1.32
+
+	Change release ISO's more meaningful names like NetBSD-5.2.3-i386.iso
+	instead of i386cd.iso. Fix PR# install/44593.
+	[snj, ticket #1931]



CVS commit: [netbsd-5-1] src/doc

2014-11-07 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Nov  7 08:05:34 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1931.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.22 -r1.1.2.23 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-05 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Wed Nov  5 14:18:28 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket #1930


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.21 src/doc/CHANGES-5.1.5:1.1.2.22
--- src/doc/CHANGES-5.1.5:1.1.2.21	Mon Nov  3 13:07:58 2014
+++ src/doc/CHANGES-5.1.5	Wed Nov  5 14:18:28 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.21 2014/11/03 13:07:58 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.22 2014/11/05 14:18:28 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -345,3 +345,16 @@ usr.bin/ftp/version.h1.85
 	Change the version that ftp announces to 20141026. It can be a
 	useful method to determine if CVE-2014-8517 is fixed.
 	[lukem, ticket #1929]
+
+distrib/common/Makefile.bootcd			1.20 via patch
+distrib/notes/arc/prep1.3 via patch
+distrib/notes/cats/prep1.12 via patch
+distrib/notes/common/main			1.512 via patch
+distrib/notes/macppc/prep.OPENFIRMWARE		1.16 via patch
+share/man/man7/release.7			1.33-1.36 via patch
+
+	Install fully-populated .iso images in ${RELEASEDIR}/images
+	instead of ${RELEASEDIR}/iso.  Update documentation to reflect
+	this.
+	[snj, ticket #1930]
+



CVS commit: [netbsd-5-1] src/doc

2014-11-05 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Wed Nov  5 14:18:28 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket #1930


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-11-03 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Nov  3 13:07:58 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1929.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.20 src/doc/CHANGES-5.1.5:1.1.2.21
--- src/doc/CHANGES-5.1.5:1.1.2.20	Mon Oct 27 12:46:11 2014
+++ src/doc/CHANGES-5.1.5	Mon Nov  3 13:07:58 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.20 2014/10/27 12:46:11 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.21 2014/11/03 13:07:58 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -339,3 +339,9 @@ usr.bin/ftp/fetch.c1.206 via patch
 	Don't pay attention to special characters if they don't come
 	from the command line.
 	[jmcneill, ticket #1928]
+
+usr.bin/ftp/version.h1.85
+
+	Change the version that ftp announces to 20141026. It can be a
+	useful method to determine if CVE-2014-8517 is fixed.
+	[lukem, ticket #1929]



CVS commit: [netbsd-5-1] src/doc

2014-11-03 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Nov  3 13:07:58 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1929.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-10-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 12:46:11 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1926 and 1928.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.19 src/doc/CHANGES-5.1.5:1.1.2.20
--- src/doc/CHANGES-5.1.5:1.1.2.19	Sun Oct 19 20:10:28 2014
+++ src/doc/CHANGES-5.1.5	Mon Oct 27 12:46:11 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.19 2014/10/19 20:10:28 snj Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.20 2014/10/27 12:46:11 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -328,3 +328,14 @@ crypto/dist/openssl/test/constant_time_t
 	and adding POODLE mitigation via support for TLS_FALLBACK_SCSV.
 	[spz, ticket #1927]
 	
+sys/compat/freebsd/freebsd_sysctl.c		1.17
+
+	Do not access a userland pointer from kernel space directly, use
+	copyin() instead, avoiding a crash.
+	[maxv, ticket #1926]
+
+usr.bin/ftp/fetch.c1.206 via patch
+
+	Don't pay attention to special characters if they don't come
+	from the command line.
+	[jmcneill, ticket #1928]



CVS commit: [netbsd-5-1] src/doc

2014-10-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 12:46:11 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1926 and 1928.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-10-19 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 19 20:10:28 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
1927


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.18 -r1.1.2.19 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.18 src/doc/CHANGES-5.1.5:1.1.2.19
--- src/doc/CHANGES-5.1.5:1.1.2.18	Wed Aug 27 13:46:54 2014
+++ src/doc/CHANGES-5.1.5	Sun Oct 19 20:10:28 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.18 2014/08/27 13:46:54 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.19 2014/10/19 20:10:28 snj Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -267,3 +267,64 @@ sys/netinet6/ip6_output.c			1.158 via pa
 
 	Fix a memory leak in calling setsockopt() on an INET6 socket.
 	[maxv ticket #1920]
+
+crypto/dist/openssl/apps/s_client.c		patch
+crypto/dist/openssl/crypto/LPdir_vms.c		patch
+crypto/dist/openssl/crypto/LPdir_win.c		patch
+crypto/dist/openssl/crypto/Makefile		patch
+crypto/dist/openssl/crypto/constant_time_locl.h	patch
+crypto/dist/openssl/crypto/constant_time_test.c	patch
+crypto/dist/openssl/crypto/bn/bn_exp.c		patch
+crypto/dist/openssl/crypto/bn/exptest.c		patch
+crypto/dist/openssl/crypto/bn/asm/x86_64-gcc.c	patch
+crypto/dist/openssl/crypto/dsa/dsa_ameth.c	patch
+crypto/dist/openssl/crypto/ec/ec.h		patch
+crypto/dist/openssl/crypto/ec/ec_ameth.c	patch
+crypto/dist/openssl/crypto/ec/ec_asn1.c		patch
+crypto/dist/openssl/crypto/ec/ec_key.c		patch
+crypto/dist/openssl/crypto/ec/ecp_smpl.c	patch
+crypto/dist/openssl/crypto/err/openssl.ec	patch
+crypto/dist/openssl/crypto/evp/Makefile		patch
+crypto/dist/openssl/crypto/evp/evp_enc.c	patch
+crypto/dist/openssl/crypto/pkcs7/pkcs7.h	patch
+crypto/dist/openssl/crypto/rsa/Makefile		patch
+crypto/dist/openssl/crypto/rsa/rsa.h		patch
+crypto/dist/openssl/crypto/rsa/rsa_err.c	patch
+crypto/dist/openssl/crypto/rsa/rsa_oaep.c	patch
+crypto/dist/openssl/crypto/rsa/rsa_pk1.c	patch
+crypto/dist/openssl/crypto/rsa/rsa_sign.c	patch
+crypto/dist/openssl/doc/apps/s_client.pod	patch
+crypto/dist/openssl/doc/crypto/BIO_s_accept.pod	patch
+crypto/dist/openssl/doc/crypto/CMS_add1_signer.pod patch
+crypto/dist/openssl/doc/crypto/EVP_DigestInit.pod patch
+crypto/dist/openssl/doc/crypto/EVP_DigestVerifyInit.pod patch
+crypto/dist/openssl/doc/crypto/EVP_EncryptInit.pod patch
+crypto/dist/openssl/doc/crypto/EVP_PKEY_set1_RSA.pod patch
+crypto/dist/openssl/doc/crypto/EVP_PKEY_sign.pod patch
+crypto/dist/openssl/doc/ssl/SSL_CTX_set_mode.pod patch
+crypto/dist/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod patch
+crypto/dist/openssl/ssl/Makefile		patch
+crypto/dist/openssl/ssl/s23_clnt.c		patch
+crypto/dist/openssl/ssl/s23_srvr.c		patch
+crypto/dist/openssl/ssl/s2_lib.c		patch
+crypto/dist/openssl/ssl/s3_clnt.c		patch
+crypto/dist/openssl/ssl/s3_enc.c		patch
+crypto/dist/openssl/ssl/s3_lib.c		patch
+crypto/dist/openssl/ssl/s3_pkt.c		patch
+crypto/dist/openssl/ssl/s3_srvr.c		patch
+crypto/dist/openssl/ssl/ssl-lib.com		patch
+crypto/dist/openssl/ssl/ssl.h			patch
+crypto/dist/openssl/ssl/ssl3.h			patch
+crypto/dist/openssl/ssl/ssl_err.c		patch
+crypto/dist/openssl/ssl/ssl_lib.c		patch
+crypto/dist/openssl/ssl/t1_enc.c		patch
+crypto/dist/openssl/ssl/t1_lib.c		patch
+crypto/dist/openssl/ssl/tls1.h			patch
+crypto/dist/openssl/test/Makefile		patch
+crypto/dist/openssl/test/constant_time_test.c	patch
+
+	OpenSSL security fixes derived from the diff between
+	OpenSSL 1.0.0n and 1.0.0o, fixing CVE-2014-3567, CVE-2014-3568,
+	and adding POODLE mitigation via support for TLS_FALLBACK_SCSV.
+	[spz, ticket #1927]
+	



CVS commit: [netbsd-5-1] src/doc

2014-10-19 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 19 20:10:28 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
1927


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.18 -r1.1.2.19 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 06:58:38 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1912, 1921 and 1922.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.14 src/doc/CHANGES-5.1.5:1.1.2.15
--- src/doc/CHANGES-5.1.5:1.1.2.14	Fri Aug 15 23:03:35 2014
+++ src/doc/CHANGES-5.1.5	Wed Aug 27 06:58:38 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.14 2014/08/15 23:03:35 riz Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.15 2014/08/27 06:58:38 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -225,3 +225,20 @@ share/zoneinfo/zone1970.tabpatch
 	and zone1970.dat).
 	[apb, ticket #1917]
 
+etc/namedb/root.cache	patch
+doc/3RDPARTY		patch
+
+	Sync root.cache with the latest -current (rev. 1.18).
+	[taca, ticket #1912]
+
+sys/miscfs/umapfs/umap_vfsops.c			1.94
+
+	Fix a overflow and a memory corruption bug in umapfs.
+	[maxv, ticket #1921]
+
+sys/dev/pci/pci_usrreq.c			1.26 via patch
+
+	Fix to make pci(4) reject unaligned configuration register reads and
+	writes before feeding them to a kassert in pci_conf_read/write or to a
+	trap in the hardware itself.
+	[riastradh, ticket #1922]



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 07:39:40 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
s/a/an/


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.15 src/doc/CHANGES-5.1.5:1.1.2.16
--- src/doc/CHANGES-5.1.5:1.1.2.15	Wed Aug 27 06:58:38 2014
+++ src/doc/CHANGES-5.1.5	Wed Aug 27 07:39:40 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.15 2014/08/27 06:58:38 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.16 2014/08/27 07:39:40 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -233,7 +233,7 @@ doc/3RDPARTY		patch
 
 sys/miscfs/umapfs/umap_vfsops.c			1.94
 
-	Fix a overflow and a memory corruption bug in umapfs.
+	Fix an overflow and a memory corruption bug in umapfs.
 	[maxv, ticket #1921]
 
 sys/dev/pci/pci_usrreq.c			1.26 via patch



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 13:35:45 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1918.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.16 -r1.1.2.17 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.16 src/doc/CHANGES-5.1.5:1.1.2.17
--- src/doc/CHANGES-5.1.5:1.1.2.16	Wed Aug 27 07:39:40 2014
+++ src/doc/CHANGES-5.1.5	Wed Aug 27 13:35:45 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.16 2014/08/27 07:39:40 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.17 2014/08/27 13:35:45 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -242,3 +242,23 @@ sys/dev/pci/pci_usrreq.c			1.26 via patc
 	writes before feeding them to a kassert in pci_conf_read/write or to a
 	trap in the hardware itself.
 	[riastradh, ticket #1922]
+
+crypto/dist/openssl/crypto/asn1/a_object.c	patch
+crypto/dist/openssl/crypto/asn1/asn1.h		patch
+crypto/dist/openssl/crypto/asn1/asn1_err.c	patch
+crypto/dist/openssl/crypto/objects/obj_dat.c	patch
+crypto/dist/openssl/ssl/d1_both.c		patch
+crypto/dist/openssl/ssl/s23_srvr.c		patch
+crypto/dist/openssl/ssl/s3_clnt.c		patch
+crypto/dist/openssl/ssl/t1_lib.c		patch
+
+	Patches for the following vulnerabilities:
+	- Information leak in pretty printing functions (CVE-2014-3508)
+	- Double Free when processing DTLS packets (CVE-2014-3505)
+	- DTLS memory exhaustion (CVE-2014-3506)
+	- DTLS memory leak from zero-length fragments (CVE-2014-3507)
+	- OpenSSL DTLS anonymous EC(DH) denial of service (CVE-2014-3510)
+	- Race condition in ssl_parse_serverhello_tlsext (CVE-2014-3509)
+	- OpenSSL TLS protocol downgrade attack (CVE-2014-3511) 
+	Backported from the recent 1.0.1i OpenSSL release.
+	[spz, ticket #1918]



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 13:46:54 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1920.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.17 src/doc/CHANGES-5.1.5:1.1.2.18
--- src/doc/CHANGES-5.1.5:1.1.2.17	Wed Aug 27 13:35:45 2014
+++ src/doc/CHANGES-5.1.5	Wed Aug 27 13:46:54 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.17 2014/08/27 13:35:45 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.18 2014/08/27 13:46:54 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -262,3 +262,8 @@ crypto/dist/openssl/ssl/t1_lib.c		patch
 	- OpenSSL TLS protocol downgrade attack (CVE-2014-3511) 
 	Backported from the recent 1.0.1i OpenSSL release.
 	[spz, ticket #1918]
+
+sys/netinet6/ip6_output.c			1.158 via patch
+
+	Fix a memory leak in calling setsockopt() on an INET6 socket.
+	[maxv ticket #1920]



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 06:58:38 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1912, 1921 and 1922.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 07:39:40 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
s/a/an/


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 13:35:45 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1918.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.16 -r1.1.2.17 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-08-27 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Aug 27 13:46:54 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1920.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-08-15 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Aug 15 23:03:35 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1917


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.13 src/doc/CHANGES-5.1.5:1.1.2.14
--- src/doc/CHANGES-5.1.5:1.1.2.13	Fri Aug  8 06:59:32 2014
+++ src/doc/CHANGES-5.1.5	Fri Aug 15 23:03:35 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.13 2014/08/08 06:59:32 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.14 2014/08/15 23:03:35 riz Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -196,3 +196,32 @@ sys/compat/linux32/common/linux32_socket
 	If SCARG(uap, what) = 0, copyin() will copy (size_t)-1 bytes, and it's
 	not a good idea; but not proven harmful. With the help of njoly@.
 	[maxv, ticket #1916]
+
+distrib/sets/lists/base/mipatch
+doc/3RDPARTY		patch
+share/zoneinfo/Makefile	patch
+share/zoneinfo/africa	patch
+share/zoneinfo/antarcticapatch
+share/zoneinfo/asia	patch
+share/zoneinfo/australasiapatch
+share/zoneinfo/backward	patch
+share/zoneinfo/etcetera	patch
+share/zoneinfo/europe	patch
+share/zoneinfo/factory	patch
+share/zoneinfo/iso3166.tabpatch
+share/zoneinfo/leap-seconds.list			patch
+share/zoneinfo/northamericapatch
+share/zoneinfo/pacificnewpatch
+share/zoneinfo/southamericapatch
+share/zoneinfo/systemv	patch
+share/zoneinfo/yearistype.shpatch
+share/zoneinfo/zone.tab	patch
+share/zoneinfo/zone1970.tabpatch
+
+	Update timezone database from tzdata2014c to tzdata2014f.
+	This adds two new timezones (Asia/Chita and Asia/Srednekolymsk),
+	updates many other timezones, and adds two new
+	data files in the /usr/share/zoneinfo directory (leapseconds
+	and zone1970.dat).
+	[apb, ticket #1917]
+



CVS commit: [netbsd-5-1] src/doc

2014-08-15 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Aug 15 23:03:35 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1917


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-08-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Aug  8 06:59:33 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1916.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.12 -r1.1.2.13 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.12 src/doc/CHANGES-5.1.5:1.1.2.13
--- src/doc/CHANGES-5.1.5:1.1.2.12	Mon Jul 14 09:17:04 2014
+++ src/doc/CHANGES-5.1.5	Fri Aug  8 06:59:32 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.12 2014/07/14 09:17:04 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.13 2014/08/08 06:59:32 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -189,3 +189,10 @@ sys/kern/sys_module.c1.15 via patch
 
 	Fix a user-controlled memory allocation.
 	[maxv, ticket #1914]
+
+sys/compat/linux/common/linux_socketcall.c	1.44
+sys/compat/linux32/common/linux32_socketcall.c	1.9
+
+	If SCARG(uap, what) = 0, copyin() will copy (size_t)-1 bytes, and it's
+	not a good idea; but not proven harmful. With the help of njoly@.
+	[maxv, ticket #1916]



CVS commit: [netbsd-5-1] src/doc

2014-08-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Aug  8 06:59:33 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1916.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.12 -r1.1.2.13 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-07-14 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jul 14 09:17:04 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1914.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.11 -r1.1.2.12 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.11 src/doc/CHANGES-5.1.5:1.1.2.12
--- src/doc/CHANGES-5.1.5:1.1.2.11	Wed Jul  9 16:12:11 2014
+++ src/doc/CHANGES-5.1.5	Mon Jul 14 09:17:04 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.11 2014/07/09 16:12:11 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.12 2014/07/14 09:17:04 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -184,3 +184,8 @@ libexec/httpd/testsuite/data/index.html	
 
 	Update bozohttpd from 20080303+patches to 20140708.
 	[mrg, ticket #1913]
+
+sys/kern/sys_module.c1.15 via patch
+
+	Fix a user-controlled memory allocation.
+	[maxv, ticket #1914]



CVS commit: [netbsd-5-1] src/doc

2014-07-14 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jul 14 09:17:04 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1914.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.11 -r1.1.2.12 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:12:11 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1913.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.10 src/doc/CHANGES-5.1.5:1.1.2.11
--- src/doc/CHANGES-5.1.5:1.1.2.10	Mon Jun 30 11:00:06 2014
+++ src/doc/CHANGES-5.1.5	Wed Jul  9 16:12:11 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.10 2014/06/30 11:00:06 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.11 2014/07/09 16:12:11 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -125,3 +125,62 @@ sys/compat/freebsd/freebsd_sched.c		1.20
 	Avoid NULL dereference and fix sched param conversion.
 	Pointed out by Maxime Villard.
 	[maxv, ticket #1909]
+
+libexec/httpd/CHANGES1.3-1.18
+libexec/httpd/Makefile1.8-1.22 via patch
+libexec/httpd/Makefile.boot			1.3-1.6
+libexec/httpd/auth-bozo.c			1.5-1.13
+libexec/httpd/bozohttpd.8			1.6-1.46
+libexec/httpd/bozohttpd.c			1.8,1.12-1.54
+libexec/httpd/bozohttpd.h			1.8-1.32
+libexec/httpd/cgi-bozo.c			1.11-1.25
+libexec/httpd/content-bozo.c			1.4-1.10
+libexec/httpd/daemon-bozo.c			1.5-1.16
+libexec/httpd/dir-index-bozo.c			1.6-1.19
+libexec/httpd/ssl-bozo.c			1.5-1.16
+libexec/httpd/tilde-luzah-bozo.c		1.5-1.10
+libexec/httpd/lua-bozo.c			1.1-1.9
+libexec/httpd/main.c1.1-1.7
+libexec/httpd/netbsd_queue.h			1.1
+libexec/httpd/printenv.lua			1.1-1.2
+libexec/httpd/debug/Makefile			1.1
+libexec/httpd/libbozohttpd/Makefile		1.2
+libexec/httpd/libbozohttpd/libbozohttpd.3	1.3
+libexec/httpd/libbozohttpd/shlib_version	1.1
+libexec/httpd/lua/Makefile			1.1
+libexec/httpd/lua/bozo.lua			1.1
+libexec/httpd/lua/glue.c			1.1
+libexec/httpd/lua/optparse.lua			1.1
+libexec/httpd/lua/shlib_version			1.1
+libexec/httpd/small/Makefile			1.1-1.2
+libexec/httpd/testsuite/Makefile		1.4
+libexec/httpd/testsuite/html_cmp		1.4
+libexec/httpd/testsuite/t1.in			1.3
+libexec/httpd/testsuite/t1.out			1.3
+libexec/httpd/testsuite/t10.in			1.1
+libexec/httpd/testsuite/t10.out			1.1
+libexec/httpd/testsuite/t2.in			1.3
+libexec/httpd/testsuite/t2.out			1.3
+libexec/httpd/testsuite/t3.in			1.3
+libexec/httpd/testsuite/t3.out			1.3
+libexec/httpd/testsuite/t4.in			1.3
+libexec/httpd/testsuite/t4.out			1.3
+libexec/httpd/testsuite/t5.in			1.3
+libexec/httpd/testsuite/t5.out			1.3
+libexec/httpd/testsuite/t6.in			1.3
+libexec/httpd/testsuite/t6.out			1.3
+libexec/httpd/testsuite/t7.in			1.3
+libexec/httpd/testsuite/t7.out			1.3
+libexec/httpd/testsuite/t8.in			1.3
+libexec/httpd/testsuite/t8.out			1.3
+libexec/httpd/testsuite/t9.in			1.3
+libexec/httpd/testsuite/t9.out			1.3
+libexec/httpd/testsuite/test-bigfile		1.1
+libexec/httpd/testsuite/data/bigfile		1.1
+libexec/httpd/testsuite/data/bigfile.partial4000 1.1
+libexec/httpd/testsuite/data/bigfile.partial8000 1.1
+libexec/httpd/testsuite/data/file		1.3
+libexec/httpd/testsuite/data/index.html		1.3
+
+	Update bozohttpd from 20080303+patches to 20140708.
+	[mrg, ticket #1913]



CVS commit: [netbsd-5-1] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:12:11 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1913.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-06-30 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jun 30 11:00:06 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1909.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.9 src/doc/CHANGES-5.1.5:1.1.2.10
--- src/doc/CHANGES-5.1.5:1.1.2.9	Fri Jun  6 07:04:33 2014
+++ src/doc/CHANGES-5.1.5	Mon Jun 30 11:00:06 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.9 2014/06/06 07:04:33 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.10 2014/06/30 11:00:06 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -119,3 +119,9 @@ crypto/dist/openssl/ssl/ssl3.h			patch
 
 	Fix CVE-2014-0224, CVE-2014-0221, CVE-2014-0195 and CVE-2014-3470.
 	[spz, ticket #1908]
+
+sys/compat/freebsd/freebsd_sched.c		1.20-1.21
+
+	Avoid NULL dereference and fix sched param conversion.
+	Pointed out by Maxime Villard.
+	[maxv, ticket #1909]



CVS commit: [netbsd-5-1] src/doc

2014-06-30 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jun 30 11:00:06 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1909.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-5-1] src/doc

2014-06-06 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Jun  6 06:44:24 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1908.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/doc/CHANGES-5.1.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-5.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.7 src/doc/CHANGES-5.1.5:1.1.2.8
--- src/doc/CHANGES-5.1.5:1.1.2.7	Wed May 21 21:58:11 2014
+++ src/doc/CHANGES-5.1.5	Fri Jun  6 06:44:24 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.7 2014/05/21 21:58:11 bouyer Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.8 2014/06/06 06:44:24 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
 release:
@@ -108,3 +108,15 @@ distrib/sets/lists/base/mi			patch
 
 	[apb, ticket #1906]
 
+crypto/dist/openssl/crypto/bn/bn.h		patch
+crypto/dist/openssl/crypto/bn/bn_lib.c		patch
+crypto/dist/openssl/crypto/ec/ec2_mult.c	patch
+crypto/dist/openssl/ssl/d1_both.c		patch
+crypto/dist/openssl/ssl/s3_clnt.c		patch
+crypto/dist/openssl/ssl/s3_pkt.c		patch
+crypto/dist/openssl/ssl/s3_srvr.c		patch
+crypto/dist/openssl/ssl/ssl3.h			patch
+
+	Update openssl to 1.0.1h which includes CVE-2014-0224, CVE-2014-0221,
+	CVE-2014-0195, CVE-2014-3470.
+	[spz, ticket #1908]



  1   2   3   4   >