CVS commit: src/sys

2014-01-06 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Tue Jan  7 07:59:03 UTC 2014

Modified Files:
src/sys/kern: core_netbsd.c
src/sys/uvm: uvm_coredump.c

Log Message:
Re-instate the zero length sections in elf core dumps (they probably help
  describe the process memory layout).
Fudge the a.out core code to not dump the entire contents.
I'm not sue that anything can read a.out core files - more progress might
  be made on such dumps by converting the a.out file to elf!


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/kern/core_netbsd.c
cvs rdiff -u -r1.5 -r1.6 src/sys/uvm/uvm_coredump.c

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



CVS commit: xsrc/xfree/xc/lib/font/bitmap

2014-01-06 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Tue Jan  7 07:43:47 UTC 2014

Modified Files:
xsrc/xfree/xc/lib/font/bitmap: bdfread.c

Log Message:
Additional hardening after CVE-2013-6462:

>From f8b21df399fbedd08da88752181b8a290a38d890 Mon Sep 17 00:00:00 2001
From: Alan Coopersmith 
Date: Mon, 23 Dec 2013 19:01:11 -0800
Subject: [PATCH:libXfont 2/2] Limit additional sscanf strings to fit buffer
 sizes

None of these could currently result in buffer overflow, as the input
and output buffers were the same size, but adding limits helps ensure
we keep it that way, if we ever resize any of these in the future.

Fixes cppcheck warnings:
 [lib/libXfont/src/bitmap/bdfread.c:547]: (warning)
  scanf without field width limits can crash with huge input data.
 [lib/libXfont/src/bitmap/bdfread.c:553]: (warning)
  scanf without field width limits can crash with huge input data.
 [lib/libXfont/src/bitmap/bdfread.c:636]: (warning)
  scanf without field width limits can crash with huge input data.

Signed-off-by: Alan Coopersmith 
Reviewed-by: Matthieu Herrb 
Reviewed-by: Jeremy Huddleston Sequoia 
---
 src/bitmap/bdfread.c |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/xfree/xc/lib/font/bitmap/bdfread.c

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



CVS commit: xsrc/xfree/xc/lib/font/bitmap

2014-01-06 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Tue Jan  7 07:43:16 UTC 2014

Modified Files:
xsrc/xfree/xc/lib/font/bitmap: bdfread.c

Log Message:
CVE-2013-6462:
>From aeabb3efa6905e11c479e2e5319f2b6b3ab22009 Mon Sep 17 00:00:00 2001
From: Alan Coopersmith 
Date: Mon, 23 Dec 2013 18:34:02 -0800
Subject: [PATCH:libXfont 1/2] CVE-2013-: unlimited sscanf can overflow
 stack buffer in bdfReadCharacters()

Fixes cppcheck warning:
 [lib/libXfont/src/bitmap/bdfread.c:341]: (warning)
  scanf without field width limits can crash with huge input data.

Signed-off-by: Alan Coopersmith 
Reviewed-by: Matthieu Herrb 
Reviewed-by: Jeremy Huddleston Sequoia 
---
 src/bitmap/bdfread.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/xfree/xc/lib/font/bitmap/bdfread.c

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



CVS commit: xsrc/external/mit/libXfont/dist/src/bitmap

2014-01-06 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Tue Jan  7 07:42:25 UTC 2014

Modified Files:
xsrc/external/mit/libXfont/dist/src/bitmap: bdfread.c

Log Message:
Additional hardening from upstream:

>From f8b21df399fbedd08da88752181b8a290a38d890 Mon Sep 17 00:00:00 2001
From: Alan Coopersmith 
Date: Mon, 23 Dec 2013 19:01:11 -0800
Subject: [PATCH:libXfont 2/2] Limit additional sscanf strings to fit buffer
 sizes

None of these could currently result in buffer overflow, as the input
and output buffers were the same size, but adding limits helps ensure
we keep it that way, if we ever resize any of these in the future.

Fixes cppcheck warnings:
 [lib/libXfont/src/bitmap/bdfread.c:547]: (warning)
  scanf without field width limits can crash with huge input data.
 [lib/libXfont/src/bitmap/bdfread.c:553]: (warning)
  scanf without field width limits can crash with huge input data.
 [lib/libXfont/src/bitmap/bdfread.c:636]: (warning)
  scanf without field width limits can crash with huge input data.

