Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Correctly handle the case of executing a 'FILE' entry.
details: https://anonhg.NetBSD.org/src/rev/23dec7a33646
branches: trunk
changeset: 582028:23dec7a33646
user: elad <elad%NetBSD.org@localhost>
date: Mon Jun 13 22:46:56 2005 +0000
description:
Correctly handle the case of executing a 'FILE' entry.
diffstat:
sys/kern/kern_verifiedexec.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diffs (39 lines):
diff -r 0e74c3327fe3 -r 23dec7a33646 sys/kern/kern_verifiedexec.c
--- a/sys/kern/kern_verifiedexec.c Mon Jun 13 21:34:16 2005 +0000
+++ b/sys/kern/kern_verifiedexec.c Mon Jun 13 22:46:56 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_verifiedexec.c,v 1.23 2005/06/13 21:09:49 elad Exp $ */
+/* $NetBSD: kern_verifiedexec.c,v 1.24 2005/06/13 22:46:56 elad Exp $ */
/*-
* Copyright 2005 Elad Efrat <elad%bsd.org.il@localhost>
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_verifiedexec.c,v 1.23 2005/06/13 21:09:49 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_verifiedexec.c,v 1.24 2005/06/13 22:46:56 elad Exp $");
#include <sys/param.h>
#include <sys/mount.h>
@@ -394,9 +394,7 @@
switch (flag) {
case VERIEXEC_DIRECT:
case VERIEXEC_INDIRECT:
- break;
- case VERIEXEC_FILE:
- if ((vp->vhe != NULL) && (vp->vhe->type != VERIEXEC_FILE)) {
+ if ((vp->vhe != NULL) && (vp->vhe->type == VERIEXEC_FILE)) {
veriexec_report("Execution of 'FILE' entry.",
name, va, p, REPORT_NOVERBOSE,
REPORT_ALARM, REPORT_NOPANIC);
@@ -406,6 +404,9 @@
}
break;
+
+ case VERIEXEC_FILE:
+ break;
}
out:
Home |
Main Index |
Thread Index |
Old Index