Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/etc/rc.d Pull up revision 1.4 (requested by elad in ticke...



details:   https://anonhg.NetBSD.org/src/rev/fbe4a35d9ff9
branches:  netbsd-3
changeset: 576089:fbe4a35d9ff9
user:      tron <tron%NetBSD.org@localhost>
date:      Fri Jun 10 14:47:29 2005 +0000

description:
Pull up revision 1.4 (requested by elad in ticket #389):
Rototill of the verified exec functionality.
* We now use hash tables instead of a list to store the in kernel
fingerprints.
* Fingerprint methods handling has been made more flexible, it is now
even simpler to add new methods.
* the loader no longer passes in magic numbers representing the
fingerprint method so veriexecctl is not longer kernel specific.
* fingerprint methods can be tailored out using options in the kernel
config file.
* more fingerprint methods added - rmd160, sha256/384/512
* veriexecctl can now report the fingerprint methods supported by the
running kernel.
* regularised the naming of some portions of veriexec.

diffstat:

 etc/rc.d/veriexec |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 7082f1394677 -r fbe4a35d9ff9 etc/rc.d/veriexec
--- a/etc/rc.d/veriexec Fri Jun 10 14:47:23 2005 +0000
+++ b/etc/rc.d/veriexec Fri Jun 10 14:47:29 2005 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-#      $NetBSD: veriexec,v 1.3 2004/08/13 18:08:03 mycroft Exp $
+#      $NetBSD: veriexec,v 1.3.2.1 2005/06/10 14:47:29 tron Exp $
 #
 
 # PROVIDE: veriexec
@@ -16,7 +16,7 @@
 veriexec_start()
 {
        echo -n "Loading fingerprints..."
-       /sbin/veriexecctl /etc/signatures
+       /sbin/veriexecctl load /etc/signatures
        echo " done."
 }
 



Home | Main Index | Thread Index | Old Index