Signed-off-by: Alan Coopersmith 
Reviewed-by: Matthieu Herrb 
Reviewed-by: Jeremy Huddleston Sequoia 
---
 src/bitmap/bdfread.c |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libXfont/dist/src/bitmap/bdfread.c

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



CVS commit: xsrc/external/mit/libXfont/dist/src/bitmap

2014-01-06 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Tue Jan  7 07:41:59 UTC 2014

Modified Files:
xsrc/external/mit/libXfont/dist/src/bitmap: bdfread.c

Log Message:
CVS-2013-6462:
>From aeabb3efa6905e11c479e2e5319f2b6b3ab22009 Mon Sep 17 00:00:00 2001
From: Alan Coopersmith 
Date: Mon, 23 Dec 2013 18:34:02 -0800
Subject: [PATCH:libXfont 1/2] CVE-2013-: unlimited sscanf can overflow
 stack buffer in bdfReadCharacters()

Fixes cppcheck warning:
 [lib/libXfont/src/bitmap/bdfread.c:341]: (warning)
  scanf without field width limits can crash with huge input data.

Signed-off-by: Alan Coopersmith 
Reviewed-by: Matthieu Herrb 
Reviewed-by: Jeremy Huddleston Sequoia 
---
 src/bitmap/bdfread.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
xsrc/external/mit/libXfont/dist/src/bitmap/bdfread.c

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



CVS commit: src/distrib/notes/common

2014-01-06 Thread Masatake Daimon
Module Name:src
Committed By:   pho
Date:   Tue Jan  7 04:46:02 UTC 2014

Modified Files:
src/distrib/notes/common: main

Log Message:
Add pho@ to NetBSD Developers.


To generate a diff of this commit:
cvs rdiff -u -r1.499 -r1.500 src/distrib/notes/common/main

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



CVS commit: src/share/mk

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:16:42 UTC 2014

Modified Files:
src/share/mk: bsd.sys.mk

Log Message:
Non-literal format strings should be an error by default for clang.


To generate a diff of this commit:
cvs rdiff -u -r1.231 -r1.232 src/share/mk/bsd.sys.mk

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



CVS commit: src/external/bsd/pkg_install/dist/lib

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:15:27 UTC 2014

Modified Files:
src/external/bsd/pkg_install/dist/lib: lib.h

Log Message:
xasprintf uses format strings.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/pkg_install/dist/lib/lib.h

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



CVS commit: src/external/bsd/openpam/dist/lib

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:15:02 UTC 2014

Modified Files:
src/external/bsd/openpam/dist/lib: openpam_log.c

Log Message:
Ignore non-literal format strings, the modifications can't be expressed
with the current framework.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/openpam/dist/lib/openpam_log.c

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



CVS commit: src/crypto/external/bsd/openssh/dist

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:13:39 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh/dist: log.h

Log Message:
Format string checks for do_log.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/crypto/external/bsd/openssh/dist/log.h

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



CVS commit: src/external/bsd/nvi/dist/common

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:14:02 UTC 2014

Modified Files:
src/external/bsd/nvi/dist/common: common.h

Log Message:
Check format strings for ex_printf.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/nvi/dist/common/common.h

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



CVS commit: src/external/bsd/file/dist/src

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:12:07 UTC 2014

Modified Files:
src/external/bsd/file/dist/src: file.h funcs.c

Log Message:
Format string checks for file_vprintf and file_error_core


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/src/file.h
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/file/dist/src/funcs.c

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



CVS commit: src/external/bsd/fetch/dist/libfetch

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:13:00 UTC 2014

Modified Files:
src/external/bsd/fetch/dist/libfetch: common.h ftp.c http.c

Log Message:
Annotate format strings. Add a bunch of int casts for size limits.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.7 -r1.2 src/external/bsd/fetch/dist/libfetch/common.h
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/fetch/dist/libfetch/ftp.c
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/fetch/dist/libfetch/http.c

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



CVS commit: src/external/bsd/tmux/dist

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:11:30 UTC 2014

Modified Files:
src/external/bsd/tmux/dist: input.c log.c tmux.h

Log Message:
Format string verification


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tmux/dist/input.c
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tmux/dist/log.c
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/tmux/dist/tmux.h

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



CVS commit: src/external/bsd/ntp/dist/ntpd

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:10:49 UTC 2014

Modified Files:
src/external/bsd/ntp/dist/ntpd: refclock_parse.c

Log Message:
Fix format strings.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/ntp/dist/ntpd/refclock_parse.c

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



CVS commit: src/external/bsd/libarchive/dist/libarchive_fe

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:09:37 UTC 2014

