summaryrefslogtreecommitdiff
path: root/usr.sbin/ldpd
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2014-11-20 05:51:22 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2014-11-20 05:51:22 +0000
commit2eaa981b579a68f8adabaad74640807821ddd131 (patch)
treeb12cf2076861693c4d14b3a5130ee1ff2dca4fc8 /usr.sbin/ldpd
parent6a369f972afd1add899318b0d0d9d2b2877778e0 (diff)
Don't allow embedded nul characters in strings.
Fixes a pfctl crash with an anchor name containing an embedded nul found with the afl fuzzer. pfctl parse.y patch from and ok deraadt@
Diffstat (limited to 'usr.sbin/ldpd')
-rw-r--r--usr.sbin/ldpd/parse.y5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/ldpd/parse.y b/usr.sbin/ldpd/parse.y
index 0b84a7718ef..b75128c8d5f 100644
--- a/usr.sbin/ldpd/parse.y
+++ b/usr.sbin/ldpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.22 2014/11/14 03:20:37 doug Exp $ */
+/* $OpenBSD: parse.y,v 1.23 2014/11/20 05:51:20 jsg Exp $ */
/*
* Copyright (c) 2004, 2005, 2008 Esben Norby <norby@openbsd.org>
@@ -585,6 +585,9 @@ top:
} else if (c == quotec) {
*p = '\0';
break;
+ } else if (c == '\0') {
+ yyerror("syntax error");
+ return (findeol());
}
if (p + 1 >= buf + sizeof(buf) - 1) {
yyerror("string too long");