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

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
tickets 1974, 1978-1981


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.35 src/doc/CHANGES-5.2.4:1.1.2.36
--- src/doc/CHANGES-5.2.4:1.1.2.35	Fri Aug 14 06:00:34 2015
+++ src/doc/CHANGES-5.2.4	Sat Nov  7 20:57:58 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.35 2015/08/14 06:00:34 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.36 2015/11/07 20:57:58 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

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


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.22 src/doc/CHANGES-5.2.1:1.1.2.23
--- src/doc/CHANGES-5.2.1:1.1.2.22	Sun Sep 22 22:43:10 2013
+++ src/doc/CHANGES-5.2.1	Tue Sep 15 00:03:37 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.22 2013/09/22 22:43:10 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.23 2015/09/15 00:03:37 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -107,54 +107,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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket 1976.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.34 src/doc/CHANGES-5.2.4:1.1.2.35
--- src/doc/CHANGES-5.2.4:1.1.2.34	Fri Jul 24 07:46:03 2015
+++ src/doc/CHANGES-5.2.4	Fri Aug 14 06:00:34 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.34 2015/07/24 07:46:03 martin Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.35 2015/08/14 06:00:34 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket #1973


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.33 src/doc/CHANGES-5.2.4:1.1.2.34
--- src/doc/CHANGES-5.2.4:1.1.2.33	Wed Jul  1 07:19:30 2015
+++ src/doc/CHANGES-5.2.4	Fri Jul 24 07:46:03 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.33 2015/07/01 07:19:30 bouyer Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.34 2015/07/24 07:46:03 martin Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
ticket 1971


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.32 src/doc/CHANGES-5.2.4:1.1.2.33
--- src/doc/CHANGES-5.2.4:1.1.2.32	Thu Jun  4 09:05:29 2015
+++ src/doc/CHANGES-5.2.4	Wed Jul  1 07:19:30 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.32 2015/06/04 09:05:29 martin Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.33 2015/07/01 07:19:30 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket #1963


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.31 src/doc/CHANGES-5.2.4:1.1.2.32
--- src/doc/CHANGES-5.2.4:1.1.2.31	Mon Jun  1 15:53:39 2015
+++ src/doc/CHANGES-5.2.4	Thu Jun  4 09:05:29 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.31 2015/06/01 15:53:39 sborrill Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.32 2015/06/04 09:05:29 martin Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket #1968


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.29 src/doc/CHANGES-5.2.4:1.1.2.30
--- src/doc/CHANGES-5.2.4:1.1.2.29	Mon Jun  1 14:46:33 2015
+++ src/doc/CHANGES-5.2.4	Mon Jun  1 15:52:41 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.29 2015/06/01 14:46:33 sborrill Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.30 2015/06/01 15:52:41 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Reword ticket #1968


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.30 src/doc/CHANGES-5.2.4:1.1.2.31
--- src/doc/CHANGES-5.2.4:1.1.2.30	Mon Jun  1 15:52:41 2015
+++ src/doc/CHANGES-5.2.4	Mon Jun  1 15:53:39 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.30 2015/06/01 15:52:41 sborrill Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.31 2015/06/01 15:53:39 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket #1969


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.28 src/doc/CHANGES-5.2.4:1.1.2.29
--- src/doc/CHANGES-5.2.4:1.1.2.28	Fri May 22 11:45:01 2015
+++ src/doc/CHANGES-5.2.4	Mon Jun  1 14:46:33 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.28 2015/05/22 11:45:01 sborrill Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.29 2015/06/01 14:46:33 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket #1965


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.27 src/doc/CHANGES-5.2.4:1.1.2.28
--- src/doc/CHANGES-5.2.4:1.1.2.27	Sun Apr 26 12:53:34 2015
+++ src/doc/CHANGES-5.2.4	Fri May 22 11:45:01 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.27 2015/04/26 12:53:34 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.28 2015/05/22 11:45:01 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -2565,13 +2565,13 @@ xsrc/xfree/xc/lib/font/bitmap/bdfread.c 
 	(bdfReadCharacters: ensure metrics fit into xCharInfo struct)
 	[mrg, ticket #1953]
 
-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
+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)
@@ -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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Update ticket 1958.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.26 src/doc/CHANGES-5.2.4:1.1.2.27
--- src/doc/CHANGES-5.2.4:1.1.2.26	Fri Apr 24 05:48:57 2015
+++ src/doc/CHANGES-5.2.4	Sun Apr 26 12:53:34 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.26 2015/04/24 05:48:57 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.27 2015/04/26 12:53:34 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket 1957.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.25 src/doc/CHANGES-5.2.4:1.1.2.26
--- src/doc/CHANGES-5.2.4:1.1.2.25	Sun Apr 19 07:46:18 2015
+++ src/doc/CHANGES-5.2.4	Fri Apr 24 05:48:57 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.25 2015/04/19 07:46:18 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.26 2015/04/24 05:48:57 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket 1959.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.24 src/doc/CHANGES-5.2.4:1.1.2.25
--- src/doc/CHANGES-5.2.4:1.1.2.24	Fri Apr 17 10:52:21 2015
+++ src/doc/CHANGES-5.2.4	Sun Apr 19 07:46:18 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.24 2015/04/17 10:52:21 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.25 2015/04/19 07:46:18 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket 1958.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.23 src/doc/CHANGES-5.2.4:1.1.2.24
--- src/doc/CHANGES-5.2.4:1.1.2.23	Thu Mar 19 18:14:01 2015
+++ src/doc/CHANGES-5.2.4	Fri Apr 17 10:52:21 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.23 2015/03/19 18:14:01 riz Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.24 2015/04/17 10:52:21 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Fix paths in previous.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.22 src/doc/CHANGES-5.2.4:1.1.2.23
--- src/doc/CHANGES-5.2.4:1.1.2.22	Thu Mar 19 16:41:13 2015
+++ src/doc/CHANGES-5.2.4	Thu Mar 19 18:14:01 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.22 2015/03/19 16:41:13 riz Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.23 2015/03/19 18:14:01 riz Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Ticket 1594.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.21 src/doc/CHANGES-5.2.4:1.1.2.22
--- src/doc/CHANGES-5.2.4:1.1.2.21	Tue Mar 17 18:44:37 2015
+++ src/doc/CHANGES-5.2.4	Thu Mar 19 16:41:13 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.21 2015/03/17 18:44:37 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.22 2015/03/19 16:41:13 riz Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
1953


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.20 src/doc/CHANGES-5.2.4:1.1.2.21
--- src/doc/CHANGES-5.2.4:1.1.2.20	Mon Mar 16 21:21:50 2015
+++ src/doc/CHANGES-5.2.4	Tue Mar 17 18:44:37 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.20 2015/03/16 21:21:50 bouyer Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.21 2015/03/17 18:44:37 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
complete list for ticket #1951


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.19 src/doc/CHANGES-5.2.4:1.1.2.20
--- src/doc/CHANGES-5.2.4:1.1.2.19	Sun Mar 15 21:17:27 2015
+++ src/doc/CHANGES-5.2.4	Mon Mar 16 21:21:50 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.19 2015/03/15 21:17:27 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.20 2015/03/16 21:21:50 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
1951


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.18 src/doc/CHANGES-5.2.4:1.1.2.19
--- src/doc/CHANGES-5.2.4:1.1.2.18	Mon Feb 23 09:40:44 2015
+++ src/doc/CHANGES-5.2.4	Sun Mar 15 21:17:27 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.18 2015/02/23 09:40:44 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.19 2015/03/15 21:17:27 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.16 src/doc/CHANGES-5.2.4:1.1.2.17
--- src/doc/CHANGES-5.2.4:1.1.2.16	Wed Feb 11 15:43:00 2015
+++ src/doc/CHANGES-5.2.4	Mon Feb 23 09:38:29 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.16 2015/02/11 15:43:00 martin Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.17 2015/02/23 09:38:29 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -2540,3 +2540,10 @@ sys/dev/usb/usbdi.c1.163 (via patch)
 	Clip xfer-actlen also in the !DIAGNOSTIC case.
 	[aymeric, ticket #1948]
 
+Pull up following revision(s) (requested by spz in ticket #1950):
+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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
Remove extra line.


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.17 src/doc/CHANGES-5.2.4:1.1.2.18
--- src/doc/CHANGES-5.2.4:1.1.2.17	Mon Feb 23 09:38:29 2015
+++ src/doc/CHANGES-5.2.4	Mon Feb 23 09:40:44 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.17 2015/02/23 09:38:29 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.18 2015/02/23 09:40:44 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -2540,7 +2540,6 @@ sys/dev/usb/usbdi.c1.163 (via patch)
 	Clip xfer-actlen also in the !DIAGNOSTIC case.
 	[aymeric, ticket #1948]
 
-Pull up following revision(s) (requested by spz in ticket #1950):
 dist/bind/lib/dns/zone.c			patch
 
 	Patch for CVE-2015-1349: Revoking a managed trust anchor and supplying



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

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.14 src/doc/CHANGES-5.2.4:1.1.2.15
--- src/doc/CHANGES-5.2.4:1.1.2.14	Wed Feb  4 04:49:53 2015
+++ src/doc/CHANGES-5.2.4	Wed Feb 11 15:34:30 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.14 2015/02/04 04:49:53 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.15 2015/02/11 15:34:30 martin Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.15 src/doc/CHANGES-5.2.4:1.1.2.16
--- src/doc/CHANGES-5.2.4:1.1.2.15	Wed Feb 11 15:34:30 2015
+++ src/doc/CHANGES-5.2.4	Wed Feb 11 15:43:00 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.15 2015/02/11 15:34:30 martin Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.16 2015/02/11 15:43:00 martin Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

Log Message:
ticke 1947


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

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.13 src/doc/CHANGES-5.2.4:1.1.2.14
--- src/doc/CHANGES-5.2.4:1.1.2.13	Mon Jan 26 11:03:46 2015
+++ src/doc/CHANGES-5.2.4	Wed Feb  4 04:49:53 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.13 2015/01/26 11:03:46 martin Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.14 2015/02/04 04:49:53 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -2523,3 +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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.12 src/doc/CHANGES-5.2.4:1.1.2.13
--- src/doc/CHANGES-5.2.4:1.1.2.12	Wed Jan  7 18:43:39 2015
+++ src/doc/CHANGES-5.2.4	Mon Jan 26 11:03:46 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.12 2015/01/07 18:43:39 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.13 2015/01/26 11:03:46 martin Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -2449,3 +2449,77 @@ 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.11 src/doc/CHANGES-5.2.4:1.1.2.12
--- src/doc/CHANGES-5.2.4:1.1.2.11	Mon Jan  5 23:33:26 2015
+++ src/doc/CHANGES-5.2.4	Wed Jan  7 18:43:39 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.11 2015/01/05 23:33:26 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.12 2015/01/07 18:43:39 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.10 src/doc/CHANGES-5.2.4:1.1.2.11
--- src/doc/CHANGES-5.2.4:1.1.2.10	Thu Dec 25 23:31:43 2014
+++ src/doc/CHANGES-5.2.4	Mon Jan  5 23:33:26 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.10 2014/12/25 23:31:43 he Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.11 2015/01/05 23:33:26 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -144,6 +144,7 @@ dist/bind/lib/isc/include/isc/types.h   
 dist/bind/lib/isccfg/namedconf.cpatch
 lib/libisc/Makefile patch
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.9 src/doc/CHANGES-5.2.4:1.1.2.10
--- src/doc/CHANGES-5.2.4:1.1.2.9	Mon Dec 22 12:58:13 2014
+++ src/doc/CHANGES-5.2.4	Thu Dec 25 23:31:43 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.9 2014/12/22 12:58:13 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.10 2014/12/25 23:31:43 he Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -128,3 +128,25 @@ xsrc/xfree/xc/programs/Xserver/render/re
 	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.cpatch
+dist/bind/bin/named/query.c patch
+dist/bind/bin/named/server.cpatch
+dist/bind/lib/dns/adb.c patch
+dist/bind/lib/dns/resolver.cpatch
+dist/bind/lib/dns/include/dns/adb.h patch
+dist/bind/lib/dns/include/dns/resolver.hpatch
+dist/bind/lib/export/isc/Makefile.inpatch
+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.cpatch
+lib/libisc/Makefile patch
+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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.8 src/doc/CHANGES-5.2.4:1.1.2.9
--- src/doc/CHANGES-5.2.4:1.1.2.8	Mon Dec 15 07:14:22 2014
+++ src/doc/CHANGES-5.2.4	Mon Dec 22 12:58:13 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.8 2014/12/15 07:14:22 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.9 2014/12/22 12:58:13 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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,8 @@ 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.7 src/doc/CHANGES-5.2.4:1.1.2.8
--- src/doc/CHANGES-5.2.4:1.1.2.7	Fri Dec 12 06:59:16 2014
+++ src/doc/CHANGES-5.2.4	Mon Dec 15 07:14:22 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.7 2014/12/12 06:59:16 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.8 2014/12/15 07:14:22 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.6 src/doc/CHANGES-5.2.4:1.1.2.7
--- src/doc/CHANGES-5.2.4:1.1.2.6	Wed Dec 10 23:00:36 2014
+++ src/doc/CHANGES-5.2.4	Fri Dec 12 06:59:16 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.6 2014/12/10 23:00:36 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.7 2014/12/12 06:59:16 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.5 src/doc/CHANGES-5.2.4:1.1.2.6
--- src/doc/CHANGES-5.2.4:1.1.2.5	Tue Dec  9 20:00:15 2014
+++ src/doc/CHANGES-5.2.4	Wed Dec 10 23:00:36 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.5 2014/12/09 20:00:15 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.6 2014/12/10 23:00:36 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

2014-12-09 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Dec  9 20:00:16 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.4 src/doc/CHANGES-5.2.4:1.1.2.5
--- src/doc/CHANGES-5.2.4:1.1.2.4	Sun Nov 23 05:00:24 2014
+++ src/doc/CHANGES-5.2.4	Tue Dec  9 20:00:15 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.4 2014/11/23 05:00:24 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.5 2014/12/09 20:00:15 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

2014-11-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Nov 23 05:00:24 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.3 src/doc/CHANGES-5.2.4:1.1.2.4
--- src/doc/CHANGES-5.2.4:1.1.2.3	Fri Nov 21 09:19:38 2014
+++ src/doc/CHANGES-5.2.4	Sun Nov 23 05:00:24 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.3 2014/11/21 09:19:38 sborrill Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.4 2014/11/23 05:00:24 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.1 src/doc/CHANGES-5.2.4:1.1.2.2
--- src/doc/CHANGES-5.2.4:1.1.2.1	Wed Nov 19 06:47:26 2014
+++ src/doc/CHANGES-5.2.4	Fri Nov 21 08:25:52 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.1 2014/11/19 06:47:26 snj Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.2 2014/11/21 08:25:52 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 release:
@@ -11,3 +11,12 @@ sys/sys/param.h	patched by hand
 	Welcome to 5.2.3_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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.4

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.2.4

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.2.4
diff -u src/doc/CHANGES-5.2.4:1.1.2.2 src/doc/CHANGES-5.2.4:1.1.2.3
--- src/doc/CHANGES-5.2.4:1.1.2.2	Fri Nov 21 08:25:52 2014
+++ src/doc/CHANGES-5.2.4	Fri Nov 21 09:19:38 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.4,v 1.1.2.2 2014/11/21 08:25:52 sborrill Exp $
+# $NetBSD: CHANGES-5.2.4,v 1.1.2.3 2014/11/21 09:19:38 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.3 release to the NetBSD 5.2.4
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Add some files for ticket 1931.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.24 -r1.1.2.25 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.24 src/doc/CHANGES-5.2.3:1.1.2.25
--- src/doc/CHANGES-5.2.3:1.1.2.24	Fri Nov  7 08:04:42 2014
+++ src/doc/CHANGES-5.2.3	Sun Nov  9 05:28:52 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.24 2014/11/07 08:04:42 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.25 2014/11/09 05:28:52 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1931.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.23 -r1.1.2.24 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.23 src/doc/CHANGES-5.2.3:1.1.2.24
--- src/doc/CHANGES-5.2.3:1.1.2.23	Wed Nov  5 14:50:58 2014
+++ src/doc/CHANGES-5.2.3	Fri Nov  7 08:04:42 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.23 2014/11/05 14:50:58 sborrill Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.24 2014/11/07 08:04:42 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket #1930


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.22 -r1.1.2.23 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.22 src/doc/CHANGES-5.2.3:1.1.2.23
--- src/doc/CHANGES-5.2.3:1.1.2.22	Mon Nov  3 13:06:58 2014
+++ src/doc/CHANGES-5.2.3	Wed Nov  5 14:50:58 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.22 2014/11/03 13:06:58 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.23 2014/11/05 14:50:58 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1929.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.21 src/doc/CHANGES-5.2.3:1.1.2.22
--- src/doc/CHANGES-5.2.3:1.1.2.21	Mon Oct 27 12:45:50 2014
+++ src/doc/CHANGES-5.2.3	Mon Nov  3 13:06:58 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.21 2014/10/27 12:45:50 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.22 2014/11/03 13:06:58 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1926 and 1928.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.20 src/doc/CHANGES-5.2.3:1.1.2.21
--- src/doc/CHANGES-5.2.3:1.1.2.20	Sun Oct 19 20:11:59 2014
+++ src/doc/CHANGES-5.2.3	Mon Oct 27 12:45:50 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.20 2014/10/19 20:11:59 snj Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.21 2014/10/27 12:45:50 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
1927


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.19 src/doc/CHANGES-5.2.3:1.1.2.20
--- src/doc/CHANGES-5.2.3:1.1.2.19	Wed Aug 27 13:46:40 2014
+++ src/doc/CHANGES-5.2.3	Sun Oct 19 20:11:59 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.19 2014/08/27 13:46:40 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.20 2014/10/19 20:11:59 snj Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1912, 1921 and 1922.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.15 src/doc/CHANGES-5.2.3:1.1.2.16
--- src/doc/CHANGES-5.2.3:1.1.2.15	Fri Aug 15 23:07:24 2014
+++ src/doc/CHANGES-5.2.3	Wed Aug 27 06:58:14 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.15 2014/08/15 23:07:24 riz Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.16 2014/08/27 06:58:14 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
s/a/an/


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.16 -r1.1.2.17 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.16 src/doc/CHANGES-5.2.3:1.1.2.17
--- src/doc/CHANGES-5.2.3:1.1.2.16	Wed Aug 27 06:58:14 2014
+++ src/doc/CHANGES-5.2.3	Wed Aug 27 07:39:22 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.16 2014/08/27 06:58:14 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.17 2014/08/27 07:39:22 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1918.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.17 src/doc/CHANGES-5.2.3:1.1.2.18
--- src/doc/CHANGES-5.2.3:1.1.2.17	Wed Aug 27 07:39:22 2014
+++ src/doc/CHANGES-5.2.3	Wed Aug 27 13:35:30 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.17 2014/08/27 07:39:22 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.18 2014/08/27 13:35:30 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1920.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.18 -r1.1.2.19 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.18 src/doc/CHANGES-5.2.3:1.1.2.19
--- src/doc/CHANGES-5.2.3:1.1.2.18	Wed Aug 27 13:35:30 2014
+++ src/doc/CHANGES-5.2.3	Wed Aug 27 13:46:40 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.18 2014/08/27 13:35:30 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.19 2014/08/27 13:46:40 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

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.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.13 src/doc/CHANGES-5.2.3:1.1.2.14
--- src/doc/CHANGES-5.2.3:1.1.2.13	Fri Aug  8 06:59:13 2014
+++ src/doc/CHANGES-5.2.3	Fri Aug 15 23:06:37 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.13 2014/08/08 06:59:13 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.14 2014/08/15 23:06:37 riz Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -196,3 +196,31 @@ 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Fix whitespace in previous.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.14 src/doc/CHANGES-5.2.3:1.1.2.15
--- src/doc/CHANGES-5.2.3:1.1.2.14	Fri Aug 15 23:06:37 2014
+++ src/doc/CHANGES-5.2.3	Fri Aug 15 23:07:24 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.14 2014/08/15 23:06:37 riz Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.15 2014/08/15 23:07:24 riz Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -196,6 +196,7 @@ 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



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

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

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.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.12 src/doc/CHANGES-5.2.3:1.1.2.13
--- src/doc/CHANGES-5.2.3:1.1.2.12	Mon Jul 14 09:16:12 2014
+++ src/doc/CHANGES-5.2.3	Fri Aug  8 06:59:13 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.12 2014/07/14 09:16:12 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.13 2014/08/08 06:59:13 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

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.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.11 src/doc/CHANGES-5.2.3:1.1.2.12
--- src/doc/CHANGES-5.2.3:1.1.2.11	Wed Jul  9 16:11:45 2014
+++ src/doc/CHANGES-5.2.3	Mon Jul 14 09:16:12 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.11 2014/07/09 16:11:45 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.12 2014/07/14 09:16:12 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

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.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.10 src/doc/CHANGES-5.2.3:1.1.2.11
--- src/doc/CHANGES-5.2.3:1.1.2.10	Mon Jun 30 10:58:42 2014
+++ src/doc/CHANGES-5.2.3	Wed Jul  9 16:11:45 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.10 2014/06/30 10:58:42 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.11 2014/07/09 16:11:45 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

2014-06-30 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jun 30 10:58:42 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

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.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.9 src/doc/CHANGES-5.2.3:1.1.2.10
--- src/doc/CHANGES-5.2.3:1.1.2.9	Fri Jun  6 07:04:13 2014
+++ src/doc/CHANGES-5.2.3	Mon Jun 30 10:58:42 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.9 2014/06/06 07:04:13 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.10 2014/06/30 10:58:42 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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-2] src/doc

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

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

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.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.7 src/doc/CHANGES-5.2.3:1.1.2.8
--- src/doc/CHANGES-5.2.3:1.1.2.7	Wed May 21 21:58:12 2014
+++ src/doc/CHANGES-5.2.3	Fri Jun  6 06:42:25 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.7 2014/05/21 21:58:12 bouyer Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.8 2014/06/06 06:42:25 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 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]



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

2014-06-06 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Jun  6 07:04:13 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket #1908 is not openssl 1.0.1h.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.8 src/doc/CHANGES-5.2.3:1.1.2.9
--- src/doc/CHANGES-5.2.3:1.1.2.8	Fri Jun  6 06:42:25 2014
+++ src/doc/CHANGES-5.2.3	Fri Jun  6 07:04:13 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.8 2014/06/06 06:42:25 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.9 2014/06/06 07:04:13 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -117,6 +117,5 @@ 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.
+	Fix CVE-2014-0224, CVE-2014-0221, CVE-2014-0195 and CVE-2014-3470.
 	[spz, ticket #1908]



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

2014-05-21 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed May 21 21:50:35 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
ticket 1904


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.5 src/doc/CHANGES-5.2.3:1.1.2.6
--- src/doc/CHANGES-5.2.3:1.1.2.5	Wed May 14 05:27:47 2014
+++ src/doc/CHANGES-5.2.3	Wed May 21 21:50:35 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.5 2014/05/14 05:27:47 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.6 2014/05/21 21:50:35 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -74,3 +74,12 @@ xsrc/xfree/xc/lib/font/fontfile/dirfile.
 	- CVE-2014-0211: integer overflows calculating memory needs for xfs
 	  replies
 	[spz, ticket #1905]
+sys/fs/cd9660/cd9660_node.c			1.31
+
+	PR kern/48787: inode calculation from ISO9660 block offset might get
+	truncated to 32bit - force the whole expression to be evaluated
+	as ino_t.
+	Patch from Thomas Schmitt, with minor modifications
+	(and reworded comment).
+	[martin, ticket #1904]
+



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

2014-05-21 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed May 21 21:58:12 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
ticket 1906


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.6 src/doc/CHANGES-5.2.3:1.1.2.7
--- src/doc/CHANGES-5.2.3:1.1.2.6	Wed May 21 21:50:35 2014
+++ src/doc/CHANGES-5.2.3	Wed May 21 21:58:12 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.6 2014/05/21 21:50:35 bouyer Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.7 2014/05/21 21:58:12 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -83,3 +83,28 @@ sys/fs/cd9660/cd9660_node.c			1.31
 	(and reworded comment).
 	[martin, ticket #1904]
 
+doc/3RDPARTY	patch
+share/zoneinfo/africapatch
+share/zoneinfo/antarctica			patch
+share/zoneinfo/asiapatch
+share/zoneinfo/australasia			patch
+share/zoneinfo/backwardpatch
+share/zoneinfo/etceterapatch
+share/zoneinfo/europepatch
+share/zoneinfo/iso3166.tab			patch
+share/zoneinfo/leap-seconds.list		patch
+share/zoneinfo/leapseconds			patch
+share/zoneinfo/leapseconds.awk			patch
+share/zoneinfo/northamerica			patch
+share/zoneinfo/southamerica			patch
+share/zoneinfo/zone.tabpatch
+distrib/sets/lists/base/mi			patch
+
+	Update timezone database from tzdata2013d to tzdata2014c.
+	This adds a new timezone, Antarctica/Troll, and updates
+	many other timezones. The Asia/Riyadh{87,88,89} zones are
+	retained for backward compatibility, although they have
+	been removed from the upstream distribution.
+
+	[apb, ticket #1906]
+



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

2014-05-13 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May 14 05:16:02 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1902.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.3 src/doc/CHANGES-5.2.3:1.1.2.4
--- src/doc/CHANGES-5.2.3:1.1.2.3	Mon Apr 28 16:06:47 2014
+++ src/doc/CHANGES-5.2.3	Wed May 14 05:16:02 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.3 2014/04/28 16:06:47 sborrill Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.4 2014/05/14 05:16:02 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -49,3 +49,12 @@ sys/ufs/mfs/mfs_vfsops.c			1.107
 	a NULL pointer when particular arguments are given by a user.
 	[maxv, ticket #1901]
 
+src/sys/compat/linux/common/linux_exec_elf32.c	1.91 via patch
+
+	A specially-crafted binary could easily control a kernel array index.
+	Add some checks to ensure that nothing will be read outside the
+	allocated area. Rewrite the code so that we don't need to allocate
+	the whole section. Spotted by several developers, patch from
+	chs@/enami@
+
+	[maxv, ticket #1902]



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

2014-05-13 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May 14 05:27:47 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket 1905.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.4 src/doc/CHANGES-5.2.3:1.1.2.5
--- src/doc/CHANGES-5.2.3:1.1.2.4	Wed May 14 05:16:02 2014
+++ src/doc/CHANGES-5.2.3	Wed May 14 05:27:47 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.4 2014/05/14 05:16:02 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.5 2014/05/14 05:27:47 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -58,3 +58,19 @@ src/sys/compat/linux/common/linux_exec_e
 	chs@/enami@
 
 	[maxv, ticket #1902]
+
+xsrc/external/mit/libXfont/dist/src/fc/fsconvert.c	1.2
+xsrc/external/mit/libXfont/dist/src/fc/fserve.c		1.2
+xsrc/external/mit/libXfont/dist/src/fontfile/dirfile.c	1.2
+xsrc/xfree/xc/lib/font/fc/fsconvert.c			1.5
+xsrc/xfree/xc/lib/font/fc/fserve.c			1.5
+xsrc/xfree/xc/lib/font/fontfile/dirfile.c		1.5
+
+	Fix multiple vulnerabilities in libXfont:
+	- CVE-2014-0209: integer overflow of allocations in font metadata
+	  file parsing
+	- CVE-2014-0210: unvalidated length fields when parsing xfs protocol
+	  replies
+	- CVE-2014-0211: integer overflows calculating memory needs for xfs
+	  replies
+	[spz, ticket #1905]



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

2014-04-28 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Mon Apr 28 16:06:47 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket #1901


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.2 src/doc/CHANGES-5.2.3:1.1.2.3
--- src/doc/CHANGES-5.2.3:1.1.2.2	Wed Apr 16 06:57:19 2014
+++ src/doc/CHANGES-5.2.3	Mon Apr 28 16:06:47 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.2 2014/04/16 06:57:19 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.3 2014/04/28 16:06:47 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
 release:
@@ -14,3 +14,38 @@ sys/kern/kern_verifiedexec.c			1.132
 
 	Reorder code to avoid use-after-free on error. From Maxime Villard.
 	[maxv, ticket #1899]
+
+sys/kern/vfs_syscalls.c1.478, 1.480 via patch
+sys/coda/coda_vfsops.c1.81
+sys/fs/adosfs/advfsops.c			1.70
+sys/fs/cd9660/cd9660_vfsops.c			1.84
+sys/fs/efs/efs_vfsops.c1.25
+sys/fs/filecorefs/filecore_vfsops.c		1.76
+sys/fs/hfs/hfs_vfsops.c1.31
+sys/fs/msdosfs/msdosfs_vfsops.c			1.107
+sys/fs/ntfs/ntfs_vfsops.c			1.94
+sys/fs/ptyfs/ptyfs_vfsops.c			1.50 via patch
+sys/fs/puffs/puffs_vfsops.c			1.110 via patch
+sys/fs/smbfs/smbfs_vfsops.c			1.100
+sys/fs/sysvbfs/sysvbfs_vfsops.c			1.43
+sys/fs/tmpfs/tmpfs_vfsops.c			1.59 via patch
+sys/fs/udf/udf_vfsops.c1.67
+sys/fs/union/union_vfsops.c			1.72
+sys/fs/unionfs/unionfs_vfsops.c			1.13
+sys/kern/vfs_syscalls.c1.479
+sys/miscfs/nullfs/null_vfsops.c			1.88 via patch
+sys/miscfs/overlay/overlay_vfsops.c		1.61
+sys/miscfs/procfs/procfs_vfsops.c		1.91
+sys/miscfs/umapfs/umap_vfsops.c			1.92
+sys/nfs/nfs_vfsops.c1.227
+sys/ufs/ext2fs/ext2fs_vfsops.c			1.180
+sys/ufs/ffs/ffs_vfsops.c			1.297
+sys/ufs/lfs/lfs_vfsops.c			1.321
+sys/ufs/mfs/mfs_vfsops.c			1.107
+
+	Due to missing checks in the mount syscall, and a wrong
+	assumption on the file systems side, the kernel could allocate
+	an unbounded or zero-sized memory buffer, and could dereference
+	a NULL pointer when particular arguments are given by a user.
+	[maxv, ticket #1901]
+



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

2014-01-27 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Jan 27 21:30:24 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: README.files

Log Message:
Welcome to 5.2.2_PATCH (missing bits)


To generate a diff of this commit:
cvs rdiff -u -r1.4.10.4.2.4 -r1.4.10.4.2.5 src/doc/README.files

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

Modified files:

Index: src/doc/README.files
diff -u src/doc/README.files:1.4.10.4.2.4 src/doc/README.files:1.4.10.4.2.5
--- src/doc/README.files:1.4.10.4.2.4	Mon Jan 27 21:21:24 2014
+++ src/doc/README.files	Mon Jan 27 21:30:24 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: README.files,v 1.4.10.4.2.4 2014/01/27 21:21:24 bouyer Exp $
+#	$NetBSD: README.files,v 1.4.10.4.2.5 2014/01/27 21:30:24 bouyer Exp $
 
 What's in this directory:
 
@@ -30,7 +30,7 @@ source/sets/	Source distribution sets; s
 
 In addition to the files and directories listed above, there is one
 directory per architecture, for each of the architectures for which
-NetBSD 5.2.2 has a binary distribution.  The contents of each
+NetBSD 5.2.3 has a binary distribution.  The contents of each
 architecture's directory are described in an INSTALL file found in
 that directory.
 



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

2014-01-17 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Fri Jan 17 18:17:05 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2 README.files

Log Message:
distrib/notes/common/main   patched by hand
doc/LAST_MINUTE patched by hand
doc/README.filespatched by hand
gnu/usr.bin/groff/tmac/mdoc.local   patched by hand
sys/sys/param.h patched by hand

Welcome to 5.2.2!
[bouyer]


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.2.2
cvs rdiff -u -r1.4.10.4.2.2 -r1.4.10.4.2.3 src/doc/README.files

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.10 src/doc/CHANGES-5.2.2:1.1.2.11
--- src/doc/CHANGES-5.2.2:1.1.2.10	Fri Jan 17 17:00:03 2014
+++ src/doc/CHANGES-5.2.2	Fri Jan 17 18:17:05 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.10 2014/01/17 17:00:03 bouyer Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.11 2014/01/17 18:17:05 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -72,6 +72,7 @@ dist/bind/bin/named/query.c			patch
 
 distrib/notes/common/main   patched by hand
 doc/LAST_MINUTE patched by hand
+doc/README.filespatched by hand
 gnu/usr.bin/groff/tmac/mdoc.local   patched by hand
 sys/sys/param.h patched by hand
 

Index: src/doc/README.files
diff -u src/doc/README.files:1.4.10.4.2.2 src/doc/README.files:1.4.10.4.2.3
--- src/doc/README.files:1.4.10.4.2.2	Sun Oct 13 07:22:18 2013
+++ src/doc/README.files	Fri Jan 17 18:17:05 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: README.files,v 1.4.10.4.2.2 2013/10/13 07:22:18 jdc Exp $
+#	$NetBSD: README.files,v 1.4.10.4.2.3 2014/01/17 18:17:05 bouyer Exp $
 
 What's in this directory:
 
@@ -28,7 +28,7 @@ source/sets/	Source distribution sets; s
 
 In addition to the files and directories listed above, there is one
 directory per architecture, for each of the architectures for which
-NetBSD 5.1 has a binary distribution.  The contents of each
+NetBSD 5.2.2 has a binary distribution.  The contents of each
 architecture's directory are described in an INSTALL file found in
 that directory.
 



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

2014-01-15 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Jan 15 10:12:25 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
ticket 1897


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.8 src/doc/CHANGES-5.2.2:1.1.2.9
--- src/doc/CHANGES-5.2.2:1.1.2.8	Tue Jan  7 18:08:18 2014
+++ src/doc/CHANGES-5.2.2	Wed Jan 15 10:12:25 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.8 2014/01/07 18:08:18 bouyer Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.9 2014/01/15 10:12:25 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -61,3 +61,12 @@ xsrc/xfree/xc/lib/font/bitmap/bdfread.c	
 	with huge input data.
 	[wiz, ticket #1896]
 
+dist/bind/bin/named/query.c			patch
+
+	a fix by ISC for CVE-2014-0591:
+	3693.  [security]  memcpy was incorrectly called with overlapping
+			   ranges resulting in malformed names being generated
+			   on some platforms.  This could cause INSIST failures
+			   when serving NSEC3 signed zones.  [RT #35120]
+	[spz, ticket #1897]
+



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

2014-01-07 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Tue Jan  7 18:08:18 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
ticket #1896


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.7 src/doc/CHANGES-5.2.2:1.1.2.8
--- src/doc/CHANGES-5.2.2:1.1.2.7	Mon Jan  6 19:29:04 2014
+++ src/doc/CHANGES-5.2.2	Tue Jan  7 18:08:18 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.7 2014/01/06 19:29:04 bouyer Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.8 2014/01/07 18:08:18 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -54,3 +54,10 @@ distrib/ews4800mips/Makefile			1.3
 	Should prevent the iso image from being created in the source tree
 	[apb, ticket #1894]
 
+xsrc/external/mit/libXfont/dist/src/bitmap/bdfread.c	patch
+xsrc/xfree/xc/lib/font/bitmap/bdfread.c			patch
+
+	Fix CVE-2013-6462: scanf without field width limits can crash
+	with huge input data.
+	[wiz, ticket #1896]
+



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

2014-01-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Jan  6 19:29:04 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
tickets 1894 and 1895


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.6 src/doc/CHANGES-5.2.2:1.1.2.7
--- src/doc/CHANGES-5.2.2:1.1.2.6	Wed Dec 18 04:06:26 2013
+++ src/doc/CHANGES-5.2.2	Mon Jan  6 19:29:04 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.6 2013/12/18 04:06:26 riz Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.7 2014/01/06 19:29:04 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -40,3 +40,17 @@ usr.sbin/ndp/ndp.c1.42
 	obey all local alignement requirements.
 	[martin, ticket #1892]
 
+etc/ntp.conf	1.16, 1.17, 1.18 via patch
+external/bsd/ntp/dist/ntpd/ntp_request.c	patch
+
+	Patch from ntp 4.2.7p404 to prevent an amplifier and DoS attack.
+	Add several restrict lines to the default ntp.conf and
+	improve comments
+	[spz, ticket #1895]
+
+distrib/ews4800mips/Makefile			1.3
+
+	Add cdroms to the SUBDIR list for src/distrib/ews4800mips.
+	Should prevent the iso image from being created in the source tree
+	[apb, ticket #1894]
+



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

2013-12-17 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Tue Dec 17 20:58:38 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
ticket 1892


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.3 src/doc/CHANGES-5.2.2:1.1.2.4
--- src/doc/CHANGES-5.2.2:1.1.2.3	Fri Dec 13 08:53:11 2013
+++ src/doc/CHANGES-5.2.2	Tue Dec 17 20:58:38 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.3 2013/12/13 08:53:11 sborrill Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.4 2013/12/17 20:58:38 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -28,3 +28,15 @@ sys/arch/xen/xen/evtchn.c			1.70
 	but related to spin mutexes. Fixes port-xen/46313
 	[bouyer, ticket #1890]
 
+sys/netinet6/nd6.c1.146
+usr.sbin/ndp/ndp.c1.42
+
+	Instead of voodo casts use simple byte pointer arithmetic and memcpy to
+	create the packed binary format we pass out to userland when querying
+	the router/prefix list.
+	Simplify code to print the router/prefix list: use memcpy and local
+	structs properly aligned on the stack to decode the binary format
+	passed by the kernel - instead of (bogusly) assuming the format will
+	obey all local alignement requirements.
+	[martin, ticket #1892]
+



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

2013-12-17 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Tue Dec 17 21:01:30 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
ticket 1893


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.4 src/doc/CHANGES-5.2.2:1.1.2.5
--- src/doc/CHANGES-5.2.2:1.1.2.4	Tue Dec 17 20:58:38 2013
+++ src/doc/CHANGES-5.2.2	Tue Dec 17 21:01:30 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.4 2013/12/17 20:58:38 bouyer Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.5 2013/12/17 21:01:30 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -40,3 +40,8 @@ usr.sbin/ndp/ndp.c1.42
 	obey all local alignement requirements.
 	[martin, ticket #1892]
 
+sys/compat/common/compat_util.c			1.45
+
+	Free pathbuf in an error path.
+	[martin, ticket #1893]
+



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

2013-12-17 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Wed Dec 18 04:06:26 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
Revert ticket 1893.


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.5 src/doc/CHANGES-5.2.2:1.1.2.6
--- src/doc/CHANGES-5.2.2:1.1.2.5	Tue Dec 17 21:01:30 2013
+++ src/doc/CHANGES-5.2.2	Wed Dec 18 04:06:26 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.5 2013/12/17 21:01:30 bouyer Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.6 2013/12/18 04:06:26 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -40,8 +40,3 @@ usr.sbin/ndp/ndp.c1.42
 	obey all local alignement requirements.
 	[martin, ticket #1892]
 
-sys/compat/common/compat_util.c			1.45
-
-	Free pathbuf in an error path.
-	[martin, ticket #1893]
-



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

2013-12-13 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Dec 13 08:53:11 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
Ticket #1890


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.2 src/doc/CHANGES-5.2.2:1.1.2.3
--- src/doc/CHANGES-5.2.2:1.1.2.2	Sun Oct 13 07:26:23 2013
+++ src/doc/CHANGES-5.2.2	Fri Dec 13 08:53:11 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.2 2013/10/13 07:26:23 jdc Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.3 2013/12/13 08:53:11 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -21,3 +21,10 @@ xsrc/xfree/xc/programs/Xserver/dix/dixfo
 	references *c.
 	[spz, ticket #966]
 
+sys/arch/xen/xen/evtchn.c			1.70
+
+	Remove the evtchn_do_event: handler %p didn't lower ipl %d %d\n
+	printf as analysis shows it actually isn't a bug in the handler,
+	but related to spin mutexes. Fixes port-xen/46313
+	[bouyer, ticket #1890]
+



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

2013-10-13 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Sun Oct 13 07:26:23 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.2

Log Message:
Ticket #1884.


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

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.2.2
diff -u src/doc/CHANGES-5.2.2:1.1.2.1 src/doc/CHANGES-5.2.2:1.1.2.2
--- src/doc/CHANGES-5.2.2:1.1.2.1	Sun Oct 13 07:22:18 2013
+++ src/doc/CHANGES-5.2.2	Sun Oct 13 07:26:23 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.2,v 1.1.2.1 2013/10/13 07:22:18 jdc Exp $
+# $NetBSD: CHANGES-5.2.2,v 1.1.2.2 2013/10/13 07:26:23 jdc Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -10,3 +10,14 @@ sys/sys/param.h	patched by hand
 	Welcome to 5.2.1_PATCH.
 	[jdc]
 
+xsrc/external/mit/xorg-server/dist/dix/dixfonts.c	1.2 via patch
+xsrc/xfree/xc/programs/Xserver/dix/dixfonts.c		1.4 via patch
+
+	Fix CVE-2013-4396 using a patch from Alan Coopersmith:
+	Save a pointer to the passed in closure structure before copying it
+	and overwriting the *c pointer to point to our copy instead of the
+	original.  If we hit an error, once we free(c), reset c to point to
+	the original structure before jumping to the cleanup code that
+	references *c.
+	[spz, ticket #966]
+



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

2013-09-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Sep 20 14:20:09 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1879


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.19 src/doc/CHANGES-5.2.1:1.1.2.20
--- src/doc/CHANGES-5.2.1:1.1.2.19	Fri Sep 20 03:11:08 2013
+++ src/doc/CHANGES-5.2.1	Fri Sep 20 14:20:09 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.19 2013/09/20 03:11:08 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.20 2013/09/20 14:20:09 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -260,3 +260,8 @@ etc/ssh/ssh_known_hosts1.7-1.8
 	Update for project hosts whose keys changed.
 	[spz, ticket #1878]
 
+sbin/raidctl/raidctl.81.65
+
+	Note that NetBSD/amd64 can boot off RAID volumes.
+	[tron, ticket #1879]
+



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

2013-09-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Sep 21 02:59:52 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
TIcket 1880


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.20 src/doc/CHANGES-5.2.1:1.1.2.21
--- src/doc/CHANGES-5.2.1:1.1.2.20	Fri Sep 20 14:20:09 2013
+++ src/doc/CHANGES-5.2.1	Sat Sep 21 02:59:52 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.20 2013/09/20 14:20:09 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.21 2013/09/21 02:59:52 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -265,3 +265,9 @@ sbin/raidctl/raidctl.81.65
 	Note that NetBSD/amd64 can boot off RAID volumes.
 	[tron, ticket #1879]
 
+share/zoneinfo/australasia			1.33
+
+	Merge the Fiji-related change from tzdata2013e.
+	This year Fiji will start DST on October 27, not October 20.
+	[apb, ticket #1880]
+



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

2013-09-19 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Sep 20 03:11:08 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1878.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.18 src/doc/CHANGES-5.2.1:1.1.2.19
--- src/doc/CHANGES-5.2.1:1.1.2.18	Wed Sep 18 19:49:42 2013
+++ src/doc/CHANGES-5.2.1	Fri Sep 20 03:11:08 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.18 2013/09/18 19:49:42 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.19 2013/09/20 03:11:08 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -255,3 +255,8 @@ xsrc/external/mit/libX11/dist/src/xkb/XK
 	Should fix PR lib/48170.
 	[riz, ticket #1877]
 
+etc/ssh/ssh_known_hosts1.7-1.8
+
+	Update for project hosts whose keys changed.
+	[spz, ticket #1878]
+



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

2013-09-18 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Sep 18 19:46:41 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
ticket 1877


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.15 src/doc/CHANGES-5.2.1:1.1.2.16
--- src/doc/CHANGES-5.2.1:1.1.2.15	Wed Sep 18 03:44:01 2013
+++ src/doc/CHANGES-5.2.1	Wed Sep 18 19:46:41 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.15 2013/09/18 03:44:01 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.16 2013/09/18 19:46:41 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -245,3 +245,11 @@ sys/netinet6/in6.c1.167 via patch
 	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
 	FreeBSD.
 	[spz, ticket #1876]
+xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c	patch
+
+	The size of the arrays is max_key_code + 1. This makes these functions
+	consistent with the other checks added for CVE-2013-1997.
+	Check the XkbGetNames reply when names-keys was just allocated
+	Should fix PR lib/48170.
+	[riz, ticket #1877]
+



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

2013-09-18 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Sep 18 19:48:25 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
fix ticket 1877


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.16 src/doc/CHANGES-5.2.1:1.1.2.17
--- src/doc/CHANGES-5.2.1:1.1.2.16	Wed Sep 18 19:46:41 2013
+++ src/doc/CHANGES-5.2.1	Wed Sep 18 19:48:25 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.16 2013/09/18 19:46:41 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.17 2013/09/18 19:48:25 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -246,6 +246,7 @@ sys/netinet6/in6.c1.167 via patch
 	FreeBSD.
 	[spz, ticket #1876]
 xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c	patch
+xsrc/external/mit/libX11/dist/src/xkb/XKBGetMap.c	patch
 
 	The size of the arrays is max_key_code + 1. This makes these functions
 	consistent with the other checks added for CVE-2013-1997.



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

2013-09-18 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Sep 18 19:49:42 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Formatting fix


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.17 src/doc/CHANGES-5.2.1:1.1.2.18
--- src/doc/CHANGES-5.2.1:1.1.2.17	Wed Sep 18 19:48:25 2013
+++ src/doc/CHANGES-5.2.1	Wed Sep 18 19:49:42 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.17 2013/09/18 19:48:25 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.18 2013/09/18 19:49:42 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -245,6 +245,7 @@ sys/netinet6/in6.c1.167 via patch
 	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
 	FreeBSD.
 	[spz, ticket #1876]
+
 xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c	patch
 xsrc/external/mit/libX11/dist/src/xkb/XKBGetMap.c	patch
 



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

2013-09-17 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 18 03:44:01 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1876.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.14 src/doc/CHANGES-5.2.1:1.1.2.15
--- src/doc/CHANGES-5.2.1:1.1.2.14	Wed Sep 11 07:05:29 2013
+++ src/doc/CHANGES-5.2.1	Wed Sep 18 03:44:01 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.14 2013/09/11 07:05:29 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.15 2013/09/18 03:44:01 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -239,3 +239,9 @@ sys/net/bpf.c	1.176 via patch
 	Avoid kernel panic caused by setting a very small bpf buffer size.
 	Fixes PR/48198 reported by Peter Bex.
 	[spz, ticket #1874]
+
+sys/netinet6/in6.c1.167 via patch
+
+	Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from
+	FreeBSD.
+	[spz, ticket #1876]



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

2013-09-11 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Sep 11 07:05:29 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1874.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.13 src/doc/CHANGES-5.2.1:1.1.2.14
--- src/doc/CHANGES-5.2.1:1.1.2.13	Sat Sep  7 17:19:19 2013
+++ src/doc/CHANGES-5.2.1	Wed Sep 11 07:05:29 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.13 2013/09/07 17:19:19 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.14 2013/09/11 07:05:29 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -234,3 +234,8 @@ share/zoneinfo/zone.tab		patch
 	 Update URL for CLDR Zone-Tzid table (thanks to Yoshito Umaoka).
 	[apb, ticket #1870]
 
+sys/net/bpf.c	1.176 via patch
+
+	Avoid kernel panic caused by setting a very small bpf buffer size.
+	Fixes PR/48198 reported by Peter Bex.
+	[spz, ticket #1874]



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

2013-09-07 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Sep  7 17:19:19 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
ticket 1870


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.12 src/doc/CHANGES-5.2.1:1.1.2.13
--- src/doc/CHANGES-5.2.1:1.1.2.12	Tue Jul 30 02:30:13 2013
+++ src/doc/CHANGES-5.2.1	Sat Sep  7 17:19:19 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.12 2013/07/30 02:30:13 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.13 2013/09/07 17:19:19 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -194,3 +194,43 @@ usr.bin/netstat/netstat.h			1.47
 	pcb first!
 	Not all pointers are 64bit - use uintptr_t instead of uint64_t.
 	[christos, ticket #1868]
+doc/3RDPARTY			patch
+share/zoneinfo/africa		patch
+share/zoneinfo/asia		patch
+share/zoneinfo/australasia	patch
+share/zoneinfo/europe		patch
+share/zoneinfo/iso3166.tab	patch
+share/zoneinfo/southamerica	patch
+share/zoneinfo/zone.tab		patch
+
+	Import tzdata2013d from
+	ftp://ftp.iana.org/tz/releases/tzdata2013d.tar.gz
+	Summary of changes from tzdata2013c to tzdata2013d:
+	   Changes affecting current and future time stamps:
+	 Morocco's midsummer transitions this year are July 7 and August 10,
+	 not July 9 and August 8.  (Thanks to Andrew Paprocki.)
+
+	 Israel now falls back on the last Sunday of October.
+	 (Thanks to Ephraim Silverberg.)
+
+	   Changes affecting past time stamps:
+	 Specify Jerusalem's location more precisely; this changes the
+	 pre-1880 times by 2 s.
+
+	   Changing affecting metadata only:
+	 Fix typos in the entries for country codes BQ and SX.
+
+	   Changes affecting documentation and commentary:
+	 Deemphasize the significance of national borders.
+
+	 Update the zdump man page.
+
+	 Remove obsolete NOID comment (thanks to Denis Excoffier).
+
+	 Update several URLs and comments in the web pages.
+
+	 Spelling fixes (thanks to Kevin Lyda and Jonathan Leffler).
+
+	 Update URL for CLDR Zone-Tzid table (thanks to Yoshito Umaoka).
+	[apb, ticket #1870]
+



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

2013-07-29 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Jul 30 02:30:13 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1868.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.11 src/doc/CHANGES-5.2.1:1.1.2.12
--- src/doc/CHANGES-5.2.1:1.1.2.11	Mon Jul 29 02:21:30 2013
+++ src/doc/CHANGES-5.2.1	Tue Jul 30 02:30:13 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.11 2013/07/29 02:21:30 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.12 2013/07/30 02:30:13 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -184,3 +184,13 @@ external/bsd/bind/dist/lib/dns/rdata/gen
 
 	Fix for bind CVE-2013-4854.
 	[spz, ticket #1871]
+
+usr.bin/netstat/inet.c1.102-1.03
+usr.bin/netstat/inet6.c1.61-1.62
+usr.bin/netstat/main.c1.86
+usr.bin/netstat/netstat.h			1.47
+
+	Don't use -P as a kmem printer, verify that the address points to a
+	pcb first!
+	Not all pointers are 64bit - use uintptr_t instead of uint64_t.
+	[christos, ticket #1868]



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

2013-07-28 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Jul 29 02:21:30 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket #1871


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.10 src/doc/CHANGES-5.2.1:1.1.2.11
--- src/doc/CHANGES-5.2.1:1.1.2.10	Wed Jun 19 07:59:38 2013
+++ src/doc/CHANGES-5.2.1	Mon Jul 29 02:21:30 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.10 2013/06/19 07:59:38 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.11 2013/07/29 02:21:30 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -180,3 +180,7 @@ share/man/man4/options.4			1.420
 	Fix typo
 	[msaitoh, ticket #1862]
 
+external/bsd/bind/dist/lib/dns/rdata/generic/keydata_65533.c	patch
+
+	Fix for bind CVE-2013-4854.
+	[spz, ticket #1871]



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

2013-06-19 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Jun 19 07:59:38 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
ticket #1862


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.9 src/doc/CHANGES-5.2.1:1.1.2.10
--- src/doc/CHANGES-5.2.1:1.1.2.9	Sun Jun  9 16:21:44 2013
+++ src/doc/CHANGES-5.2.1	Wed Jun 19 07:59:38 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.9 2013/06/09 16:21:44 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.10 2013/06/19 07:59:38 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -175,3 +175,8 @@ sys/dev/fss.c	1.84
 
 	Don't crash when running multiple dump -X. PR#47514.
 	[gdt, ticket #1853]
+share/man/man4/options.4			1.420
+
+	Fix typo
+	[msaitoh, ticket #1862]
+



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

2013-06-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jun  9 16:21:44 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1848 and 1853.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.8 src/doc/CHANGES-5.2.1:1.1.2.9
--- src/doc/CHANGES-5.2.1:1.1.2.8	Thu Jun  6 16:48:02 2013
+++ src/doc/CHANGES-5.2.1	Sun Jun  9 16:21:44 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.8 2013/06/06 16:48:02 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.9 2013/06/09 16:21:44 msaitoh Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -166,3 +166,12 @@ external/mit/xorg/lib/libXi/Makefile			p
 	Silence gcc 4.1 warnings from ticket #1865.
 	[mrg, ticket #1866]
 
+etc/MAKEDEV.tmpl1.161
+
+	The console major number is not always 0.
+	[apb, ticket #1848]
+
+sys/dev/fss.c	1.84
+
+	Don't crash when running multiple dump -X. PR#47514.
+	[gdt, ticket #1853]



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

2013-06-06 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Thu Jun  6 16:48:02 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Tickets 1865, 1866


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.7 src/doc/CHANGES-5.2.1:1.1.2.8
--- src/doc/CHANGES-5.2.1:1.1.2.7	Sat May 11 22:42:38 2013
+++ src/doc/CHANGES-5.2.1	Thu Jun  6 16:48:02 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.7 2013/05/11 22:42:38 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.8 2013/06/06 16:48:02 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -107,3 +107,62 @@ 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
+
+	Fix protocol handling issues in X client libraries.
+	[mrg, ticket #1865]
+
+external/mit/xorg/lib/fontconfig/src/Makefile		patch
+external/mit/xorg/lib/libX11/Makefile.libx11		patch
+external/mit/xorg/lib/libXi/Makefile			patch
+
+	Silence gcc 4.1 warnings from ticket #1865.
+	[mrg, ticket #1866]
+



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

2013-05-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat May 11 22:30:21 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1860


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.5 src/doc/CHANGES-5.2.1:1.1.2.6
--- src/doc/CHANGES-5.2.1:1.1.2.5	Fri Mar 15 18:55:18 2013
+++ src/doc/CHANGES-5.2.1	Sat May 11 22:30:21 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.5 2013/03/15 18:55:18 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.6 2013/05/11 22:30:21 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -91,3 +91,13 @@ distrib/sets/lists/base/mi			patch
 	 try to predict Ramadan in Morocco as best we can. 
 	[apb, ticket #1854]
 
+share/zoneinfo/antarctica			patch
+share/zoneinfo/asiapatch
+share/zoneinfo/australasia			patch
+share/zoneinfo/southamerica			patch
+share/zoneinfo/zone.tabpatch
+
+	Merge tzdata2013c from
+	ftp://ftp.iana.org/tz/releases/tzdata2013c.tar.gz
+	[apb, ticket #1860]
+



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

2013-05-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat May 11 22:42:38 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Ticket 1846.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.6 src/doc/CHANGES-5.2.1:1.1.2.7
--- src/doc/CHANGES-5.2.1:1.1.2.6	Sat May 11 22:30:21 2013
+++ src/doc/CHANGES-5.2.1	Sat May 11 22:42:38 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.6 2013/05/11 22:30:21 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.7 2013/05/11 22:42:38 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -101,3 +101,9 @@ share/zoneinfo/zone.tabpatch
 	ftp://ftp.iana.org/tz/releases/tzdata2013c.tar.gz
 	[apb, ticket #1860]
 
+distrib/utils/sysinst/menus.mi		1.35, 1.43
+
+	Some v6 dns server are outdated, so replace them with google's
+	public servers.
+	[msaitoh, ticket #1846]
+



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

2013-03-15 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Mar 15 18:55:18 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Update changelist for ticket 1854.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.4 src/doc/CHANGES-5.2.1:1.1.2.5
--- src/doc/CHANGES-5.2.1:1.1.2.4	Thu Mar 14 20:02:21 2013
+++ src/doc/CHANGES-5.2.1	Fri Mar 15 18:55:18 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.4 2013/03/14 20:02:21 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.5 2013/03/15 18:55:18 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -65,8 +65,13 @@ sys/external/bsd/ipf/netinet/ip_fil_netb
 
 doc/3RDPARTY	patch
 share/zoneinfo/africapatch
+share/zoneinfo/antarctica			patch
+share/zoneinfo/asiapatch
+share/zoneinfo/australasia			patch
+share/zoneinfo/europepatch
 share/zoneinfo/northamerica			patch
 share/zoneinfo/southamerica			patch
+share/zoneinfo/zone.tabpatch
 distrib/sets/lists/base/mi			patch
 
 	Merge tzdata2013a and tzdata2013b from



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

2013-03-14 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Thu Mar 14 20:02:22 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
Apply changes (requested by apb in ticket #1854):

Merge tzdata2013a from ftp://ftp.iana.org/tz/releases/tzdata2013a.tar.gz
Merge tzdata2013b from ftp://ftp.iana.org/tz/releases/tzdata2013b.tar.gz

Changes from tzdata2012j to tzdata2013a:

   Change affecting binary data format:

 The zone offset at the end of version-2-format zone files is now
 allowed to be 24:00, as per POSIX.1-2008.  (Thanks to Arthor David Olson.)

   Changes affecting current and future time stamps:

 Chile's 2013 rules, and we guess rules for 2014 and later, will be
 the same as 2012, namely Apr Sun=23 03:00 UTC to Sep Sun=2 04:00 UTC.
 (Thanks to Steffen Thorsen and Robert Elz.)

 New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen.
 (Thanks to Tobias Conradi and Arthur David Olson.)

   Many changes affect historical time stamps before 1940.
   These were deduced from: Milne J. Civil time. Geogr J. 1899
   Feb;13(2):173-94 http://www.jstor.org/stable/1774359.

Changes from tzdata2012j to tzdata2013a:

   Changes affecting current and future time stamps:

 Haiti uses US daylight-saving rules this year, and presumably future years.
 This changes time stamps starting today.  (Thanks to Steffen Thorsen.)

 Paraguay will end DST on March 24 this year.
 (Thanks to Steffen Thorsen.)  For now, assume it's just this year.

 Morocco does not observe DST during Ramadan;
 try to predict Ramadan in Morocco as best we can.
 (Thanks to Erik Homoet for the heads-up.)

   Changes affecting commentary:

 Update URLs in tz-link page.  Add URLs for webOS, BB10, iOS.
 Update URL for Solaris.  Mention Internet RFC 6557.
 Update Internet RFCs 2445-5545, 2822-5322.
 Switch from FTP to HTTP for Internet RFCs.


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.3 src/doc/CHANGES-5.2.1:1.1.2.4
--- src/doc/CHANGES-5.2.1:1.1.2.3	Mon Jan 21 20:23:36 2013
+++ src/doc/CHANGES-5.2.1	Thu Mar 14 20:02:21 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.3 2013/01/21 20:23:36 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.4 2013/03/14 20:02:21 riz Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -63,3 +63,26 @@ sys/external/bsd/ipf/netinet/ip_fil_netb
 	Fix off-by-one read error.
 	[msaitoh, ticket #1840]
 
+doc/3RDPARTY	patch
+share/zoneinfo/africapatch
+share/zoneinfo/northamerica			patch
+share/zoneinfo/southamerica			patch
+distrib/sets/lists/base/mi			patch
+
+	Merge tzdata2013a and tzdata2013b from
+	ftp://ftp.iana.org/tz/releases/tzdata2013a.tar.gz and
+	ftp://ftp.iana.org/tz/releases/tzdata2013b.tar.gz .
+	Important changes from tzdata2012j to tzdata2013a:
+	 Chile's 2013 rules, and we guess rules for 2014 and later, will be
+	 the same as 2012, namely Apr Sun=23 03:00 UTC to
+	 Sep Sun=2 04:00 UTC.
+	 New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen.
+	 Many changes affect historical time stamps before 1940.
+	Important changes from tzdata2013a to tzdata2013b:
+	 Haiti uses US daylight-saving rules this year, and presumably
+	 future years.
+	 Paraguay will end DST on March 24 this year.
+	 Morocco does not observe DST during Ramadan;
+	 try to predict Ramadan in Morocco as best we can. 
+	[apb, ticket #1854]
+



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

2013-01-21 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Jan 21 20:23:36 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
ticket 1840


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.2 src/doc/CHANGES-5.2.1:1.1.2.3
--- src/doc/CHANGES-5.2.1:1.1.2.2	Sun Jan 13 17:19:01 2013
+++ src/doc/CHANGES-5.2.1	Mon Jan 21 20:23:36 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.2 2013/01/13 17:19:01 bouyer Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.3 2013/01/21 20:23:36 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -58,3 +58,8 @@ gnu/dist/grep/src/search.c			1.4
 
 	[apb, ticket #1838]
 
+sys/external/bsd/ipf/netinet/ip_fil_netbsd.c	1.4 via patch
+
+	Fix off-by-one read error.
+	[msaitoh, ticket #1840]
+



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

2013-01-13 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jan 13 17:19:01 UTC 2013

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.1

Log Message:
tickets 1826, 1827, 1828, 1830, 1831, 1837, 1839, 1838


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

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.2.1
diff -u src/doc/CHANGES-5.2.1:1.1.2.1 src/doc/CHANGES-5.2.1:1.1.2.2
--- src/doc/CHANGES-5.2.1:1.1.2.1	Tue Dec 18 21:55:15 2012
+++ src/doc/CHANGES-5.2.1	Sun Jan 13 17:19:01 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.1,v 1.1.2.1 2012/12/18 21:55:15 riz Exp $
+# $NetBSD: CHANGES-5.2.1,v 1.1.2.2 2013/01/13 17:19:01 bouyer Exp $
 
 A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.2.1
 release:
@@ -9,3 +9,52 @@ sys/sys/param.h	patched by hand
 	Welcome to 5.2.0_PATCH.
 	[riz]
 
+sys/dev/lockstat.c1.16
+
+	Fix off by one.
+	[msaitoh, ticket #1826]
+
+sys/dev/raidframe/rf_driver.c			1.131
+
+	Fix off by one read.
+	[msaitoh, ticket #1827]
+
+sys/external/isc/atheros_hal/dist/ah_eeprom_v14.c		patch
+
+	Fix off by one read.
+	[msaitoh, ticket #1828]
+
+sys/dev/usb/ubsa_common.c			1.9
+
+	Fix off by one read error.
+	[msaitoh, ticket #1830]
+
+sys/external/bsd/drm/dist/shared-core/i915_suspend.c 1.6
+
+	Fix wrong reference to dev_priv-saveSWF1. It was clearly wrong.
+	[msaitoh, ticket #1831]
+
+sbin/fsck_ffs/pass1.c1.50
+
+	Show pass1 SIGINFO output on stderr like other passes, not on stdout.
+	[riastradh, ticket #1837]
+
+etc/namedb/root.cache1.17
+
+	D.ROOT-SERVERS.NET changes IPv4 address.
+	[taca, ticket #1839]
+
+gnu/dist/grep/lib/getopt.c			1.2
+gnu/dist/grep/lib/regex.c			1.2
+gnu/dist/grep/src/ansi2knr.c			1.2
+gnu/dist/grep/src/dfa.c1.3
+gnu/dist/grep/src/grep.c			1.14
+gnu/dist/grep/src/search.c			1.4
+
+	Change several int variables to size_t, ssize_t, or ptrdiff_t.
+	This should fix the bug described in CVE-2012-5667 when an input
+	line is so long that its length cannot be stored in an int
+	variable.
+
+	[apb, ticket #1838]
+