Subject: CVS commit: src
To: None <source-changes@NetBSD.org>
From: Elad Efrat <elad@netbsd.org>
List: source-changes
Date: 05/15/2007 19:47:49
Module Name:	src
Committed By:	elad
Date:		Tue May 15 19:47:48 UTC 2007

Modified Files:
	src/etc/defaults: rc.conf
	src/etc/rc.d: veriexec
	src/sbin/veriexecctl: veriexecctl.8 veriexecctl.c veriexecctl.h
	    veriexecctl_conf.l veriexecctl_parse.y
	src/share/man/man4: veriexec.4
	src/share/man/man5: rc.conf.5
	src/share/man/man9: fileassoc.9 veriexec.9
	src/sys/dev: verified_exec.c
	src/sys/kern: kern_fileassoc.c kern_verifiedexec.c vfs_syscalls.c
	src/sys/sys: fileassoc.h verified_exec.h
	src/sys/uvm: uvm_mmap.c
	src/usr.sbin/veriexecgen: veriexecgen.8 veriexecgen.c

Log Message:
Some Veriexec stuff that's been rotting in my tree for months.

Bug fixes:
  - Fix crash reported by Scott Ellis on current-users@.

  - Fix race conditions in enforcing the Veriexec rename and remove
    policies. These are NOT security issues.

  - Fix memory leak in rename handling when overwriting a monitored
    file.

  - Fix table deletion logic.

  - Don't prevent query requests if not in learning mode.

KPI updates:
  - fileassoc_table_run() now takes a cookie to pass to the callback.

  - veriexec_table_add() was removed, it is now done internally. As a
    result, there's no longer a need for VERIEXEC_TABLESIZE.

  - veriexec_report() was removed, it is now internal.

  - Perform sanity checks on the entry type, and enforce default type
    in veriexec_file_add() rather than in veriexecctl.

  - Add veriexec_flush(), used to delete all Veriexec tables, and
    veriexec_dump(), used to fill an array with all Veriexec entries.

New features:
  - Add a '-k' flag to veriexecctl, to keep the filenames in the kernel
    database. This allows Veriexec to produce slightly more accurate
    logs under certain circumstances. In the future, this can be either
    replaced by vnode->pathname translation, or combined with it.

  - Add a VERIEXEC_DUMP ioctl, to dump the entire Veriexec database.
    This can be used to recover a database if the file was lost.
    Example usage:

        # veriexecctl dump > /etc/signatures

    Note that only entries with the filename kept (that is, were loaded
    with the '-k' flag) will be dumped.

    Idea from Brett Lymn.

  - Add a VERIEXEC_FLUSH ioctl, to delete all Veriexec entries. Sample
    usage:

        # veriexecctl flush

  - Add a 'veriexec_flags' rc(8) variable, and make its default have
    the '-k' flag. On systems using the default signatures file
    (generaetd from running 'veriexecgen' with no arguments), this will
    use additional 32kb of kernel memory on average.

  - Add a '-e' flag to veriexecctl, to evaluate the fingerprint during
    load. This is done automatically for files marked as 'untrusted'.

Misc. stuff:
  - The code for veriexecctl was massively simplified as a result of
    eliminating the need for VERIEXEC_TABLESIZE, and now uses a single
    pass of the signatures file, making the loading somewhat faster.

  - Lots of minor fixes found using the (still under development)
    Veriexec regression testsuite.

  - Some of the messages Veriexec prints were improved.

  - Various documentation fixes.

All relevant man-pages were updated to reflect the above changes.

Binary compatibility with existing veriexecctl binaries is maintained.


To generate a diff of this commit:
cvs rdiff -r1.85 -r1.86 src/etc/defaults/rc.conf
cvs rdiff -r1.8 -r1.9 src/etc/rc.d/veriexec
cvs rdiff -r1.29 -r1.30 src/sbin/veriexecctl/veriexecctl.8
cvs rdiff -r1.26 -r1.27 src/sbin/veriexecctl/veriexecctl.c
cvs rdiff -r1.9 -r1.10 src/sbin/veriexecctl/veriexecctl.h
cvs rdiff -r1.10 -r1.11 src/sbin/veriexecctl/veriexecctl_conf.l
cvs rdiff -r1.20 -r1.21 src/sbin/veriexecctl/veriexecctl_parse.y
cvs rdiff -r1.17 -r1.18 src/share/man/man4/veriexec.4
cvs rdiff -r1.113 -r1.114 src/share/man/man5/rc.conf.5
cvs rdiff -r1.19 -r1.20 src/share/man/man9/fileassoc.9
cvs rdiff -r1.13 -r1.14 src/share/man/man9/veriexec.9
cvs rdiff -r1.59 -r1.60 src/sys/dev/verified_exec.c
cvs rdiff -r1.28 -r1.29 src/sys/kern/kern_fileassoc.c
cvs rdiff -r1.98 -r1.99 src/sys/kern/kern_verifiedexec.c
cvs rdiff -r1.312 -r1.313 src/sys/kern/vfs_syscalls.c
cvs rdiff -r1.10 -r1.11 src/sys/sys/fileassoc.h
cvs rdiff -r1.55 -r1.56 src/sys/sys/verified_exec.h
cvs rdiff -r1.111 -r1.112 src/sys/uvm/uvm_mmap.c
cvs rdiff -r1.11 -r1.12 src/usr.sbin/veriexecgen/veriexecgen.8
cvs rdiff -r1.14 -r1.15 src/usr.sbin/veriexecgen/veriexecgen.c

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