CVS commit: src/sys/netinet6

2014-10-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Oct 11 20:53:16 UTC 2014

Modified Files:
src/sys/netinet6: in6_pcb.c in6_pcb.h ip6_output.c udp6_output.c

Log Message:
Make IPV4 mapped addresses able to do IPV4 multicast. Fixes needed:

- allow binding to mapped v4 multicast addresses
- define v4moptions, allow setting it via ioctl, pass it to ip_output,
  free it when killing the pcb.

Ideally we would allow the IPV6 multicast setsockopts work on mapped addresses
too, but this is a lot more work and linux does not do it either.


To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 src/sys/netinet6/in6_pcb.c
cvs rdiff -u -r1.39 -r1.40 src/sys/netinet6/in6_pcb.h
cvs rdiff -u -r1.158 -r1.159 src/sys/netinet6/ip6_output.c
cvs rdiff -u -r1.44 -r1.45 src/sys/netinet6/udp6_output.c

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



CVS commit: src/sys/netinet

2014-10-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Oct 11 21:12:51 UTC 2014

Modified Files:
src/sys/netinet: ip_output.c ip_var.h

Log Message:
exposet multicast option functions which are used by the v6 code now.


To generate a diff of this commit:
cvs rdiff -u -r1.230 -r1.231 src/sys/netinet/ip_output.c
cvs rdiff -u -r1.106 -r1.107 src/sys/netinet/ip_var.h

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



CVS commit: src/tests/net

2014-10-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Oct 11 23:04:42 UTC 2014

Modified Files:
src/tests/net: Makefile
Added Files:
src/tests/net/mcast: Makefile t_mcast.c

Log Message:
add a multicast test (what to do with v6?)


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/tests/net/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/net/mcast/Makefile \
src/tests/net/mcast/t_mcast.c

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



CVS commit: src/sys/netinet6

2014-10-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Oct 11 23:07:39 UTC 2014

Modified Files:
src/sys/netinet6: in6_pcb.c

Log Message:
Succeed binding to multicast address for now: Open questions:
Open questions:

http://mail-index.netbsd.org/tech-net/2014/07/23/msg004714.html


To generate a diff of this commit:
cvs rdiff -u -r1.130 -r1.131 src/sys/netinet6/in6_pcb.c

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



CVS commit: src/distrib/sets/lists/tests

2014-10-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Oct 11 23:10:44 UTC 2014

Modified Files:
src/distrib/sets/lists/tests: mi

Log Message:
add multicast tests


To generate a diff of this commit:
cvs rdiff -u -r1.591 -r1.592 src/distrib/sets/lists/tests/mi

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 13:48:26 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
Add the simple unconnected tests too.


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

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 14:53:46 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
Explain a bit more what's going on with the multicast setsockopts.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/net/mcast/t_mcast.c

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 18:56:57 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
now we support the v6 ioctls for mapped addresses too.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/net/mcast/t_mcast.c

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



CVS commit: src/sys

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 19:00:21 UTC 2014

Modified Files:
src/sys/netinet: ip_output.c
src/sys/netinet6: ip6_output.c ip6_var.h

Log Message:
Refactor the multicast membership code so that we can handle v4 mapped
addresses using the v6 membership ioctls.


To generate a diff of this commit:
cvs rdiff -u -r1.231 -r1.232 src/sys/netinet/ip_output.c
cvs rdiff -u -r1.159 -r1.160 src/sys/netinet6/ip6_output.c
cvs rdiff -u -r1.62 -r1.63 src/sys/netinet6/ip6_var.h

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



CVS commit: src/sys

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 19:02:19 UTC 2014

Modified Files:
src/sys/netinet: in.h
src/sys/netinet6: in6.h

Log Message:
document that we depend on the option numbers matching.


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/sys/netinet/in.h
cvs rdiff -u -r1.78 -r1.79 src/sys/netinet6/in6.h

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 19:49:01 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
Explain what works, what does not and why.
Provide compatible code so that it compiles on Linux and MacOS/X with -DTEST.
We should check more OS's and see if they are broken too.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/net/mcast/t_mcast.c

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



CVS commit: src/usr.sbin/rtsold

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 19:53:34 UTC 2014

Modified Files:
src/usr.sbin/rtsold: rtsold.8

Log Message:
Give an example how to use dhcpcd instead of rtsol


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/usr.sbin/rtsold/rtsold.8

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



CVS commit: src/lib/libc/gen

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 22:32:33 UTC 2014

Modified Files:
src/lib/libc/gen: fnmatch.c

Log Message:
Fix fnmatch issues according to POSIX.
http://pubs.opengroup.org/onlinepubs/009695399/utilities/\
xcu_chap02.html#tag_02_13_01
1. A [...] pattern containing a slash is not a pattern; the [ ]'s become regular
   characters
2. A [] or a [!] is not an empty pattern, why would it? The first would never
   match and the second would always match which makes it equivalent to ?
   In those cases the ] is taken as a literal character and does not have
   special meaning.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/lib/libc/gen/fnmatch.c

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/gen

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 12 22:33:41 UTC 2014

Modified Files:
src/tests/lib/libc/gen: t_fnmatch.c

Log Message:
You need double the number of backslashes in a pattern, since \\ -> '\' in
the string which means escape. Now the tests don't fail.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/lib/libc/gen/t_fnmatch.c

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



CVS commit: src/lib/libc/stdio

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 13 00:40:36 UTC 2014

Modified Files:
src/lib/libc/stdio: Makefile.inc
Added Files:
src/lib/libc/stdio: open_memstream.3 open_memstream.c open_wmemstream.c

Log Message:
PR/49279: Justin Cormack: add open_memstream


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/lib/libc/stdio/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/lib/libc/stdio/open_memstream.3 \
src/lib/libc/stdio/open_memstream.c src/lib/libc/stdio/open_wmemstream.c

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



CVS commit: src/lib/libc

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 13 00:40:57 UTC 2014

Modified Files:
src/lib/libc: shlib_version

Log Message:
bump for open_{,w}memstream.


To generate a diff of this commit:
cvs rdiff -u -r1.256 -r1.257 src/lib/libc/shlib_version

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



CVS commit: src/distrib/sets/lists

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 13 00:46:28 UTC 2014

Modified Files:
src/distrib/sets/lists/base: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.sparc64 shl.mi
src/distrib/sets/lists/comp: mi
src/distrib/sets/lists/debug: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.sparc64 shl.mi

Log Message:
bump libc and add man pages for open_{,w}memstream


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/distrib/sets/lists/base/ad.aarch64
cvs rdiff -u -r1.58 -r1.59 src/distrib/sets/lists/base/ad.arm
cvs rdiff -u -r1.53 -r1.54 src/distrib/sets/lists/base/ad.mips
cvs rdiff -u -r1.22 -r1.23 src/distrib/sets/lists/base/ad.powerpc
cvs rdiff -u -r1.5 -r1.6 src/distrib/sets/lists/base/ad.riscv
cvs rdiff -u -r1.249 -r1.250 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.237 -r1.238 src/distrib/sets/lists/base/md.sparc64
cvs rdiff -u -r1.718 -r1.719 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.1916 -r1.1917 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.8 -r1.9 src/distrib/sets/lists/debug/ad.aarch64
cvs rdiff -u -r1.47 -r1.48 src/distrib/sets/lists/debug/ad.arm
cvs rdiff -u -r1.43 -r1.44 src/distrib/sets/lists/debug/ad.mips
cvs rdiff -u -r1.23 -r1.24 src/distrib/sets/lists/debug/ad.powerpc
cvs rdiff -u -r1.5 -r1.6 src/distrib/sets/lists/debug/ad.riscv
cvs rdiff -u -r1.67 -r1.68 src/distrib/sets/lists/debug/md.amd64
cvs rdiff -u -r1.66 -r1.67 src/distrib/sets/lists/debug/md.sparc64
cvs rdiff -u -r1.77 -r1.78 src/distrib/sets/lists/debug/shl.mi

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



CVS commit: src/include

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 13 00:47:03 UTC 2014

Modified Files:
src/include: stdio.h wchar.h

Log Message:
add open_{,w}memstream


To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 src/include/stdio.h
cvs rdiff -u -r1.40 -r1.41 src/include/wchar.h

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 13 04:56:26 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
Oops need to bind, also make the message more interesting and check that
it arrives correctly.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/net/mcast/t_mcast.c

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 13 04:57:11 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
typo


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/net/mcast/t_mcast.c

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



CVS commit: src/sys/dev/ppbus

2014-10-13 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 14 01:04:39 UTC 2014

Modified Files:
src/sys/dev/ppbus: ppbus_base.c

Log Message:
PR/49281: John D. Baker: fix debugging format
XXX: pullup 7


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/ppbus/ppbus_base.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-10-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 14 16:15:18 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh/dist: auth.c

Log Message:
for consistency use options.use_dns when getting the canonical hostname.
[we do the same below for hosts.allow and deny] reported by rudolf.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/crypto/external/bsd/openssh/dist/auth.c

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



CVS commit: src/usr.sbin/sysinst

2014-10-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 14 16:35:20 UTC 2014

Modified Files:
src/usr.sbin/sysinst: defs.h main.c net.c run.c util.c

Log Message:
Don't use asctime(localtime(time_t *)) because this is really ctime(time_t *)
and not checking the result of localtime can lead to tears.
Add a safectime() that always returns a good string, and add some debugging
so that we can see if there is indeed something wrong in the new libc time
code.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/sysinst/defs.h \
src/usr.sbin/sysinst/util.c
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/sysinst/main.c
cvs rdiff -u -r1.16 -r1.17 src/usr.sbin/sysinst/net.c
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/sysinst/run.c

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



CVS commit: src/sys/dev/acpi

2014-10-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 14 19:50:57 UTC 2014