Modified Files:
src/external/bsd/libarchive/dist/libarchive_fe: err.c err.h

Log Message:
Annotate warnc/errc for format string checking.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/bsd/libarchive/dist/libarchive_fe/err.c \
src/external/bsd/libarchive/dist/libarchive_fe/err.h

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



CVS commit: src/external/bsd/libevent/dist

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:09:01 UTC 2014

Modified Files:
src/external/bsd/libevent/dist: log-internal.h log.c

Log Message:
Add format string checks for _warn_helper.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/libevent/dist/log-internal.h
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/libevent/dist/log.c

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



CVS commit: src/lib/libpam/modules

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:07:43 UTC 2014

Modified Files:
src/lib/libpam/modules/pam_lastlog: pam_lastlog.c
src/lib/libpam/modules/pam_login_access: login_access.c
src/lib/libpam/modules/pam_radius: pam_radius.c

Log Message:
Annotate logit to provide transitive format string checks.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/libpam/modules/pam_lastlog/pam_lastlog.c
cvs rdiff -u -r1.7 -r1.8 \
src/lib/libpam/modules/pam_login_access/login_access.c
cvs rdiff -u -r1.7 -r1.8 src/lib/libpam/modules/pam_radius/pam_radius.c

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



CVS commit: src/usr.bin

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:07:09 UTC 2014

Modified Files:
src/usr.bin/flock: flock.c
src/usr.bin/ftp: ssl.h
src/usr.bin/units: units.c

Log Message:
Annotate functions using format strings.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/usr.bin/flock/flock.c
cvs rdiff -u -r1.1 -r1.2 src/usr.bin/ftp/ssl.h
cvs rdiff -u -r1.24 -r1.25 src/usr.bin/units/units.c

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



CVS commit: src/external/bsd/atf/dist

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 02:06:42 UTC 2014

Modified Files:
src/external/bsd/atf/dist/atf-c: error.h tc.c tc.h
src/external/bsd/atf/dist/atf-c++: tests.cpp
src/external/bsd/atf/dist/atf-c/detail: dynstr.c dynstr.h fs.c fs.h
sanity.c test_helpers.c text.h tp_main.c

Log Message:
Format string annotations and fixes for resulting fallout.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 src/external/bsd/atf/dist/atf-c/error.h
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/atf/dist/atf-c/tc.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/dist/atf-c/tc.h
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/atf/dist/atf-c++/tests.cpp
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/atf/dist/atf-c/detail/dynstr.c \
src/external/bsd/atf/dist/atf-c/detail/dynstr.h \
src/external/bsd/atf/dist/atf-c/detail/fs.c \
src/external/bsd/atf/dist/atf-c/detail/fs.h \
src/external/bsd/atf/dist/atf-c/detail/text.h
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/atf/dist/atf-c/detail/sanity.c
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/atf/dist/atf-c/detail/test_helpers.c
cvs rdiff -u -r1.1.1.4 -r1.2 src/external/bsd/atf/dist/atf-c/detail/tp_main.c

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



CVS commit: src/external/bsd/llvm/include

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Jan  7 01:59:36 UTC 2014

Modified Files:
src/external/bsd/llvm/include: Makefile

Log Message:
Replace with a simple -e x for sed.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/external/bsd/llvm/include/Makefile

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src/libverify

2014-01-06 Thread Hisashi T Fujinaka
Module Name:src
Committed By:   htodd
Date:   Mon Jan  6 23:23:10 UTC 2014

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/libverify: libverify.c

Log Message:
Fix build (cast to const char *).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/crypto/external/bsd/netpgp/dist/src/libverify/libverify.c

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src/libverify

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Jan  6 22:59:10 UTC 2014

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/libverify: libverify.c

Log Message:
Move __printflike to the prototype. Add explicit cast for void * ->
char * to make GCC happy.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/crypto/external/bsd/netpgp/dist/src/libverify/libverify.c

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



CVS commit: src/usr.bin/genassym

2014-01-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan  6 22:43:15 UTC 2014

Modified Files:
src/usr.bin/genassym: genassym.sh

Log Message:
- use just the basename for program name
- quote variables
- use mktemp to create directories (from jtc)
- exit on errors


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.bin/genassym/genassym.sh

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Jan  6 21:15:15 UTC 2014

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/libbn: misc.h
src/crypto/external/bsd/netpgp/dist/src/libverify: libverify.c

