summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@centraldogma>2011-10-12 06:37:31 +0200
committercinap_lenrek <cinap_lenrek@centraldogma>2011-10-12 06:37:31 +0200
commit2423c5a940488257a2a0f776bd50cd1f6b052c1e (patch)
tree8004576ae06b136d77f184cf185152da641bcdc2
parent79589ef3fb04867c352a875eaeef60da3db1f601 (diff)
downloadplan9front-2423c5a940488257a2a0f776bd50cd1f6b052c1e.tar.xz
file: fix false positives for HTML because if zero length string compare, use image/p9bit as mimetype for plan9 bitmap
-rw-r--r--sys/src/cmd/file.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/sys/src/cmd/file.c b/sys/src/cmd/file.c
index d42f99d47..9a1c904e7 100644
--- a/sys/src/cmd/file.c
+++ b/sys/src/cmd/file.c
@@ -923,7 +923,9 @@ iff(void)
char* html_string[] =
{
"?xml",
- "!doctype",
+ "!--",
+ "![CDATA[",
+ "!DOCTYPE",
"html",
"head",
"title",
@@ -963,35 +965,34 @@ char* html_string[] =
int
ishtml(void)
{
- uchar *p, *q;
- int i, count;
+ int i, n, count;
+ uchar *p;
- /* compare strings between '<' and '>' to html table */
count = 0;
p = buf;
for(;;) {
- while (p < buf+nbuf && *p != '<')
+ while(p < buf+nbuf && *p != '<')
p++;
p++;
if (p >= buf+nbuf)
break;
if(*p == '/')
p++;
- q = p;
- while(p < buf+nbuf && isalpha(*p))
- p++;
- if (p >= buf+nbuf)
+ if(p >= buf+nbuf)
break;
- for(i = 0; html_string[i]; i++) {
- if(cistrncmp(html_string[i], (char*)q, p-q) == 0) {
+ for(i = 0; html_string[i]; i++){
+ n = strlen(html_string[i]);
+ if(p + n > buf+nbuf)
+ continue;
+ if(cistrncmp(html_string[i], (char*)p, n) == 0) {
if(++count > 2) {
print(mime ? "text/html\n" : "HTML file\n");
return 1;
}
+ p += n;
break;
}
}
- p++;
}
return 0;
}
@@ -1348,7 +1349,7 @@ isp9bit(void)
* for subfont, the subfont header should follow immediately.
*/
if (cmpr) {
- print(mime ? OCTET : "Compressed %splan 9 image or subfont, depth %d\n",
+ print(mime ? "image/p9bit\n" : "Compressed %splan 9 image or subfont, depth %d\n",
newlabel, dep);
return 1;
}
@@ -1358,11 +1359,11 @@ isp9bit(void)
*/
if (len != 0 && (mbuf->length == 0 || mbuf->length == len ||
mbuf->length > len && mbuf->length < len+P9BITLEN)) {
- print(mime ? OCTET : "%splan 9 image, depth %d\n", newlabel, dep);
+ print(mime ? "image/p9bit\n" : "%splan 9 image, depth %d\n", newlabel, dep);
return 1;
}
if (p9subfont(buf+len)) {
- print(mime ? OCTET : "%ssubfont file, depth %d\n", newlabel, dep);
+ print(mime ? "image/p9bit\n" : "%ssubfont file, depth %d\n", newlabel, dep);
return 1;
}
return 0;