summaryrefslogtreecommitdiffstats
path: root/sys/security/mac_biba
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2002-10-28 19:16:44 +0000
committerrwatson <rwatson@FreeBSD.org>2002-10-28 19:16:44 +0000
commit1295b8ff0f61705610f25234b7b937a3b71c9a85 (patch)
tree09a9847f842dadb1c8fa4573a500857130b73771 /sys/security/mac_biba
parent9ae04d1a068e7f6ab4b535ccd36b62d81cd9bc7b (diff)
downloadFreeBSD-src-1295b8ff0f61705610f25234b7b937a3b71c9a85.zip
FreeBSD-src-1295b8ff0f61705610f25234b7b937a3b71c9a85.tar.gz
Zero the trusted_interface buffer before starting parsing.
Print a warning if a requested interface name is longer than IFNAMSIZ. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'sys/security/mac_biba')
-rw-r--r--sys/security/mac_biba/mac_biba.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/security/mac_biba/mac_biba.c b/sys/security/mac_biba/mac_biba.c
index 9292a73..5005843 100644
--- a/sys/security/mac_biba/mac_biba.c
+++ b/sys/security/mac_biba/mac_biba.c
@@ -1159,6 +1159,7 @@ mac_biba_create_ifnet(struct ifnet *ifnet, struct label *ifnetlabel)
!strvalid(trusted_interfaces, sizeof(trusted_interfaces)))
goto set;
+ bzero(tiflist, sizeof(tiflist));
for (p = trusted_interfaces, q = tiflist; *p != '\0'; p++, q++)
if(*p != ' ' && *p != '\t')
*q = *p;
@@ -1175,6 +1176,11 @@ mac_biba_create_ifnet(struct ifnet *ifnet, struct label *ifnetlabel)
grade = MAC_BIBA_TYPE_HIGH;
break;
}
+ } else {
+ *p = '\0';
+ printf("mac_biba warning: interface name "
+ "\"%s\" is too long (must be < %d)\n",
+ q, IFNAMSIZ);
}
if (*p == '\0')
break;
OpenPOWER on IntegriCloud