Modified Files:
src/sys/dev/acpi: acpi_display.c

Log Message:
summarize levels instead of printing dozens of them.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/acpi/acpi_display.c

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



CVS commit: src/lib/libc/time

2014-10-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 14 20:35:40 UTC 2014

Modified Files:
src/lib/libc/time: localtime.c

Log Message:
improve error checking (setting errno)


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/lib/libc/time/localtime.c

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



CVS commit: src/etc/rc.d

2014-10-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 14 20:49:47 UTC 2014

Modified Files:
src/etc/rc.d: network

Log Message:
fix syntax error


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/etc/rc.d/network

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



CVS commit: src/bin/sh

2014-10-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 15 14:54:25 UTC 2014

Modified Files:
src/bin/sh: redir.c

Log Message:
PR/48201: Miwa Susumu: Fix set -C (no clobber) for POSIX; from FreeBSD
Can't use O_EXCL because of device nodes; also truncate.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/bin/sh/redir.c

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



CVS commit: src/sys

2014-10-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 15 15:00:03 UTC 2014

Modified Files:
src/sys/fs/ptyfs: ptyfs_subr.c ptyfs_vfsops.c
src/sys/kern: tty_ptm.c
src/sys/sys: pty.h

Log Message:
>From Ilia Zykov:
- correct some incorrect comments
- add XXX warning
- increase security by activating when get the slave
- make pty_vn_open() private to tty_ptm.c


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/fs/ptyfs/ptyfs_subr.c
cvs rdiff -u -r1.53 -r1.54 src/sys/fs/ptyfs/ptyfs_vfsops.c
cvs rdiff -u -r1.34 -r1.35 src/sys/kern/tty_ptm.c
cvs rdiff -u -r1.10 -r1.11 src/sys/sys/pty.h

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



CVS commit: src/lib/libc/time

2014-10-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 15 15:13:45 UTC 2014

Modified Files:
src/lib/libc/time: localtime.c

Log Message:
PR/49284: Andreas Gustafsson: sysinst segfaults when configuring network
manually. When tzload() fails called from zoneinit(), when trying to set the
local timezone for the first time in tzsetlcl(), we end up with a lclptr
that contains garbage, so settzname() core-dumps.

Thanks Andreas for the analysis!


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/lib/libc/time/localtime.c

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer

2014-10-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 15 18:44:50 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/asan:
asan_intercepted_functions.h asan_internal.h asan_linux.cc
asan_malloc_linux.cc asan_posix.cc
src/external/gpl3/gcc/dist/libsanitizer/interception: interception.h
interception_linux.cc interception_linux.h
interception_type_test.cc
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_common_interceptors.inc

Log Message:
make this compile, pretending a lot that we are linux.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_intercepted_functions.h \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_internal.h \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_linux.cc \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_malloc_linux.cc \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_posix.cc
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libsanitizer/interception/interception.h \
src/external/gpl3/gcc/dist/libsanitizer/interception/interception_linux.cc \
src/external/gpl3/gcc/dist/libsanitizer/interception/interception_linux.h \

src/external/gpl3/gcc/dist/libsanitizer/interception/interception_type_test.cc
cvs rdiff -u -r1.1.1.1 -r1.2 \

src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_common_interceptors.inc

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 15 19:20:29 UTC 2014

Added Files:
src/external/gpl3/gcc/lib/libasan: Makefile

Log Message:
NB this does not work yet, it is a work in progress.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libasan/Makefile

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



CVS commit: src/lib/libc/time

2014-10-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 16 17:53:32 UTC 2014

Modified Files:
src/lib/libc/time: localtime.c

Log Message:
- don't leak errno in mktime()
- when we load a new timezone, don't change anything unless the load succeeded.


To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 src/lib/libc/time/localtime.c

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



CVS import: src/external/bsd/wpa/dist

2014-10-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 16 19:16:13 UTC 2014

Update of /cvsroot/src/external/bsd/wpa/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv322

Log Message:
Import wpa_supplicant and hostapd

Status:

Vendor Tag: MALINEN
Release Tags:   v2_3

U src/external/bsd/wpa/dist/COPYING
N src/external/bsd/wpa/dist/CONTRIBUTIONS
U src/external/bsd/wpa/dist/README
U src/external/bsd/wpa/dist/wpa_supplicant/main_winsvc.c
U src/external/bsd/wpa/dist/wpa_supplicant/wpas_glue.c
U src/external/bsd/wpa/dist/wpa_supplicant/autoscan_periodic.c
U src/external/bsd/wpa/dist/wpa_supplicant/win_if_list.c
U src/external/bsd/wpa/dist/wpa_supplicant/bgscan_learn.c
U src/external/bsd/wpa/dist/wpa_supplicant/ibss_rsn.h
U src/external/bsd/wpa/dist/wpa_supplicant/README-HS20
U src/external/bsd/wpa/dist/wpa_supplicant/wpas_glue.h
U src/external/bsd/wpa/dist/wpa_supplicant/bgscan_simple.c
U src/external/bsd/wpa/dist/wpa_supplicant/nmake.mak
U src/external/bsd/wpa/dist/wpa_supplicant/gas_query.c
U src/external/bsd/wpa/dist/wpa_supplicant/eapol_test.c
U src/external/bsd/wpa/dist/wpa_supplicant/main.c
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_supplicant.conf
U src/external/bsd/wpa/dist/wpa_supplicant/wifi_display.h
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_supplicant.c
U src/external/bsd/wpa/dist/wpa_supplicant/ibss_rsn.c
U src/external/bsd/wpa/dist/wpa_supplicant/bss.h
U src/external/bsd/wpa/dist/wpa_supplicant/p2p_supplicant.c
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_passphrase.c
U src/external/bsd/wpa/dist/wpa_supplicant/eap_testing.txt
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_supplicant_conf.mk
U src/external/bsd/wpa/dist/wpa_supplicant/notify.c
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_supplicant_i.h
U src/external/bsd/wpa/dist/wpa_supplicant/blacklist.c
U src/external/bsd/wpa/dist/wpa_supplicant/blacklist.h
U src/external/bsd/wpa/dist/wpa_supplicant/ctrl_iface_named_pipe.c
U src/external/bsd/wpa/dist/wpa_supplicant/README-Windows.txt
U src/external/bsd/wpa/dist/wpa_supplicant/config_none.c
U src/external/bsd/wpa/dist/wpa_supplicant/defconfig
U src/external/bsd/wpa/dist/wpa_supplicant/ap.h
U src/external/bsd/wpa/dist/wpa_supplicant/ctrl_iface_unix.c
U src/external/bsd/wpa/dist/wpa_supplicant/hs20_supplicant.h
U src/external/bsd/wpa/dist/wpa_supplicant/main_winmain.c
U src/external/bsd/wpa/dist/wpa_supplicant/ctrl_iface.c
U src/external/bsd/wpa/dist/wpa_supplicant/scan.c
U src/external/bsd/wpa/dist/wpa_supplicant/config_ssid.h
U src/external/bsd/wpa/dist/wpa_supplicant/ChangeLog
N src/external/bsd/wpa/dist/wpa_supplicant/eap_proxy_dummy.mk
U src/external/bsd/wpa/dist/wpa_supplicant/README-WPS
U src/external/bsd/wpa/dist/wpa_supplicant/config_winreg.c
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_priv.c
U src/external/bsd/wpa/dist/wpa_supplicant/driver_i.h
U src/external/bsd/wpa/dist/wpa_supplicant/todo.txt
U src/external/bsd/wpa/dist/wpa_supplicant/Makefile
U src/external/bsd/wpa/dist/wpa_supplicant/autoscan.h
U src/external/bsd/wpa/dist/wpa_supplicant/wpa_supplicant_conf.sh
U src/external/bsd/wpa/dist/wpa_supplicant/interworking.c
U src/external/bsd/wpa/dist/wpa_supplicant/wnm_sta.c
U src/external/bsd/wpa/dist/wpa_supplicant/ap.c
N src/external/bsd/wpa/dist/wpa_supplicant/wpas_kay.h
U src/external/bsd/wpa/dist/wpa_supplicant/notify.h
U src/external/bsd/wpa/dist/wpa_supplicant/wps_supplicant.h
U src/external/bsd/wpa/dist/wpa_supplicant/Android.mk
U src/external/bsd/wpa/dist/wpa_supplicant/nfc_pw_token.c
U src/external/bsd/wpa/dist/wpa_supplicant/bss.c
U src/external/bsd/wpa/dist/wpa_supplicant/autoscan_exponential.c
N src/external/bsd/wpa/dist/wpa_supplicant/eap_proxy_dummy.mak
U src/external/bsd/wpa/dist/wpa_supplicant/README-P2P
U src/external/bsd/wpa/dist/wpa_supplicant/config.h
U src/external/bsd/wpa/dist/wpa_supplicant/wifi_display.c
U src/external/bsd/wpa/dist/wpa_supplicant/p2p_supplicant.h
C src/external/bsd/wpa/dist/wpa_supplicant/wpa_cli.c
U src/external/bsd/wpa/dist/wpa_supplicant/wps_supplicant.c
U src/external/bsd/wpa/dist/wpa_supplicant/eap_register.c
U src/external/bsd/wpa/dist/wpa_supplicant/config.c
U src/external/bsd/wpa/dist/wpa_supplicant/events.c
U src/external/bsd/wpa/dist/wpa_supplicant/offchannel.h
U src/external/bsd/wpa/dist/wpa_supplicant/.gitignore
U src/external/bsd/wpa/dist/wpa_supplicant/preauth_test.c
U src/external/bsd/wpa/dist/wpa_supplicant/bgscan.h
U src/external/bsd/wpa/dist/wpa_supplicant/interworking.h
U src/external/bsd/wpa/dist/wpa_supplicant/win_example.reg
U src/external/bsd/wpa/dist/wpa_supplicant/offchannel.c
U src/external/bsd/wpa/dist/wpa_supplicant/autoscan.c
U src/external/bsd/wpa/dist/wpa_supplicant/README
U src/external/bsd/wpa/dist/wpa_supplicant/sme.h
U src/external/bsd/wpa/dist/wpa_supplicant/bgscan.c
U src/external/bsd/wpa/dist/wpa_supplicant/config_file.c
U src/external/bsd/wpa/dist/wpa_supplicant/sme.c
U src/external/bsd/wpa/dist/wpa_supplicant/android.config
U src/external/bsd/wpa/dist/wpa_sup