Log Message:
Add __printflike.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/crypto/external/bsd/netpgp/dist/src/libbn/misc.h
cvs rdiff -u -r1.4 -r1.5 \
src/crypto/external/bsd/netpgp/dist/src/libverify/libverify.c

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib

2014-01-06 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Jan  6 21:12:19 UTC 2014

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/lib: errors.h netpgpsdk.h

Log Message:
Add __printflike where necessary.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/crypto/external/bsd/netpgp/dist/src/lib/errors.h
cvs rdiff -u -r1.10 -r1.11 \
src/crypto/external/bsd/netpgp/dist/src/lib/netpgpsdk.h

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



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

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

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

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

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



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.



CVS commit: [netbsd-5] src/doc

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

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

Log Message:
tickets 1894 and 1895


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.44 -r1.1.2.45 src/doc/CHANGES-5.3

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



CVS commit: [netbsd-5-2] src/distrib/ews4800mips

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

Modified Files:
src/distrib/ews4800mips [netbsd-5-2]: Makefile

Log Message:
Pull up following revision(s) (requested by apb in ticket #1894):
distrib/ews4800mips/Makefile: revision 1.3
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.46.1 src/distrib/ews4800mips/Makefile

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



CVS commit: [netbsd-5] src/distrib/ews4800mips

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

Modified Files:
src/distrib/ews4800mips [netbsd-5]: Makefile

Log Message:
Pull up following revision(s) (requested by apb in ticket #1894):
distrib/ews4800mips/Makefile: revision 1.3
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.20.1 src/distrib/ews4800mips/Makefile

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



CVS commit: [netbsd-5-1] src/distrib/ews4800mips

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

Modified Files:
src/distrib/ews4800mips [netbsd-5-1]: Makefile

Log Message:
Pull up following revision(s) (requested by apb in ticket #1894):
distrib/ews4800mips/Makefile: revision 1.3
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.28.1 src/distrib/ews4800mips/Makefile

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



CVS commit: [netbsd-5-2] src

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

Modified Files:
src/dist/ntp/ntpd [netbsd-5-2]: ntp_request.c
src/etc [netbsd-5-2]: ntp.conf

Log Message:
etc/ntp.conf1.16, 1.17, 1.18 via patch
external/bsd/ntp/dist/ntpd/ntp_request.cpatch

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]


To generate a diff of this commit:
cvs rdiff -u -r1.8.4.1 -r1.8.4.1.6.1 src/dist/ntp/ntpd/ntp_request.c
cvs rdiff -u -r1.9 -r1.9.36.1 src/etc/ntp.conf

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



CVS commit: [netbsd-5] src

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

Modified Files:
src/dist/ntp/ntpd [netbsd-5]: ntp_request.c
src/etc [netbsd-5]: ntp.conf

Log Message:
etc/ntp.conf1.16, 1.17, 1.18 via patch
external/bsd/ntp/dist/ntpd/ntp_request.cpatch

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]


To generate a diff of this commit:
cvs rdiff -u -r1.8.4.1 -r1.8.4.2 src/dist/ntp/ntpd/ntp_request.c
cvs rdiff -u -r1.9 -r1.9.20.1 src/etc/ntp.conf

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



CVS commit: [netbsd-5-1] src

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

Modified Files:
src/dist/ntp/ntpd [netbsd-5-1]: ntp_request.c
src/etc [netbsd-5-1]: ntp.conf

Log Message:
etc/ntp.conf1.16, 1.17, 1.18 via patch
external/bsd/ntp/dist/ntpd/ntp_request.cpatch

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]


To generate a diff of this commit:
cvs rdiff -u -r1.8.4.1 -r1.8.4.1.2.1 src/dist/ntp/ntpd/ntp_request.c
cvs rdiff -u -r1.9 -r1.9.28.1 src/etc/ntp.conf

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



CVS commit: [netbsd-6-0] src/doc

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

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.4

Log Message:
tickets 1009 and 1010


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

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



CVS commit: [netbsd-6-0] src

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

Modified Files:
src/etc [netbsd-6-0]: ntp.conf
src/external/bsd/ntp/dist/ntpd [netbsd-6-0]: ntp_request.c

Log Message:
etc/ntp.conf1.16, 1.17, 1.18 via patch
external/bsd/ntp/dist/ntpd/ntp_request.cpatch

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 #1010]


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.14.8.1 src/etc/ntp.conf
cvs rdiff -u -r1.7 -r1.7.8.1 src/external/bsd/ntp/dist/ntpd/ntp_request.c

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



