about summary refs log tree commit diff
path: root/blaze822.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-13 23:41:45 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-13 23:50:06 +0200
commit266b9048976e6be6168ceac8c5299bed978833bc (patch)
tree59748cb818e9fb98e04fa0dc2ede4253af366e2c /blaze822.c
parentaad1e02178acdbdcd59efeadef597a929e9465a7 (diff)
downloadmblaze-266b9048976e6be6168ceac8c5299bed978833bc.tar.gz
mblaze-266b9048976e6be6168ceac8c5299bed978833bc.tar.xz
mblaze-266b9048976e6be6168ceac8c5299bed978833bc.zip
blaze822: rewrite inner loop
Do nul and crlf clean up first, only when required.
Replace line-detection loop with strchr.
Diffstat (limited to 'blaze822.c')
-rw-r--r--blaze822.c102
1 files changed, 58 insertions, 44 deletions
diff --git a/blaze822.c b/blaze822.c
index 5ea82c6..b6a5698 100644
--- a/blaze822.c
+++ b/blaze822.c
@@ -222,62 +222,76 @@ blaze822_addr(char *s, char **dispo, char **addro)
 }
 
 static void
+compress_hdr(char *s, char *end)
+{
+	char *t, *h;
+
+	if ((t = h = strchr(s, '\n'))) {
+		while (h < end && *h) {
+			if (*h == '\n') {
+				*t++ = ' ';
+				while (*h && isfws(*h))
+					h++;
+			}
+			*t++ = *h++;
+		}
+		// zero fill gap
+		while (t < h)
+			*t++ = 0;
+		// remove trailing whitespace
+		t--;
+		while (s < t && isfws(t[-1]))
+			*--t = 0;
+	}
+}
+
+
+static void
 unfold_hdr(char *buf, char *end)
 {
-	char *s = buf;
+	char *s, *l;
 	*end = 0;
 
-	while (s < end && *s != ':') {
+	// sanitize all nul in message headers, srsly
+	if (memchr(buf, 0, end-buf))
+		for (s = buf; s < end; s++)
+			if (*s == 0)
+				*s = ' ';
+
+	// normalize crlf
+	if (memchr(buf, '\r', end-buf))
+		for (s = buf; s < end; s++)
+			if (*s == '\r') {
+				if (*(s+1) == '\n')
+					*s = '\n';
+				else
+					*s = ' ';
+			}
+
+	l = buf;
+	s = buf;
+
+	while (s < end && *s != ':' && *s != '\n') {
 		*s = lc(*s);
 		s++;
 	}
 
-	/// XXX can we turn both loops into one?
-	for (; s < end; s++) {
-		/// XXX use strchr here
-		if (*s == 0)   // sanitize nul bytes in headers
-			*s = ' ';
-
-		if (*s == '\r') {
-			if (*(s+1) == '\n') {
-				*s++ = '\n';
-			} else {
-				*s = ' ';
-			}
-		}
+	while (s < end) {
+		s = memchr(s+1, '\n', end-buf);
+		if (!s)
+			break;
 
-		if (*s == '\n') {
+		while (s < end && *s == '\n')
 			s++;
-			if (!iswsp(*s)) {
-				*(s-1) = 0;
-				if (s-2 > buf && *(s-2) == '\n')   // ex-crlf
-					*(s-2) = 0;
-				while (s < end && *s != ':') {
-					*s = lc(*s);
-					s++;
-				}
-			}
-		}
-	}
-
-	// compress fields by removing fws
-	for (s = buf; s < end; ) {
-		char *t, *h;
-		size_t l = strlen(s) + 1;
-
-		if ((t = h = strchr(s, '\n'))) {
-			while (h < end && *h) {
-				if (*h == '\n') {
-					*t++ = ' ';
-					while (*h && isfws(*h))
-						h++;
-				}
-				*t++ = *h++;
+		if (!iswsp(*s)) {
+			*(s-1) = 0;
+			compress_hdr(l, s-1);
+			l = s;
+			while (s < end && *s != ':' && *s != '\n') {
+				*s = lc(*s);
+				s++;
 			}
-			while (t < h)
-				*t++ = 0;
 		}
-		s += l;
 	}
 }