CVS commit: src/external/bsd/wpa

2014-10-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 16 19:29:30 UTC 2014

Modified Files:
src/external/bsd/wpa/bin/hostapd: Makefile
src/external/bsd/wpa/bin/wpa_supplicant: Makefile
src/external/bsd/wpa/dist/hostapd: hostapd_cli.c
src/external/bsd/wpa/dist/src/ap: wpa_auth.c
src/external/bsd/wpa/dist/src/drivers: driver_bsd.c driver_test.c
src/external/bsd/wpa/dist/src/eap_server: eap_server_tls_common.c
src/external/bsd/wpa/dist/src/radius: radius_das.c
src/external/bsd/wpa/dist/src/utils: eloop.c os.h radiotap.h
src/external/bsd/wpa/dist/wpa_supplicant: wpa_cli.c
Removed Files:
src/external/bsd/wpa/dist/hostapd: dump_state.c dump_state.h
src/external/bsd/wpa/dist/patches: openssl-0.9.8-tls-extensions.patch
openssl-0.9.8d-tls-extensions.patch
openssl-0.9.8e-tls-extensions.patch
openssl-0.9.8g-tls-extensions.patch
openssl-0.9.8h-tls-extensions.patch
openssl-0.9.8i-tls-extensions.patch
openssl-0.9.8x-tls-extensions.patch
openssl-0.9.9-session-ticket.patch
src/external/bsd/wpa/dist/src/crypto: fips_prf_cryptoapi.c
fips_prf_gnutls.c fips_prf_nss.c
src/external/bsd/wpa/dist/src/utils: eloop_none.c

Log Message:
merge conflicts.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/wpa/bin/hostapd/Makefile
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/wpa/bin/wpa_supplicant/Makefile
cvs rdiff -u -r1.1.1.3 -r0 src/external/bsd/wpa/dist/hostapd/dump_state.c
cvs rdiff -u -r1.1.1.2 -r0 src/external/bsd/wpa/dist/hostapd/dump_state.h
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/wpa/dist/hostapd/hostapd_cli.c
cvs rdiff -u -r1.1.1.1 -r0 \
src/external/bsd/wpa/dist/patches/openssl-0.9.8-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.8d-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.8e-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.8g-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.8h-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.8i-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.8x-tls-extensions.patch \
src/external/bsd/wpa/dist/patches/openssl-0.9.9-session-ticket.patch
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/wpa/dist/src/ap/wpa_auth.c
cvs rdiff -u -r1.1.1.2 -r0 \
src/external/bsd/wpa/dist/src/crypto/fips_prf_cryptoapi.c \
src/external/bsd/wpa/dist/src/crypto/fips_prf_gnutls.c \
src/external/bsd/wpa/dist/src/crypto/fips_prf_nss.c
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/wpa/dist/src/drivers/driver_bsd.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/drivers/driver_test.c
cvs rdiff -u -r1.4 -r1.5 \
src/external/bsd/wpa/dist/src/eap_server/eap_server_tls_common.c
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/wpa/dist/src/radius/radius_das.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/utils/eloop.c \
src/external/bsd/wpa/dist/src/utils/os.h
cvs rdiff -u -r1.1.1.2 -r0 src/external/bsd/wpa/dist/src/utils/eloop_none.c
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/wpa/dist/src/utils/radiotap.h
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/wpa_supplicant/wpa_cli.c

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



CVS commit: src/doc

2014-10-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 16 19:31:38 UTC 2014

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
new wpa code.


To generate a diff of this commit:
cvs rdiff -u -r1.1157 -r1.1158 src/doc/3RDPARTY
cvs rdiff -u -r1.1991 -r1.1992 src/doc/CHANGES

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



CVS commit: src/external/bsd/wpa/dist/src/utils

2014-10-16 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 17 02:57:42 UTC 2014

Modified Files:
src/external/bsd/wpa/dist/src/utils: os_unix.c

Log Message:
avoid variable array allocation that gcc can't figure out.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 src/external/bsd/wpa/dist/src/utils/os_unix.c

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



CVS commit: src/sys/arch/xen/xen

2014-10-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 17 16:37:02 UTC 2014

Modified Files:
src/sys/arch/xen/xen: privcmd.c

Log Message:
now that privcmd_map_obj cleans up correctly, don't double free...


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/arch/xen/xen/privcmd.c

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



CVS commit: src/sys/miscfs/procfs

2014-10-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 17 20:49:22 UTC 2014

Modified Files:
src/sys/miscfs/procfs: procfs_map.c

Log Message:
Maps don't change that frequently between reads, so don't give up and
do what linux does (support reading from an offset).


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/miscfs/procfs/procfs_map.c

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer

2014-10-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 17 21:44:47 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/asan: asan_rtl.cc
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_platform_limits_posix.cc sanitizer_posix.cc
sanitizer_procmaps.h sanitizer_symbolizer_linux.cc
Added Files:
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_netbsd.cc

Log Message:
more fixes: builds and runs now, but coredumps after stackgap mprotect (mmap)


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_rtl.cc
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc
cvs rdiff -u -r1.1.1.1 -r1.2 \

src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
 \
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_posix.cc 
\

src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_procmaps.h \

src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_symbolizer_linux.cc

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 17 21:48:17 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libasan: Makefile

Log Message:
add some missing sources.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl3/gcc/lib/libasan/Makefile

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



CVS commit: src/usr.bin/col

2014-10-18 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Oct 18 14:56:14 UTC 2014

Modified Files:
src/usr.bin/col: col.c

Log Message:
PR/49291: Henning Petersen: Problem with half-line feeds in input stream.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.bin/col/col.c

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



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

2014-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 19 16:28:40 UTC 2014

Update of /cvsroot/src/crypto/external/bsd/openssh/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv3513

Log Message:
Changes since OpenSSH 6.6
=

Potentially-incompatible changes

 * sshd(8): The default set of ciphers and MACs has been altered to
   remove unsafe algorithms. In particular, CBC ciphers and arcfour*
   are disabled by default.

   The full set of algorithms remains available if configured
   explicitly via the Ciphers and MACs sshd_config options.

 * sshd(8): Support for tcpwrappers/libwrap has been removed.

 * OpenSSH 6.5 and 6.6 have a bug that causes ~0.2% of connections
   using the curve25519-sha...@libssh.org KEX exchange method to fail
   when connecting with something that implements the specification
   correctly. OpenSSH 6.7 disables this KEX method when speaking to
   one of the affected versions.

New Features

 * Major internal refactoring to begin to make part of OpenSSH usable
   as a library. So far the wire parsing, key handling and KRL code
   has been refactored. Please note that we do not consider the API
   stable yet, nor do we offer the library in separable form.

 * ssh(1), sshd(8): Add support for Unix domain socket forwarding.
   A remote TCP port may be forwarded to a local Unix domain socket
   and vice versa or both ends may be a Unix domain socket.

 * ssh(1), ssh-keygen(1): Add support for SSHFP DNS records for
   ED25519 key types.

 * sftp(1): Allow resumption of interrupted uploads.

 * ssh(1): When rekeying, skip file/DNS lookups of the hostkey if it
   is the same as the one sent during initial key exchange; bz#2154

 * sshd(8): Allow explicit ::1 and 127.0.0.1 forwarding bind
   addresses when GatewayPorts=no; allows client to choose address
   family; bz#

 * sshd(8): Add a sshd_config PermitUserRC option to control whether
   ~/.ssh/rc is executed, mirroring the no-user-rc authorized_keys
   option; bz#2160

 * ssh(1): Add a %C escape sequence for LocalCommand and ControlPath
   that expands to a unique identifer based on a hash of the tuple of
   (local host, remote user, hostname, port). Helps avoid exceeding
   miserly pathname limits for Unix domain sockets in multiplexing
   control paths; bz#2220

 * sshd(8): Make the "Too many authentication failures" message
   include the user, source address, port and protocol in a format
   similar to the authentication success / failure messages; bz#2199

 * Added unit and fuzz tests for refactored code. These are run
   automatically in portable OpenSSH via the "make tests" target.