CVS commit: [netbsd-6-1] src

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

Modified Files:
src/etc [netbsd-6-1]: ntp.conf
src/external/bsd/ntp/dist/ntpd [netbsd-6-1]: ntp_request.c

Log Message:
etc/ntp.conf1.16, 1.17, 1.18 via patch
external/bsd/ntp/dist/ntpd/ntp_request.cpatch

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 #1010]


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.14.16.1 src/etc/ntp.conf
cvs rdiff -u -r1.7 -r1.7.16.1 src/external/bsd/ntp/dist/ntpd/ntp_request.c

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



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

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

Modified Files:
src/doc [netbsd-6-1]: CHANGES-6.1.3

Log Message:
tickets 1009 and 1010


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

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



CVS commit: [netbsd-6] src/doc

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

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
tickets 1009 and 1010


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.73 -r1.1.2.74 src/doc/CHANGES-6.2

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



CVS commit: [netbsd-6] src

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

Modified Files:
src/etc [netbsd-6]: ntp.conf
src/external/bsd/ntp/dist/ntpd [netbsd-6]: ntp_request.c

Log Message:
etc/ntp.conf1.16, 1.17, 1.18 via patch
external/bsd/ntp/dist/ntpd/ntp_request.cpatch

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 #1010]


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.14.2.1 src/etc/ntp.conf
cvs rdiff -u -r1.7 -r1.7.2.1 src/external/bsd/ntp/dist/ntpd/ntp_request.c

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



CVS commit: [netbsd-6-1] src/distrib/ews4800mips

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

Modified Files:
src/distrib/ews4800mips [netbsd-6-1]: Makefile

