summaryrefslogtreecommitdiffstats
path: root/lib/libutil/property.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-11-22 13:20:09 +0000
committerjkh <jkh@FreeBSD.org>1998-11-22 13:20:09 +0000
commita60281fac393cb2fbe3af0cee55fc8a5c3ee55f7 (patch)
tree9bd1b2ce75786834ec7f19514c3760e42c5a94ef /lib/libutil/property.c
parent85b18b5acfa02f4661df276c473a64c429a75368 (diff)
downloadFreeBSD-src-a60281fac393cb2fbe3af0cee55fc8a5c3ee55f7.zip
FreeBSD-src-a60281fac393cb2fbe3af0cee55fc8a5c3ee55f7.tar.gz
Better document the file format, add in support for nested {}'s in multi-line
property values.
Diffstat (limited to 'lib/libutil/property.c')
-rw-r--r--lib/libutil/property.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/libutil/property.c b/lib/libutil/property.c
index 211450c..23714a0 100644
--- a/lib/libutil/property.c
+++ b/lib/libutil/property.c
@@ -35,6 +35,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <err.h>
#include <sys/types.h>
#include <libutil.h>
@@ -62,7 +63,7 @@ properties_read(int fd)
char buf[BUFSIZ * 4];
int bp, n, v, max;
enum { LOOK, COMMENT, NAME, VALUE, MVALUE, COMMIT, FILL, STOP } state;
- int ch = 0;
+ int ch = 0, blevel = 0;
n = v = bp = max = 0;
head = ptr = NULL;
@@ -135,8 +136,10 @@ properties_read(int fd)
case VALUE:
if (v == 0 && isspace(ch))
continue;
- else if (ch == '{')
+ else if (ch == '{') {
state = MVALUE;
+ ++blevel;
+ }
else if (ch == '\n' || !ch) {
hold_v[v] = '\0';
v = n = 0;
@@ -156,16 +159,20 @@ properties_read(int fd)
case MVALUE:
/* multiline value */
if (v >= MAX_VALUE) {
+ warn("properties_read: value exceeds max length");
state = COMMENT;
n = v = 0;
}
- else if (ch == '}') {
+ else if (ch == '}' && !--blevel) {
hold_v[v] = '\0';
v = n = 0;
state = COMMIT;
}
- else
+ else {
hold_v[v++] = ch;
+ if (ch == '{')
+ ++blevel;
+ }
break;
case COMMIT:
OpenPOWER on IntegriCloud