Bugfixes

 * sshd(8): Fix remote forwarding with the same listen port but
   different listen address.

 * ssh(1): Fix inverted test that caused PKCS#11 keys that were
   explicitly listed in ssh_config or on the commandline not to be
   preferred.

 * ssh-keygen(1): Fix bug in KRL generation: multiple consecutive
   revoked certificate serial number ranges could be serialised to an
   invalid format. Readers of a broken KRL caused by this bug will
   fail closed, so no should-have-been-revoked key will be accepted.

 * ssh(1): Reflect stdio-forward ("ssh -W host:port ...") failures in
   exit status. Previously we were always returning 0; bz#2255

 * ssh(1), ssh-keygen(1): Make Ed25519 keys' title fit properly in the
   randomart border; bz#2247

 * ssh-agent(1): Only cleanup agent socket in the main agent process
   and not in any subprocesses it may have started (e.g. forked
   askpass). Fixes agent sockets being zapped when askpass processes
   fatal(); bz#2236

 * ssh-add(1): Make stdout line-buffered; saves partial output getting
   lost when ssh-add fatal()s part-way through (e.g. when listing keys
   from an agent that supports key types that ssh-add doesn't);
   bz#2234

 * ssh-keygen(1): When hashing or removing hosts, don't choke on
   @revoked markers and don't remove @cert-authority markers; bz#2241

 * ssh(1): Don't fatal when hostname canonicalisation fails and a
   ProxyCommand is in use; continue and allow the ProxyCommand to
   connect anyway (e.g. to a host with a name outside the DNS behind
   a bastion)

 * scp(1): When copying local->remote fails during read, don't send
   uninitialised heap to the remote end.

 * sftp(1): Fix fatal "el_insertstr failed" errors when tab-completing
   filenames with  a single quote char somewhere in the string;
   bz#2238

 * ssh-keyscan(1): Scan for Ed25519 keys by default.

 * ssh(1): When using VerifyHostKeyDNS with a DNSSEC resolver, down-
   convert any certificate keys to plain keys and attempt SSHFP
   resolution.  Prevents a server from skipping SSHFP lookup and
   forcing a new-hostkey dialog by offering only certificate keys.
 
 * sshd(8): Avoid crash at exit via NULL pointer reference; bz#2225

 * Fix some strict-alignment errors.

Portable OpenSSH

 * Portable OpenSSH now supports building against libressl-portable.

 * Portable OpenSSH

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

2014-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 19 16:30:59 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh: Makefile.inc
src/crypto/external/bsd/openssh/bin: Makefile.inc
src/crypto/external/bsd/openssh/bin/sshd: Makefile
src/crypto/external/bsd/openssh/dist: LICENCE OVERVIEW PROTOCOL
PROTOCOL.agent PROTOCOL.certkeys PROTOCOL.mux README addrmatch.c
atomicio.c atomicio.h auth-bsdauth.c auth-chall.c auth-krb5.c
auth-options.c auth-options.h auth-pam.c auth-pam.h auth-passwd.c
auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth-skey.c auth.c auth.h
auth1.c auth2-chall.c auth2-gss.c auth2-hostbased.c auth2-kbdint.c
auth2-krb5.c auth2-none.c auth2-passwd.c auth2-pubkey.c auth2.c
authfd.c authfd.h authfile.c authfile.h blocks.c bufaux.c bufbn.c
bufec.c buffer.c buffer.h canohost.c canohost.h chacha.c channels.c
channels.h cipher-3des1.c cipher-bf1.c cipher-chachapoly.c
cipher-ctr-mt.c cipher.c cipher.h cleanup.c clientloop.c
clientloop.h compat.c compat.h compress.c compress.h crc32.c
crc32.h deattack.c deattack.h dh.c dh.h digest-libc.c
digest-openssl.c dispatch.c dispatch.h dns.c dns.h ed25519.c
fatal.c fe25519.c fmt_scaled.c fmt_scaled.h ge25519.c getpeereid.c
getpeereid.h getrrsetbyname.c getrrsetbyname.h groupaccess.c
groupaccess.h gss-genr.c gss-serv-krb5.c gss-serv.c hash.c hmac.c
hostfile.c hostfile.h includes.h kex.c kex.h kexc25519.c
kexc25519c.c kexc25519s.c kexdh.c kexdhc.c kexdhs.c kexecdh.c
kexecdhc.c kexecdhs.c kexgex.c kexgexc.c kexgexs.c key.c key.h
krl.c ldapauth.c ldapauth.h log.c log.h mac.c mac.h match.c match.h
md-sha256.c misc.c misc.h moduli moduli.5 moduli.c monitor.c
monitor.h monitor_fdpass.c monitor_fdpass.h monitor_mm.c
monitor_mm.h monitor_wrap.c monitor_wrap.h msg.c msg.h mux.c
myproposal.h namespace.h nchan.c nchan.ms nchan2.ms openssh2netbsd
packet.c packet.h pathnames.h pkcs11.h poly1305.c progressmeter.c
progressmeter.h random.h readconf.c readconf.h readpass.c
readpassphrase.3 readpassphrase.c readpassphrase.h roaming.h
roaming_client.c roaming_common.c roaming_dummy.c roaming_serv.c
rsa.c rsa.h sandbox-rlimit.c sc25519.c scp.1 scp.c servconf.c
servconf.h serverloop.c serverloop.h session.c session.h
sftp-client.c sftp-client.h sftp-common.c sftp-common.h sftp-glob.c
sftp-server-main.c sftp-server.8 sftp-server.c sftp.1 sftp.c sftp.h
smult_curve25519_ref.c ssh-add.1 ssh-add.c ssh-agent.1 ssh-agent.c
ssh-dss.c ssh-ecdsa.c ssh-ed25519.c ssh-gss.h ssh-keygen.1
ssh-keygen.c ssh-keyscan.1 ssh-keyscan.c ssh-keysign.8
ssh-keysign.c ssh-pkcs11-client.c ssh-pkcs11-helper.8
ssh-pkcs11-helper.c ssh-pkcs11.c ssh-pkcs11.h ssh-rsa.c ssh.1 ssh.c
ssh.h ssh1.h ssh2.h ssh_config ssh_config.5 sshbuf-getput-basic.c
sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c sshbuf.h sshconnect.c
sshconnect.h sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config
sshd_config.5 ssherr.c sshkey.c sshlogin.c sshlogin.h sshpty.c
sshpty.h sshtty.c strtonum.c ttymodes.c ttymodes.h uidswap.c
uidswap.h umac.c umac.h uuencode.c uuencode.h verify.c version.h
xmalloc.c xmalloc.h
src/crypto/external/bsd/openssh/lib: Makefile shlib_version
Removed Files:
src/crypto/external/bsd/openssh/dist: auth2-jpake.c jpake.c jpake.h
schnorr.c schnorr.h

Log Message:
merge openssh-6.7


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/crypto/external/bsd/openssh/Makefile.inc
cvs rdiff -u -r1.2 -r1.3 src/crypto/external/bsd/openssh/bin/Makefile.inc
cvs rdiff -u -r1.9 -r1.10 src/crypto/external/bsd/openssh/bin/sshd/Makefile
cvs rdiff -u -r1.2 -r1.3 src/crypto/external/bsd/openssh/dist/LICENCE \
src/crypto/external/bsd/openssh/dist/OVERVIEW \
src/crypto/external/bsd/openssh/dist/README \
src/crypto/external/bsd/openssh/dist/auth-bsdauth.c \
src/crypto/external/bsd/openssh/dist/auth-pam.h \
src/crypto/external/bsd/openssh/dist/auth-passwd.c \
src/crypto/external/bsd/openssh/dist/auth2-krb5.c \
src/crypto/external/bsd/openssh/dist/cleanup.c \
src/crypto/external/bsd/openssh/dist/compress.h \
src/crypto/external/bsd/openssh/dist/crc32.c \
src/crypto/external/bsd/openssh/dist/crc32.h \
src/crypto/external/bsd/openssh/dist/deattack.c \
src/crypto/external/bsd/openssh/dist/deattack.h \
src/crypto/external/bsd/openssh/dist/dh.h \
src/crypto/external/bsd/openssh/dist/dispatch.c \
src/crypto/external/bsd/openssh/dist/dispatch.h \
src/crypto/external/bsd/openssh/dist/fatal

CVS commit: src/etc/rc.d

2014-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 19 16:33:01 UTC 2014

Modified Files:
src/etc/rc.d: sshd

Log Message:
Add new keytype, replace duplicated code with loop


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/etc/rc.d/sshd

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



CVS commit: src/doc

2014-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 19 16:38:21 UTC 2014

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
new OpenSSH


To generate a diff of this commit:
cvs rdiff -u -r1.1159 -r1.1160 src/doc/3RDPARTY
cvs rdiff -u -r1.1993 -r1.1994 src/doc/CHANGES

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



CVS commit: src/distrib/sets/lists

2014-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 19 16:35:09 UTC 2014

Modified Files:
src/distrib/sets/lists/base: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.sparc64 shl.mi
src/distrib/sets/lists/debug: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.sparc64 shl.mi

Log Message:
bump libssh


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/distrib/sets/lists/base/ad.aarch64
cvs rdiff -u -r1.59 -r1.60 src/distrib/sets/lists/base/ad.arm
cvs rdiff -u -r1.54 -r1.55 src/distrib/sets/lists/base/ad.mips
cvs rdiff -u -r1.23 -r1.24 src/distrib/sets/lists/base/ad.powerpc
cvs rdiff -u -r1.6 -r1.7 src/distrib/sets/lists/base/ad.riscv
cvs rdiff -u -r1.250 -r1.251 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.238 -r1.239 src/distrib/sets/lists/base/md.sparc64
cvs rdiff -u -r1.719 -r1.720 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.9 -r1.10 src/distrib/sets/lists/debug/ad.aarch64
cvs rdiff -u -r1.48 -r1.49 src/distrib/sets/lists/debug/ad.arm
cvs rdiff -u -r1.44 -r1.45 src/distrib/sets/lists/debug/ad.mips
cvs rdiff -u -r1.24 -r1.25 src/distrib/sets/lists/debug/ad.powerpc
cvs rdiff -u -r1.6 -r1.7 src/distrib/sets/lists/debug/ad.riscv
cvs rdiff -u -r1.68 -r1.69 src/distrib/sets/lists/debug/md.amd64
cvs rdiff -u -r1.67 -r1.68 src/distrib/sets/lists/debug/md.sparc64
cvs rdiff -u -r1.78 -r1.79 src/distrib/sets/lists/debug/shl.mi

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-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 19 16:31:47 UTC 2014

Added Files:
src/crypto/external/bsd/openssh/dist: bcrypt_pbkdf.c blf.h blowfish.c

Log Message:
add new files


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/crypto/external/bsd/openssh/dist/bcrypt_pbkdf.c \
src/crypto/external/bsd/openssh/dist/blf.h \
src/crypto/external/bsd/openssh/dist/blowfish.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

2014-10-19 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 03:05:13 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh/dist: auth.h compat.c mac.c
monitor_wrap.c monitor_wrap.h packet.c sshconnect2.c umac.c
src/crypto/external/bsd/openssh/lib: Makefile
Added Files:
src/crypto/external/bsd/openssh/dist: umac128.c

Log Message:
- remove some more jpake remnants.
- try to fix umac; probably still broken on hosts that require strict
  alignment, but it is still a start.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/crypto/external/bsd/openssh/dist/auth.h
cvs rdiff -u -r1.7 -r1.8 src/crypto/external/bsd/openssh/dist/compat.c
cvs rdiff -u -r1.9 -r1.10 src/crypto/external/bsd/openssh/dist/mac.c \
src/crypto/external/bsd/openssh/dist/monitor_wrap.c
cvs rdiff -u -r1.6 -r1.7 src/crypto/external/bsd/openssh/dist/monitor_wrap.h
cvs rdiff -u -r1.13 -r1.14 src/crypto/external/bsd/openssh/dist/packet.c
cvs rdiff -u -r1.16 -r1.17 src/crypto/external/bsd/openssh/dist/sshconnect2.c
cvs rdiff -u -r1.5 -r1.6 src/crypto/external/bsd/openssh/dist/umac.c
cvs rdiff -u -r0 -r1.1 src/crypto/external/bsd/openssh/dist/umac128.c
cvs rdiff -u -r1.14 -r1.15 src/crypto/external/bsd/openssh/lib/Makefile

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



CVS commit: src/sys/ufs/chfs

2014-10-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 11:57:05 UTC 2014

Modified Files:
src/sys/ufs/chfs: chfs_vfsops.c

Log Message:
simplify.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/ufs/chfs/chfs_vfsops.c

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



CVS commit: src/sys/compat/common

2014-10-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 11:58:01 UTC 2014

Modified Files:
src/sys/compat/common: vfs_syscalls_30.c

Log Message:
simplify


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/compat/common/vfs_syscalls_30.c

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



CVS commit: src/distrib/sets/lists

2014-10-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 14:55:03 UTC 2014

Modified Files:
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/tests: mi

Log Message:
t_mcast is not a rump test (but should be).


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.594 -r1.595 src/distrib/sets/lists/tests/mi

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-10-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 18:14:37 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh/dist: myproposal.h sshconnect2.c

Log Message:
re-enable the none cipher, now that it has been tested.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/crypto/external/bsd/openssh/dist/myproposal.h
cvs rdiff -u -r1.17 -r1.18 src/crypto/external/bsd/openssh/dist/sshconnect2.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/file/dist

2014-10-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 21:48:57 UTC 2014

Modified Files:
src/external/bsd/file/dist: ChangeLog configure.ac
src/external/bsd/file/dist/magic/magdir: elf pgp
src/external/bsd/file/dist/src: apprentice.c file.c file.h fsmagic.c
readelf.c

Log Message:
sync with head of upstream to fix MacOS/X compilation and more.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.9 -r1.2 src/external/bsd/file/dist/ChangeLog
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/configure.ac
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/file/dist/magic/magdir/elf
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/file/dist/magic/magdir/pgp
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/file/dist/src/apprentice.c \
src/external/bsd/file/dist/src/file.h
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/file/dist/src/file.c
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/src/fsmagic.c \
src/external/bsd/file/dist/src/readelf.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/file/dist

2014-10-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Oct 20 22:04:31 UTC 2014

Modified Files:
src/external/bsd/file/dist: Makefile.in aclocal.m4 config.h.in
configure install-sh missing
src/external/bsd/file/dist/doc: Makefile.in
src/external/bsd/file/dist/magic: Makefile.in
src/external/bsd/file/dist/python: Makefile.in
src/external/bsd/file/dist/src: Makefile.in
src/external/bsd/file/dist/tests: Makefile.in

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/file/dist/Makefile.in
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/dist/aclocal.m4
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/config.h.in \
src/external/bsd/file/dist/install-sh
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/file/dist/configure
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/file/dist/missing
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/dist/doc/Makefile.in
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/file/dist/magic/Makefile.in
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/dist/python/Makefile.in
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/file/dist/src/Makefile.in
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/dist/tests/Makefile.in

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



CVS commit: src/sys/fs/ptyfs

2014-10-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 21 16:05:01 UTC 2014

Modified Files:
src/sys/fs/ptyfs: ptyfs_vfsops.c

Log Message:
Revert previous; it does not work with COMPAT_BSDPTY, screen(1) fails because
it does a TIOCPTSNAME immediately after opening ptmx and finds an old style pty.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/fs/ptyfs/ptyfs_vfsops.c

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/asan

2014-10-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 00:14:52 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/asan: asan_rtl.cc

Log Message:
remove default debugging code.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_rtl.cc

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/interception

2014-10-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 00:15:16 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/interception:
interception_linux.cc

Log Message:
the interceptors don't know about __RENAME() so add a kludge.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/external/gpl3/gcc/dist/libsanitizer/interception/interception_linux.cc

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 00:16:29 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libasan: Makefile
Added Files:
src/external/gpl3/gcc/lib/libasan: shlib_version

Log Message:
install a shared library version, now that we know how to do it.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gcc/lib/libasan/Makefile
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libasan/shlib_version

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 03:07:11 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libasan: Makefile

Log Message:
Go back to use the linux version which can be used for our stuff too now.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gcc/lib/libasan/Makefile

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:29:47 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_netbsd.cc

Log Message:
reduce diffs with upstream.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 \
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc

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



CVS commit: src/lib/libexecinfo

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:30:22 UTC 2014

Modified Files:
src/lib/libexecinfo: Makefile unwind.h

Log Message:
Make unwind.h installable.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libexecinfo/Makefile
cvs rdiff -u -r1.2 -r1.3 src/lib/libexecinfo/unwind.h

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:31:57 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libasan: Makefile

Log Message:
No need to -I execinfo now that unwind.h is installed.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/gpl3/gcc/lib/libasan/Makefile

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



CVS commit: src/distrib/sets/lists/comp

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:36:52 UTC 2014

Modified Files:
src/distrib/sets/lists/comp: ad.arm

Log Message:
remove dup lines


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/distrib/sets/lists/comp/ad.arm

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



CVS commit: src/distrib/sets/lists

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:51:32 UTC 2014

Modified Files:
src/distrib/sets/lists/base: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.sparc64 shl.mi
src/distrib/sets/lists/comp: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.sparc64 mi
src/distrib/sets/lists/debug: ad.aarch64 ad.arm ad.mips ad.powerpc
ad.riscv md.amd64 md.evbmips md.sparc64 mi shl.mi

Log Message:
Add libasan


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/distrib/sets/lists/base/ad.aarch64
cvs rdiff -u -r1.60 -r1.61 src/distrib/sets/lists/base/ad.arm
cvs rdiff -u -r1.55 -r1.56 src/distrib/sets/lists/base/ad.mips
cvs rdiff -u -r1.24 -r1.25 src/distrib/sets/lists/base/ad.powerpc
cvs rdiff -u -r1.7 -r1.8 src/distrib/sets/lists/base/ad.riscv
cvs rdiff -u -r1.251 -r1.252 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.239 -r1.240 src/distrib/sets/lists/base/md.sparc64
cvs rdiff -u -r1.720 -r1.721 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.5 -r1.6 src/distrib/sets/lists/comp/ad.aarch64
cvs rdiff -u -r1.61 -r1.62 src/distrib/sets/lists/comp/ad.arm
cvs rdiff -u -r1.51 -r1.52 src/distrib/sets/lists/comp/ad.mips
cvs rdiff -u -r1.73 -r1.74 src/distrib/sets/lists/comp/ad.powerpc
cvs rdiff -u -r1.1 -r1.2 src/distrib/sets/lists/comp/ad.riscv
cvs rdiff -u -r1.225 -r1.226 src/distrib/sets/lists/comp/md.amd64
cvs rdiff -u -r1.188 -r1.189 src/distrib/sets/lists/comp/md.sparc64
cvs rdiff -u -r1.1917 -r1.1918 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.10 -r1.11 src/distrib/sets/lists/debug/ad.aarch64
cvs rdiff -u -r1.49 -r1.50 src/distrib/sets/lists/debug/ad.arm
cvs rdiff -u -r1.45 -r1.46 src/distrib/sets/lists/debug/ad.mips
cvs rdiff -u -r1.25 -r1.26 src/distrib/sets/lists/debug/ad.powerpc
cvs rdiff -u -r1.7 -r1.8 src/distrib/sets/lists/debug/ad.riscv
cvs rdiff -u -r1.69 -r1.70 src/distrib/sets/lists/debug/md.amd64
cvs rdiff -u -r1.4 -r1.5 src/distrib/sets/lists/debug/md.evbmips
cvs rdiff -u -r1.68 -r1.69 src/distrib/sets/lists/debug/md.sparc64
cvs rdiff -u -r1.89 -r1.90 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.79 -r1.80 src/distrib/sets/lists/debug/shl.mi

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:52:47 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer: configure.tgt

Log Message:
NetBSD supports -lasan


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 \
src/external/gpl3/gcc/dist/libsanitizer/configure.tgt

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



CVS commit: src/external/gpl3/gcc/dist/gcc/config

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:52:23 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/gcc/config: netbsd.h

Log Message:
Add libraries the statically linked address sanitizer library needs.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/gpl3/gcc/dist/gcc/config/netbsd.h

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/asan

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:53:16 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/asan: asan_linux.cc

Log Message:
Do the mcontext stuff differently so that we don't fail compilation.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_linux.cc

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



CVS commit: src/doc

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 16:54:13 UTC 2014

Modified Files:
src/doc: CHANGES

Log Message:
mention address sanitizer


To generate a diff of this commit:
cvs rdiff -u -r1.1997 -r1.1998 src/doc/CHANGES

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



CVS commit: src/lib/libexecinfo

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 19:29:31 UTC 2014

Modified Files:
src/lib/libexecinfo: Makefile

Log Message:
don't kill the existing includes


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libexecinfo/Makefile

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



CVS commit: src/external/gpl3/gcc/dist/gcc/config

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 20:50:20 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/gcc/config: netbsd.h

Log Message:
add undef first


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/external/gpl3/gcc/dist/gcc/config/netbsd.h

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 21:19:59 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer: configure.tgt
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_internal_defs.h
src/external/gpl3/gcc/dist/libsanitizer/tsan:
tsan_symbolize_addr2line_linux.cc

Log Message:
more portability fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/external/gpl3/gcc/dist/libsanitizer/configure.tgt
cvs rdiff -u -r1.1.1.1 -r1.2 \

src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h
cvs rdiff -u -r1.1.1.1 -r1.2 \

src/external/gpl3/gcc/dist/libsanitizer/tsan/tsan_symbolize_addr2line_linux.cc

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



CVS commit: src/external/gpl3/gcc/lib

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 21:21:02 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib: Makefile

Log Message:
add libasan to the build


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/gpl3/gcc/lib/Makefile

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



CVS commit: src/external/gpl3/gcc/lib/libtsan

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 21:22:07 UTC 2014

Added Files:
src/external/gpl3/gcc/lib/libtsan: Makefile

Log Message:
Add build glue


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libtsan/Makefile

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



CVS commit: src/external/gpl3/gcc/dist/gcc/config

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 23:17:24 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/gcc/config: netbsd.h

Log Message:
set the proper asan variable


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/external/gpl3/gcc/dist/gcc/config/netbsd.h

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



CVS commit: src/lib

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 23:20:48 UTC 2014

Modified Files:
src/lib: Makefile

Log Message:
add asan to the libraries we build.


To generate a diff of this commit:
cvs rdiff -u -r1.215 -r1.216 src/lib/Makefile

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



CVS commit: src/distrib/sets/lists/comp

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 22 23:25:11 UTC 2014

Modified Files:
src/distrib/sets/lists/comp: shl.mi

Log Message:
forgot one.


To generate a diff of this commit:
cvs rdiff -u -r1.267 -r1.268 src/distrib/sets/lists/comp/shl.mi

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/asan

2014-10-22 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 00:25:54 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/asan: asan_linux.cc

Log Message:
simplify and add more architectures.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_linux.cc

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 12:16:25 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libasan: Makefile

Log Message:
Use libdplibs


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/gpl3/gcc/lib/libasan/Makefile

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 17:50:24 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_netbsd.cc

Log Message:
use the appropriate unwind.h header


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 17:50:08 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
sanitizer_placement_new.h

Log Message:
stop playing type games, and use the proper type for the placement new operator


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \

src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_placement_new.h

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



CVS commit: src/sys/lib/libunwind

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 17:51:22 UTC 2014

Modified Files:
src/sys/lib/libunwind: Makefile.inc

Log Message:
prefer our own unwind.h


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/lib/libunwind/Makefile.inc

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



CVS commit: src/lib/libc/time

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 18:45:58 UTC 2014

Modified Files:
src/lib/libc/time: Makefile NEWS asctime.c localtime.c private.h
tz-art.htm tz-link.htm tzset.3 zdump.8 zdump.c

Log Message:
merge 2014i


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/lib/libc/time/Makefile
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/time/NEWS
cvs rdiff -u -r1.19 -r1.20 src/lib/libc/time/asctime.c
cvs rdiff -u -r1.90 -r1.91 src/lib/libc/time/localtime.c
cvs rdiff -u -r1.37 -r1.38 src/lib/libc/time/private.h
cvs rdiff -u -r1.7 -r1.8 src/lib/libc/time/tz-art.htm
cvs rdiff -u -r1.18 -r1.19 src/lib/libc/time/tz-link.htm
cvs rdiff -u -r1.30 -r1.31 src/lib/libc/time/tzset.3
cvs rdiff -u -r1.13 -r1.14 src/lib/libc/time/zdump.8
cvs rdiff -u -r1.38 -r1.39 src/lib/libc/time/zdump.c

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



CVS commit: src/doc

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 18:46:49 UTC 2014

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
mention tzcode


To generate a diff of this commit:
cvs rdiff -u -r1.1162 -r1.1163 src/doc/3RDPARTY
cvs rdiff -u -r1.1999 -r1.2000 src/doc/CHANGES

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



CVS commit: src/external/gpl3/gcc/dist/libsanitizer/asan

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 19:03:38 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/libsanitizer/asan: asan_linux.cc

Log Message:
make alpha compile


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gcc/dist/libsanitizer/asan/asan_linux.cc

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



CVS commit: src/sys/arch/sh3/include

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 19:39:43 UTC 2014

Modified Files:
src/sys/arch/sh3/include: elf_machdep.h

Log Message:
instead of bitching about the missing endianness, get it.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sh3/include/elf_machdep.h

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



CVS commit: src/distrib/sets/lists/xdebug

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 20:08:27 UTC 2014

Modified Files:
src/distrib/sets/lists/xdebug: md.hpcsh

Log Message:
fix (add missing, remove dups, sort)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/distrib/sets/lists/xdebug/md.hpcsh

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



CVS commit: src/bin/sh

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 21:03:25 UTC 2014

Modified Files:
src/bin/sh: redir.c

Log Message:
simplify and eliminate TOCTOU.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/bin/sh/redir.c

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



CVS commit: src/lib/libc/time

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 21:19:53 UTC 2014

Modified Files:
src/lib/libc/time: zdump.c

Log Message:
remove stray endif


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/lib/libc/time/zdump.c

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



CVS commit: src/external/gpl3/gcc/lib/libasan

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Oct 23 23:31:26 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libasan: Makefile

Log Message:
one more search path.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/gpl3/gcc/lib/libasan/Makefile

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



CVS commit: src/distrib/sets/lists

2014-10-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 02:39:34 UTC 2014

Modified Files:
src/distrib/sets/lists/base: ad.powerpc shl.mi
src/distrib/sets/lists/comp: ad.powerpc mi shl.mi
src/distrib/sets/lists/debug: mi shl.mi

Log Message:
gcc=48 has asan.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/distrib/sets/lists/base/ad.powerpc
cvs rdiff -u -r1.721 -r1.722 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.74 -r1.75 src/distrib/sets/lists/comp/ad.powerpc
cvs rdiff -u -r1.1918 -r1.1919 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.268 -r1.269 src/distrib/sets/lists/comp/shl.mi
cvs rdiff -u -r1.90 -r1.91 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.80 -r1.81 src/distrib/sets/lists/debug/shl.mi

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



CVS import: src/external/bsd/openpam/dist

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:15:41 UTC 2014

Update of /cvsroot/src/external/bsd/openpam/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv3477

Log Message:
OpenPAM Ourouparia  2014-09-12

 - ENHANCE: When executing a chain, require at least one service
   function to succeed.  This mitigates fail-open scenarios caused by
   misconfigurations or missing modules.

 - ENHANCE: Make sure to overwrite buffers which may have contained an
   authentication token when they're no longer needed.

 - BUGFIX: Under certain circumstances, specifying a non-existent
   module (or misspelling the name of a module) in a policy could
   result in a fail-open scenario.  (CVE-2014-3879)

 - FEATURE: Add a search path for modules.  This was implemented in
   Nummularia but inadvertently left out of the release notes.

 - BUGFIX: The is_upper() predicate only accepted the letter A as an
   upper-case character instead of the entire A-Z range.  As a result,
   service and module names containing upper-case letters other than A
   would be rejected.


Status:

Vendor Tag: OPENPAM
Release Tags:   ourouparia-20140912

U src/external/bsd/openpam/dist/depcomp
U src/external/bsd/openpam/dist/autogen.sh
U src/external/bsd/openpam/dist/pamgdb.in
U src/external/bsd/openpam/dist/config.h.in
U src/external/bsd/openpam/dist/CREDITS
U src/external/bsd/openpam/dist/configure
U src/external/bsd/openpam/dist/missing
U src/external/bsd/openpam/dist/config.sub
U src/external/bsd/openpam/dist/RELNOTES
U src/external/bsd/openpam/dist/configure.ac
U src/external/bsd/openpam/dist/compile
U src/external/bsd/openpam/dist/ltmain.sh
U src/external/bsd/openpam/dist/HISTORY
U src/external/bsd/openpam/dist/config.guess
U src/external/bsd/openpam/dist/LICENSE
U src/external/bsd/openpam/dist/TODO
U src/external/bsd/openpam/dist/mkpkgng.in
U src/external/bsd/openpam/dist/README
U src/external/bsd/openpam/dist/Makefile.in
U src/external/bsd/openpam/dist/test-driver
U src/external/bsd/openpam/dist/install-sh
U src/external/bsd/openpam/dist/INSTALL
U src/external/bsd/openpam/dist/Makefile.am
U src/external/bsd/openpam/dist/aclocal.m4
U src/external/bsd/openpam/dist/lib/Makefile.am
U src/external/bsd/openpam/dist/lib/Makefile.in
N src/external/bsd/openpam/dist/lib/libpam/openpam_readword.c
N src/external/bsd/openpam/dist/lib/libpam/pam_strerror.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_set_feature.c
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_chauthtok.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_readlinev.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_nullconv.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_constants.c
N src/external/bsd/openpam/dist/lib/libpam/pam_vinfo.c
N src/external/bsd/openpam/dist/lib/libpam/pam_vprompt.c
N src/external/bsd/openpam/dist/lib/libpam/pam_acct_mgmt.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_set_option.c
N src/external/bsd/openpam/dist/lib/libpam/pam_set_data.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_dlfunc.h
N src/external/bsd/openpam/dist/lib/libpam/pam_get_item.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_debug.h
N src/external/bsd/openpam/dist/lib/libpam/openpam_static.c
N src/external/bsd/openpam/dist/lib/libpam/pam_getenv.c
N src/external/bsd/openpam/dist/lib/libpam/pam_get_mapped_username.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_strlcat.h
N src/external/bsd/openpam/dist/lib/libpam/pam_start.c
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_open_session.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_vasprintf.h
N src/external/bsd/openpam/dist/lib/libpam/openpam_restore_cred.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_asprintf.h
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_setcred.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_check_owner_perms.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_ttyconv.c
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_set_mapped_authtok.c
N src/external/bsd/openpam/dist/lib/libpam/pam_authenticate.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_strlset.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_straddch.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_configure.c
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_authenticate.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_strlcmp.h
N src/external/bsd/openpam/dist/lib/libpam/pam_get_user.c
N src/external/bsd/openpam/dist/lib/libpam/Makefile.in
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_set_mapped_username.c
N src/external/bsd/openpam/dist/lib/libpam/pam_get_mapped_authtok.c
N src/external/bsd/openpam/dist/lib/libpam/openpam_features.h
N src/external/bsd/openpam/dist/lib/libpam/openpam_vasprintf.c
N src/external/bsd/openpam/dist/lib/libpam/pam_sm_authenticate_secondary.c
N src/external/bsd/openpam/dist/lib/libpam/pam_get_authtok.c
N src/external/bsd/openpam/dist/lib/libpam/pam_prompt.c
N src/ex

CVS commit: src/external/bsd/openpam

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:17:57 UTC 2014

Modified Files:
src/external/bsd/openpam: openpam2netbsd
src/external/bsd/openpam/dist/bin/pamtest: pamtest.1 pamtest.c
src/external/bsd/openpam/dist/bin/su: su.1 su.c
src/external/bsd/openpam/dist/doc/man: openpam.3 openpam_borrow_cred.3
openpam_free_data.3 openpam_free_envlist.3 openpam_get_feature.3
openpam_get_option.3 openpam_log.3 openpam_nullconv.3
openpam_readline.3 openpam_readlinev.3 openpam_readword.3
openpam_restore_cred.3 openpam_set_feature.3 openpam_set_option.3
openpam_straddch.3 openpam_subst.3 openpam_ttyconv.3 pam.3
pam.conf.5 pam_acct_mgmt.3 pam_authenticate.3 pam_chauthtok.3
pam_close_session.3 pam_conv.3 pam_end.3 pam_error.3
pam_get_authtok.3 pam_get_data.3 pam_get_item.3 pam_get_user.3
pam_getenv.3 pam_getenvlist.3 pam_info.3 pam_open_session.3
pam_prompt.3 pam_putenv.3 pam_set_data.3 pam_set_item.3
pam_setcred.3 pam_setenv.3 pam_sm_acct_mgmt.3 pam_sm_authenticate.3
pam_sm_chauthtok.3 pam_sm_close_session.3 pam_sm_open_session.3
pam_sm_setcred.3 pam_start.3 pam_strerror.3 pam_verror.3
pam_vinfo.3 pam_vprompt.3
src/external/bsd/openpam/dist/include/security: openpam.h
openpam_attr.h openpam_version.h pam_appl.h pam_constants.h
pam_modules.h pam_types.h
src/external/bsd/openpam/dist/lib/libpam: openpam_asprintf.c
openpam_asprintf.h openpam_borrow_cred.c
openpam_check_owner_perms.c openpam_configure.c openpam_constants.c
openpam_constants.h openpam_cred.h openpam_ctype.h openpam_debug.h
openpam_dispatch.c openpam_dlfunc.h openpam_dynamic.c
openpam_features.c openpam_features.h openpam_findenv.c
openpam_free_data.c openpam_free_envlist.c openpam_get_feature.c
openpam_get_option.c openpam_impl.h openpam_load.c openpam_log.c
openpam_nullconv.c openpam_readline.c openpam_readlinev.c
openpam_readword.c openpam_restore_cred.c openpam_set_feature.c
openpam_set_option.c openpam_static.c openpam_straddch.c
openpam_strlcat.c openpam_strlcat.h openpam_strlcmp.h
openpam_strlcpy.c openpam_strlcpy.h openpam_strlset.c
openpam_strlset.h openpam_subst.c openpam_ttyconv.c
openpam_vasprintf.c openpam_vasprintf.h pam_acct_mgmt.c
pam_authenticate.c pam_authenticate_secondary.c pam_chauthtok.c
pam_close_session.c pam_end.c pam_error.c pam_get_authtok.c
pam_get_data.c pam_get_item.c pam_get_mapped_authtok.c
pam_get_mapped_username.c pam_get_user.c pam_getenv.c
pam_getenvlist.c pam_info.c pam_open_session.c pam_prompt.c
pam_putenv.c pam_set_data.c pam_set_item.c pam_set_mapped_authtok.c
pam_set_mapped_username.c pam_setcred.c pam_setenv.c
pam_sm_acct_mgmt.c pam_sm_authenticate.c
pam_sm_authenticate_secondary.c pam_sm_chauthtok.c
pam_sm_close_session.c pam_sm_get_mapped_authtok.c
pam_sm_get_mapped_username.c pam_sm_open_session.c
pam_sm_set_mapped_authtok.c pam_sm_set_mapped_username.c
pam_sm_setcred.c pam_start.c pam_strerror.c pam_verror.c
pam_vinfo.c pam_vprompt.c
src/external/bsd/openpam/dist/modules/pam_deny: pam_deny.c
src/external/bsd/openpam/dist/modules/pam_permit: pam_permit.c
src/external/bsd/openpam/dist/modules/pam_unix: pam_unix.c
src/external/bsd/openpam/dist/t: t_openpam_readlinev.c
t_openpam_readword.c
Removed Files:
src/external/bsd/openpam/dist/lib: openpam_asprintf.c
openpam_asprintf.h openpam_borrow_cred.c
openpam_check_owner_perms.c openpam_configure.c openpam_constants.c
openpam_constants.h openpam_cred.h openpam_ctype.h openpam_debug.h
openpam_dispatch.c openpam_dlfunc.h openpam_dynamic.c
openpam_features.c openpam_features.h openpam_findenv.c
openpam_free_data.c openpam_free_envlist.c openpam_get_feature.c
openpam_get_option.c openpam_impl.h openpam_load.c openpam_log.c
openpam_nullconv.c openpam_readline.c openpam_readlinev.c
openpam_readword.c openpam_restore_cred.c openpam_set_feature.c
openpam_set_option.c openpam_static.c openpam_straddch.c
openpam_strlcat.c openpam_strlcat.h openpam_strlcmp.h
openpam_strlcpy.c openpam_strlcpy.h openpam_subst.c
openpam_ttyconv.c openpam_vasprintf.c openpam_vasprintf.h
pam_acct_mgmt.c pam_authenticate.c pam_authenticate_secondary.c
pam_chauthtok.c pam_close_session.c pam_end.c pam_error.c
pam_get_authtok.c pam_get_data.c pam_get_item.c
pam_get

CVS import: src/external/bsd/openpam/dist/doc/man

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:21:03 UTC 2014

Update of /cvsroot/src/external/bsd/openpam/dist/doc/man
In directory ivanova.netbsd.org:/tmp/cvs-serv27184

Log Message:
import generated man pages

Status:

Vendor Tag: OPENPAM
Release Tags:   ourouparia-20140912

U src/external/bsd/openpam/dist/doc/man/pam_sm_close_session.3
U src/external/bsd/openpam/dist/doc/man/pam_strerror.3
U src/external/bsd/openpam/dist/doc/man/Makefile.in
U src/external/bsd/openpam/dist/doc/man/openpam_borrow_cred.3
U src/external/bsd/openpam/dist/doc/man/pam_get_authtok.3
U src/external/bsd/openpam/dist/doc/man/pam_conv.3
U src/external/bsd/openpam/dist/doc/man/pam_sm_acct_mgmt.3
U src/external/bsd/openpam/dist/doc/man/pam_verror.3
U src/external/bsd/openpam/dist/doc/man/pam_get_item.3
U src/external/bsd/openpam/dist/doc/man/pam_set_data.3
U src/external/bsd/openpam/dist/doc/man/pam_getenvlist.3
U src/external/bsd/openpam/dist/doc/man/pam_setenv.3
U src/external/bsd/openpam/dist/doc/man/openpam_get_option.3
U src/external/bsd/openpam/dist/doc/man/pam_error.3
U src/external/bsd/openpam/dist/doc/man/pam.man
U src/external/bsd/openpam/dist/doc/man/pam_vprompt.3
U src/external/bsd/openpam/dist/doc/man/pam.3
U src/external/bsd/openpam/dist/doc/man/pam_get_user.3
U src/external/bsd/openpam/dist/doc/man/pam_putenv.3
U src/external/bsd/openpam/dist/doc/man/Makefile.am
U src/external/bsd/openpam/dist/doc/man/pam_close_session.3
U src/external/bsd/openpam/dist/doc/man/openpam_set_option.3
U src/external/bsd/openpam/dist/doc/man/pam_chauthtok.3
U src/external/bsd/openpam/dist/doc/man/openpam_get_feature.3
U src/external/bsd/openpam/dist/doc/man/openpam.man
U src/external/bsd/openpam/dist/doc/man/openpam_ttyconv.3
U src/external/bsd/openpam/dist/doc/man/pam_sm_chauthtok.3
U src/external/bsd/openpam/dist/doc/man/pam.conf.5
U src/external/bsd/openpam/dist/doc/man/openpam_readword.3
U src/external/bsd/openpam/dist/doc/man/openpam_log.3
U src/external/bsd/openpam/dist/doc/man/openpam_subst.3
U src/external/bsd/openpam/dist/doc/man/pam_setcred.3
U src/external/bsd/openpam/dist/doc/man/openpam_nullconv.3
U src/external/bsd/openpam/dist/doc/man/openpam_free_envlist.3
U src/external/bsd/openpam/dist/doc/man/pam_vinfo.3
U src/external/bsd/openpam/dist/doc/man/pam_sm_authenticate.3
U src/external/bsd/openpam/dist/doc/man/pam_get_data.3
U src/external/bsd/openpam/dist/doc/man/pam_start.3
U src/external/bsd/openpam/dist/doc/man/openpam_readlinev.3
U src/external/bsd/openpam/dist/doc/man/pam_set_item.3
U src/external/bsd/openpam/dist/doc/man/pam_authenticate.3
U src/external/bsd/openpam/dist/doc/man/pam_prompt.3
U src/external/bsd/openpam/dist/doc/man/pam_info.3
U src/external/bsd/openpam/dist/doc/man/pam_sm_open_session.3
U src/external/bsd/openpam/dist/doc/man/openpam_restore_cred.3
U src/external/bsd/openpam/dist/doc/man/pam_getenv.3
U src/external/bsd/openpam/dist/doc/man/openpam_straddch.3
U src/external/bsd/openpam/dist/doc/man/pam_open_session.3
U src/external/bsd/openpam/dist/doc/man/pam_sm_setcred.3
U src/external/bsd/openpam/dist/doc/man/openpam_free_data.3
U src/external/bsd/openpam/dist/doc/man/pam_end.3
U src/external/bsd/openpam/dist/doc/man/openpam.3
U src/external/bsd/openpam/dist/doc/man/openpam_readline.3
U src/external/bsd/openpam/dist/doc/man/pam_acct_mgmt.3
U src/external/bsd/openpam/dist/doc/man/openpam_set_feature.3
N src/external/bsd/openpam/dist/doc/man/Makefile

No conflicts created by this import



CVS commit: src/external/bsd/openpam/dist/doc/man

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:25:14 UTC 2014

Modified Files:
src/external/bsd/openpam/dist/doc/man: openpam.3 openpam_borrow_cred.3
openpam_free_data.3 openpam_free_envlist.3 openpam_get_feature.3
openpam_get_option.3 openpam_log.3 openpam_nullconv.3
openpam_readline.3 openpam_readlinev.3 openpam_readword.3
openpam_restore_cred.3 openpam_set_feature.3 openpam_set_option.3
openpam_straddch.3 openpam_subst.3 openpam_ttyconv.3 pam.3
pam_acct_mgmt.3 pam_authenticate.3 pam_chauthtok.3
pam_close_session.3 pam_conv.3 pam_end.3 pam_error.3
pam_get_authtok.3 pam_get_data.3 pam_get_item.3 pam_get_user.3
pam_getenv.3 pam_getenvlist.3 pam_info.3 pam_open_session.3
pam_prompt.3 pam_putenv.3 pam_set_data.3 pam_set_item.3
pam_setcred.3 pam_setenv.3 pam_sm_acct_mgmt.3 pam_sm_authenticate.3
pam_sm_chauthtok.3 pam_sm_close_session.3 pam_sm_open_session.3
pam_sm_setcred.3 pam_start.3 pam_strerror.3 pam_verror.3
pam_vinfo.3 pam_vprompt.3

Log Message:
fix conflicts


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/openpam/dist/doc/man/openpam.3 \
src/external/bsd/openpam/dist/doc/man/pam.3
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/openpam/dist/doc/man/openpam_borrow_cred.3 \
src/external/bsd/openpam/dist/doc/man/openpam_free_data.3 \
src/external/bsd/openpam/dist/doc/man/openpam_get_option.3 \
src/external/bsd/openpam/dist/doc/man/openpam_log.3 \
src/external/bsd/openpam/dist/doc/man/openpam_nullconv.3 \
src/external/bsd/openpam/dist/doc/man/openpam_readline.3 \
src/external/bsd/openpam/dist/doc/man/openpam_restore_cred.3 \
src/external/bsd/openpam/dist/doc/man/openpam_set_option.3 \
src/external/bsd/openpam/dist/doc/man/openpam_ttyconv.3 \
src/external/bsd/openpam/dist/doc/man/pam_acct_mgmt.3 \
src/external/bsd/openpam/dist/doc/man/pam_authenticate.3 \
src/external/bsd/openpam/dist/doc/man/pam_chauthtok.3 \
src/external/bsd/openpam/dist/doc/man/pam_close_session.3 \
src/external/bsd/openpam/dist/doc/man/pam_end.3 \
src/external/bsd/openpam/dist/doc/man/pam_error.3 \
src/external/bsd/openpam/dist/doc/man/pam_get_data.3 \
src/external/bsd/openpam/dist/doc/man/pam_get_item.3 \
src/external/bsd/openpam/dist/doc/man/pam_getenv.3 \
src/external/bsd/openpam/dist/doc/man/pam_getenvlist.3 \
src/external/bsd/openpam/dist/doc/man/pam_info.3 \
src/external/bsd/openpam/dist/doc/man/pam_open_session.3 \
src/external/bsd/openpam/dist/doc/man/pam_prompt.3 \
src/external/bsd/openpam/dist/doc/man/pam_putenv.3 \
src/external/bsd/openpam/dist/doc/man/pam_set_data.3 \
src/external/bsd/openpam/dist/doc/man/pam_set_item.3 \
src/external/bsd/openpam/dist/doc/man/pam_setcred.3 \
src/external/bsd/openpam/dist/doc/man/pam_setenv.3 \
src/external/bsd/openpam/dist/doc/man/pam_sm_acct_mgmt.3 \
src/external/bsd/openpam/dist/doc/man/pam_sm_authenticate.3 \
src/external/bsd/openpam/dist/doc/man/pam_sm_chauthtok.3 \
src/external/bsd/openpam/dist/doc/man/pam_sm_close_session.3 \
src/external/bsd/openpam/dist/doc/man/pam_sm_open_session.3 \
src/external/bsd/openpam/dist/doc/man/pam_sm_setcred.3 \
src/external/bsd/openpam/dist/doc/man/pam_start.3 \
src/external/bsd/openpam/dist/doc/man/pam_strerror.3 \
src/external/bsd/openpam/dist/doc/man/pam_verror.3 \
src/external/bsd/openpam/dist/doc/man/pam_vinfo.3 \
src/external/bsd/openpam/dist/doc/man/pam_vprompt.3
cvs rdiff -u -r1.6 -r1.7 \
src/external/bsd/openpam/dist/doc/man/openpam_free_envlist.3 \
src/external/bsd/openpam/dist/doc/man/openpam_subst.3 \
src/external/bsd/openpam/dist/doc/man/pam_conv.3 \
src/external/bsd/openpam/dist/doc/man/pam_get_authtok.3 \
src/external/bsd/openpam/dist/doc/man/pam_get_user.3
cvs rdiff -u -r1.4 -r1.5 \
src/external/bsd/openpam/dist/doc/man/openpam_get_feature.3 \
src/external/bsd/openpam/dist/doc/man/openpam_readlinev.3 \
src/external/bsd/openpam/dist/doc/man/openpam_readword.3 \
src/external/bsd/openpam/dist/doc/man/openpam_set_feature.3 \
src/external/bsd/openpam/dist/doc/man/openpam_straddch.3

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/doc/man

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:25:42 UTC 2014

Modified Files:
src/external/bsd/openpam/dist/doc/man: pam.conf.5

Log Message:
fix conflicts


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/openpam/dist/doc/man/pam.conf.5

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



CVS commit: src/lib/libpam/libpam

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:27:41 UTC 2014

Modified Files:
src/lib/libpam/libpam: Makefile

Log Message:
pam library has moved and new files


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/lib/libpam/libpam/Makefile

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

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:27:13 UTC 2014

Modified Files:
src/external/bsd/openpam/dist/bin/pamtest: pamtest.1 pamtest.c
src/external/bsd/openpam/dist/bin/su: su.1 su.c
src/external/bsd/openpam/dist/modules/pam_deny: pam_deny.c
src/external/bsd/openpam/dist/modules/pam_permit: pam_permit.c
src/external/bsd/openpam/dist/modules/pam_unix: pam_unix.c

Log Message:
resolve conflicts


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/openpam/dist/bin/pamtest/pamtest.1
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/openpam/dist/bin/pamtest/pamtest.c
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/openpam/dist/bin/su/su.1
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/openpam/dist/bin/su/su.c
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/openpam/dist/modules/pam_deny/pam_deny.c
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/openpam/dist/modules/pam_permit/pam_permit.c
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/openpam/dist/modules/pam_unix/pam_unix.c

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



CVS commit: src/doc

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 18:29:20 UTC 2014

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
new openpam.


To generate a diff of this commit:
cvs rdiff -u -r1.1163 -r1.1164 src/doc/3RDPARTY
cvs rdiff -u -r1.2000 -r1.2001 src/doc/CHANGES

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



CVS commit: src/sys/compat/netbsd32

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 21:07:55 UTC 2014

Modified Files:
src/sys/compat/netbsd32: netbsd32_exec.h

Log Message:
sync with the regular method; no functional diff


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/compat/netbsd32/netbsd32_exec.h

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



CVS commit: src/sys/compat/netbsd32

2014-10-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 24 21:08:36 UTC 2014

Modified Files:
src/sys/compat/netbsd32: netbsd32_exec_aout.c netbsd32_exec_elf32.c

Log Message:
remove unused prototypes


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/compat/netbsd32/netbsd32_exec_aout.c
cvs rdiff -u -r1.37 -r1.38 src/sys/compat/netbsd32/netbsd32_exec_elf32.c

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



  1   2   3   4   5   6   7   8   9   10   >