Log Message:
Pull up following revision(s) (requested by apb in ticket #1009):
distrib/ews4800mips/Makefile: revision 1.3
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.54.1 src/distrib/ews4800mips/Makefile

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



CVS commit: [netbsd-6-0] src/distrib/ews4800mips

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

Modified Files:
src/distrib/ews4800mips [netbsd-6-0]: Makefile

Log Message:
Pull up following revision(s) (requested by apb in ticket #1009):
distrib/ews4800mips/Makefile: revision 1.3
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.44.1 src/distrib/ews4800mips/Makefile

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



CVS commit: [netbsd-6] src/distrib/ews4800mips

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

Modified Files:
src/distrib/ews4800mips [netbsd-6]: Makefile

Log Message:
Pull up following revision(s) (requested by apb in ticket #1009):
distrib/ews4800mips/Makefile: revision 1.3
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.38.1 src/distrib/ews4800mips/Makefile

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



CVS commit: [netbsd-6] src/doc

2014-01-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Jan  6 18:56:52 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Update ticket #975 entry


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.72 -r1.1.2.73 src/doc/CHANGES-6.2

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



CVS commit: [netbsd-6] src/distrib/sparc/ramdisk

2014-01-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Jan  6 18:55:51 UTC 2014

Modified Files:
src/distrib/sparc/ramdisk [netbsd-6]: Makefile

Log Message:
Apply patch (requested by bad in ticket #975):

Avoid libhack/gethost.c in the ramdisk as nothing needs the functions.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.41.8.1 src/distrib/sparc/ramdisk/Makefile

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



CVS commit: src/tests/lib/libc/net

2014-01-06 Thread Andreas Gustafsson
Module Name:src
Committed By:   gson
Date:   Mon Jan  6 16:42:57 UTC 2014

Modified Files:
src/tests/lib/libc/net: h_dns_server.c

Log Message:
Fix spelling of "daemon".  Pointed out by Thomas Klausner.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/net/h_dns_server.c

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



CVS commit: src

2014-01-06 Thread Andreas Gustafsson
Module Name:src
Committed By:   gson
Date:   Mon Jan  6 14:50:33 UTC 2014

Modified Files:
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/tests: mi
src/tests/lib/libc/net: Makefile t_hostent.sh
Added Files:
src/tests/lib/libc/net: h_dns_server.c

Log Message:
Make t_hostent test cases that query the DNS work on systems with no
Internet connectivity, by hijacking DNS queries and /etc/resolv.conf
accesses using librumphijack and providing a minimal DNS server to
answer the queries.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.553 -r1.554 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.8 -r1.9 src/tests/lib/libc/net/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/net/h_dns_server.c
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/net/t_hostent.sh

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



CVS commit: src/share/man/man9

2014-01-06 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Mon Jan  6 14:57:10 UTC 2014

Modified Files:
src/share/man/man9: cardbus.9

Log Message:
Kill one more trailing space in function argument.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/share/man/man9/cardbus.9

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



CVS commit: src/external/bsd/nvi/dist/vi

2014-01-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan  6 14:21:37 UTC 2014

Modified Files:
src/external/bsd/nvi/dist/vi: v_search.c

Log Message:
PR/48502: M. Levinson: vi(1) no longer moves the cursor when yanking text
using a mark (remove dangling else)


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/vi/v_search.c

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



CVS commit: src

2014-01-06 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Mon Jan  6 13:59:00 UTC 2014

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/libverify: libnetpgpverify.3
src/share/man/man9/man9.i386: bios32_service.9

Log Message:
Remove extra trailing spaces in functions arguments.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/crypto/external/bsd/netpgp/dist/src/libverify/libnetpgpverify.3
cvs rdiff -u -r1.6 -r1.7 src/share/man/man9/man9.i386/bios32_service.9

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



CVS commit: src/share/man/man9lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 13:05:47 UTC 2014

Removed Files:
src/share/man/man9lua: core.9lua

Log Message:
Remove core.9lua, now called systm.9lua.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r0 src/share/man/man9lua/core.9lua

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



CVS commit: src/share/man/man9lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 13:03:01 UTC 2014

Modified Files:
src/share/man/man9lua: intro.9lua

Log Message:
Add xrefs to pmf(9lua) and systm(9lua)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/man/man9lua/intro.9lua

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



CVS commit: src/share/man/man9lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 13:03:33 UTC 2014

Modified Files:
src/share/man/man9lua: core.9lua pmf.9lua systm.9lua

Log Message:
Use more markup. Fix a typo.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man9lua/core.9lua \
src/share/man/man9lua/pmf.9lua src/share/man/man9lua/systm.9lua

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



CVS commit: src/etc

2014-01-06 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Mon Jan  6 11:26:06 UTC 2014

Modified Files:
src/etc: ntp.conf

Log Message:
Another comment change, missed in previous commit.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/etc/ntp.conf

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



CVS commit: src/etc

2014-01-06 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Mon Jan  6 11:25:03 UTC 2014

Modified Files:
src/etc: ntp.conf

Log Message:
Attempt to improve comments about how to choose servers,
and about what "tos minsane" does.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/etc/ntp.conf

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



CVS commit: src/etc

2014-01-06 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Mon Jan  6 11:21:34 UTC 2014

Modified Files:
src/etc: ntp.conf

Log Message:
Add several "restrict" lines to the default ntp.conf, with comments.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/etc/ntp.conf

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



CVS commit: src/distrib/ews4800mips

2014-01-06 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Mon Jan  6 11:03:25 UTC 2014

Modified Files:
src/distrib/ews4800mips: Makefile

Log Message:
Add "cdroms" to the SUBDIR list for src/distrib/ews4800mips.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/distrib/ews4800mips/Makefile

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



CVS commit: src/share/man/man3lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 09:30:26 UTC 2014

Modified Files:
src/share/man/man3lua: sqlite.3lua

Log Message:
Use Fn for functions and Dv for null.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/man/man3lua/sqlite.3lua

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



CVS commit: src/share/man/man3lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 09:25:08 UTC 2014

Modified Files:
src/share/man/man3lua: gpio.3lua

Log Message:
Fix article.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/man/man3lua/gpio.3lua

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



CVS commit: src/share/man/man3lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 09:23:18 UTC 2014

Modified Files:
src/share/man/man3lua: intro.3lua sqlite.3lua syslog.3lua

Log Message:
Use Nx. Remove superfluous Pp. Increase column width to widest entry.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/share/man/man3lua/intro.3lua
cvs rdiff -u -r1.2 -r1.3 src/share/man/man3lua/sqlite.3lua
cvs rdiff -u -r1.1 -r1.2 src/share/man/man3lua/syslog.3lua

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



CVS commit: src/lib/libperfuse

2014-01-06 Thread Emmanuel Dreyfus
Module Name:src
Committed By:   manu
Date:   Mon Jan  6 08:56:34 UTC 2014

Modified Files:
src/lib/libperfuse: ops.c

Log Message:
For filesystems mounted without -o use_ino, readdir is not
able to fetch inode number. We perfom an addtional lookup
on each file to get it.

In that case, do not lookup .. from root, as it breaks
out of the filesystem and hits NULL pointers.


To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/lib/libperfuse/ops.c

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