linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sparse tool handling of escaped characters in strings
@ 2003-05-29 22:36 Dave Olien
  0 siblings, 0 replies; only message in thread
From: Dave Olien @ 2003-05-29 22:36 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel



Hi, Linus.  I'm just beginning to look over your sparse tool library.
I decided to start with something simple.  Running your check tool
on the 2.5.70 kernel produces 25 warnings of the forms:

warning: drivers/char/n_tty.c:198:35: Unknown escape 'r'
warning: drivers/char/n_tty.c:225:11: Unknown escape 'b'
warning: drivers/char/n_tty.c:547:17: Unknown escape 'a'

They come from character strings that contain escaped characters that
escapechar() in tokenize.c didn't recognize. I added cases for these
characters.

The warning below is a little more interesting.

warning: fs/proc/array.c:338:1: Unknown escape '
'

It comes from a string that is continued on multiple lines, of the form:

printf("abcdef\
ghijkl");

This is different from the other cases because the \<newline> character should
never appear in the parsed string.

As a first fix, I've made escapechar() call itself recursively.
One flaw with this fix is that escapechar() will mark the first character on
the second line of the input string as "escaped":

	/* Mark it as escaped */
	value |= 0x100;

But, none of the callers to escapechar() ever use or preserve this information.
Can this "escaped" character information be removed.

Or, I could add a flag (ugh) that causes the code to NOT add the
escape flag in this particular case.

Or, I could find a different solution to this case.

Thanks!
Dave Olien
OSDL

--------------------------------------------------------------------------

--- sparse_original/tokenize.c	2003-05-29 14:22:20.000000000 -0700
+++ sparse_test/tokenize.c	2003-05-29 15:19:25.000000000 -0700
@@ -340,18 +340,39 @@
 		next = nextchar(stream);
 		if (value != type) {
 			switch (value) {
-			case 'n':
-				value = '\n';
+			case 'a':
+				value = '\a';
+				break;
+			case 'b':
+				value = '\b';
 				break;
 			case 't':
 				value = '\t';
 				break;
+			case 'n':
+				value = '\n';
+				break;
+			case 'v':
+				value = '\v';
+				break;
+			case 'f':
+				value = '\f';
+				break;
+			case 'r':
+				value = '\r';
+				break;
+			case 'e':
+				value = '\e';
+				break;
 			case '\\':
 				break;
 			case '\'':
 				break;
 			case '"':
 				break;
+			case '\n':
+				next = escapechar(next, type, stream, &value);
+				break;
 			case '0'...'7': {
 				int nr = 2;
 				value -= '0';

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-05-29 22:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-29 22:36 [PATCH] sparse tool handling of escaped characters in strings Dave Olien

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).