-
Notifications
You must be signed in to change notification settings - Fork 2
/
mime.c
464 lines (331 loc) · 13.1 KB
/
mime.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
ratproxy - MIME detection
-------------------------
MIME content sniffing routines. This code tries to figure out
what is actually being served, regardless of what HTTP headers
say.
Author: Michal Zalewski <lcamtuf@google.com>
Copyright 2007, 2008 by Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <sys/wait.h>
#include <ctype.h>
#include <netdb.h>
#include <openssl/md5.h>
#include "config.h"
#include "types.h"
#include "debug.h"
#include "nlist.h"
#include "http.h"
#include "mime.h"
#include "string-inl.h"
/* Check for JSON prologues... */
static _u8 is_json_safe_mime(_u8* str) {
_u32 i = 0;
/* JSON prologues of more than 1 characters are "authoritative" and override
further content sniffing. */
while (json_safe[i]) {
if (json_safe[i][1] && !strncmp(str,json_safe[i],strlen(json_safe[i]))) return 1;
i++;
}
return 0;
}
/* Attempt MIME type detection for formats that are likely to be served by a
modern web application based on payload signature matching. */
void detect_mime(struct http_response* r) {
_u32 i, max;
_u8 text = 1;
_u8 sniffbuf[SNIFFBUF + 1];
_u8* xxx;
/* TODO: Add more popular formats. This is oriented toward common web 2.0
technologies at the moment. */
if (!r->payload_len) return;
if (r->payload_len > SNIFFBUF) max = SNIFFBUF; else max = r->payload_len;
memcpy(sniffbuf,r->payload,max);
sniffbuf[max] = 0;
/* Is this a plain-text file? */
for (i=0;i<max;i++)
if (sniffbuf[i] < 0x20 && !isspace(sniffbuf[i])) { text = 0; break; }
if (text) {
_u8 got_alpha = 0, got_bracket = 0, got_try = 0, got_alpha_before = 0;
r->is_text = 1;
/* First, some files with known, fixed signatures. */
if (!strncmp(sniffbuf,"%!PS",4)) {
r->sniffed_mime = "application/postscript";
return;
}
if (!strncmp(sniffbuf,"{\\rtf",5)) {
r->sniffed_mime = "text/rtf";
return;
}
/* Try to detect Javascript - this is a bit tricky, because
JSON snippets can have minimal syntax, and CSS uses a notation
vaguely resembling Javascript. */
/* JSON breaker prefixes automatically qualify content as JS */
if (is_json_safe_mime(sniffbuf)) goto got_javascript;
for (i=0;i<max;i++) {
/* First, skip comment blocks */
if (!strncmp(sniffbuf+i,"//",2)) {
_u8* x = strchr(sniffbuf + i + 2, '\n');
if (!x) i = max; else i = x - sniffbuf;
continue;
}
if (!strncmp(sniffbuf+i,"/*",2)) {
_u8* x = strstr(sniffbuf + i + 2, "*/");
if (!x) i = max; else i = x - sniffbuf + 1;
continue;
}
/* If what follows look HTML-esque, bail out */
if ((sniffbuf[i] == '<' || !strcmp(sniffbuf+i,"<"))) break;
if (!strncmp(sniffbuf+i,"try",3) && (isspace(sniffbuf[i+3]) || sniffbuf[i+3] == '{'))
got_try = 1;
/* try { ... is a special JSON-like response that looks like CSS, but should
be handled as Javascript. */
if (sniffbuf[i] == '{' && got_try) goto got_javascript;
/* Otherwise, if { is encountered before any =, (, or HTML, but after alnums,
it's likely a stylesheet... well, unless followed by '"', in which case it
might be a serialized object with a non-standard anti-XSSI prologue. */
if (got_alpha && sniffbuf[i] == '{') {
_u32 j = i + 1;
while (j < max && sniffbuf[j] && !isalpha(sniffbuf[j])) {
if (sniffbuf[j] == '{' || sniffbuf[j] == '"' ||
sniffbuf[j] == '\'' || sniffbuf[j] == '(') goto got_javascript;
j++;
}
r->sniffed_mime = "text/css";
return;
}
if (isalpha(sniffbuf[i])) got_alpha = 1;
if (sniffbuf[i] == '{') { got_bracket = 1; got_alpha_before = got_alpha; }
/* { "foo" is very JSONish. */
if (!got_alpha && got_bracket && sniffbuf[i] == '"') goto got_javascript;
/* { foo: 1 is JSONish too. */
if (!got_alpha_before && got_alpha && got_bracket && sniffbuf[i] == ':')
goto got_javascript;
/* And finally, if =, ( or JS keyword is encountered before <, assume JS. */
if (sniffbuf[i] == '=' || sniffbuf[i] == '(' || sniffbuf[i] == '[' ||
!strncmp(sniffbuf + i, "function ",9) ||
!strncmp(sniffbuf + i, "throw ",6) ||
!strncmp(sniffbuf + i, "var ",4)) {
got_javascript:
r->sniffed_mime = "application/x-javascript";
/* RFC 4329 lists no fewer than 16 variations of Javascript MIME type.
Not all of them are common in the wild, but all are roughly equivalent
security-wise, so let's be lenient. */
if (r->mime_type) {
if (!strcasecmp(r->mime_type,"text/javascript"))
r->sniffed_mime = "text/javascript";
else if (!strcasecmp(r->mime_type,"application/javascript"))
r->sniffed_mime = "application_javascript";
else if (!strcasecmp(r->mime_type,"application/json"))
r->sniffed_mime = "application/json";
}
return;
}
}
/* OpenSearch */
if (strstr(sniffbuf,"<OpenSearch")) {
r->sniffed_mime = "application/opensearchdescription+xml";
return;
}
/* Try to detect RSS */
if (strstr(sniffbuf,"<channel") || strstr(sniffbuf,"<description") ||
strstr(sniffbuf,"<item") || strstr(sniffbuf,"<rdf:RDF") ||
strstr(sniffbuf,"<rss")) {
r->sniffed_mime = "application/rss+xml";
return;
}
/* Try to detect Atom */
if (strstr(sniffbuf,"<feed ") || strstr(sniffbuf,"<updated>")) {
r->sniffed_mime = "application/atom+xml";
return;
}
/* Try to detect WML */
if (rp_strcasestr(sniffbuf,"<wml") || rp_strcasestr(sniffbuf,"<!DOCTYPE wml ")) {
r->sniffed_mime = "text/vnd.wap.wml";
return;
}
/* Try to detect <cross-domain-policy> - just promote the new, fancy MIME type for
security reasons. */
if (rp_strcasestr(sniffbuf,"<cross-domain-policy>")) {
r->sniffed_mime = "text/x-cross-domain-policy";
return;
}
/* Try to detect XHTML, SVG, or generic XML of some other type. */
if (rp_strcasestr(sniffbuf,"<?xml")) {
if (rp_strcasestr(sniffbuf,"<svg"))
r->sniffed_mime = "image/svg+xml";
else if (rp_strcasestr(sniffbuf,"<!doctype") && !rp_strcasestr(sniffbuf,"cross-domain-policy"))
r->sniffed_mime = "application/xhtml+xml";
else {
if (r->mime_type && !strcasecmp(r->mime_type,"text/xml"))
r->sniffed_mime = "text/xml";
else r->sniffed_mime = "application/xml";
}
return;
}
/* Try to detect generic HTML */
if (rp_strcasestr(sniffbuf,"<html") || rp_strcasestr(sniffbuf,"<meta") ||
rp_strcasestr(sniffbuf,"<head") || rp_strcasestr(sniffbuf,"<title") ||
rp_strcasestr(sniffbuf,"<!--") ||
rp_strcasestr(sniffbuf,"<!doctype") || rp_strcasestr(sniffbuf,"<body") ||
rp_strcasestr(sniffbuf,"<font") || rp_strcasestr(sniffbuf,"<br") ||
rp_strcasestr(sniffbuf,"<td") || rp_strcasestr(sniffbuf,"<div") ||
rp_strcasestr(sniffbuf,"<span") || rp_strcasestr(sniffbuf,"<img") ||
rp_strcasestr(sniffbuf,"<li") || rp_strcasestr(sniffbuf,"href=") ||
rp_strcasestr(sniffbuf,"<ol") || rp_strcasestr(sniffbuf,"<ul") ||
rp_strcasestr(sniffbuf,"<style") || rp_strcasestr(sniffbuf,"<script")) {
r->sniffed_mime = "text/html";
return;
}
/* Last resort for XML */
xxx = sniffbuf;
while (isspace(*xxx)) xxx++;
if (rp_strcasestr(xxx,"<![CDATA[") || (xxx[0] == '<' && (strstr(xxx,"</") || strstr(xxx,"/>") || strstr(xxx,"/ >")))) {
if (r->mime_type && !strcasecmp(r->mime_type,"text/xml"))
r->sniffed_mime = "text/xml";
else r->sniffed_mime = "application/xml";
}
/* Oh well, at least it seems to be text. */
r->sniffed_mime = "text/plain";
} else {
/* This is considerably less messy - binary signatures for some non-text files. */
if (sniffbuf[0] == 0xFF && sniffbuf[1] == 0xD8 &&
sniffbuf[2] == 0xFF) {
r->sniffed_mime = "image/jpeg";
/* Progressive JPEG; recognized by MSIE. */
if (r->mime_type && !strcasecmp(r->mime_type,"image/pjpeg"))
r->sniffed_mime = "image/pjpeg";
return;
}
if (sniffbuf[0] == 'G' && sniffbuf[1] == 'I' &&
sniffbuf[2] == 'F' && sniffbuf[3] == '8') {
r->sniffed_mime = "image/gif";
return;
}
if (sniffbuf[0] == 0x89 && sniffbuf[1] == 'P' &&
sniffbuf[2] == 'N' && sniffbuf[3] == 'G') {
r->sniffed_mime = "image/png";
return;
}
if (sniffbuf[0] == 'B' && sniffbuf[1] == 'M') {
r->sniffed_mime = "image/x-ms-bmp";
return;
}
if (sniffbuf[0] == 'I' && sniffbuf[1] == 'I' && sniffbuf[2] == 42) {
r->sniffed_mime = "image/tiff";
return;
}
if (sniffbuf[0] == 0xFF && sniffbuf[1] == 0xFB) {
r->sniffed_mime = "audio/mpeg";
return;
}
if (sniffbuf[0] == 0x00 && sniffbuf[1] == 0x00 &&
sniffbuf[2] == 0x01 && (sniffbuf[3] & 0xF0) == 0xB0) {
r->sniffed_mime = "video/mpeg";
return;
}
if (sniffbuf[0] == 'O' && sniffbuf[1] == 'g' &&
sniffbuf[2] == 'g' && sniffbuf[3] == 'S') {
r->sniffed_mime = "application/ogg";
return;
}
if (sniffbuf[0] == 'R' && sniffbuf[1] == 'I' &&
sniffbuf[2] == 'F' && sniffbuf[3] == 'F') {
if (sniffbuf[8] == 'A') {
if (sniffbuf[9] == 'C') {
r->sniffed_mime = "application/x-navi-animation";
} else {
r->sniffed_mime = "video/avi";
}
} else r->sniffed_mime = "audio/wav";
return;
}
if (sniffbuf[0] == 0x28 && sniffbuf[1] == 'R' &&
sniffbuf[2] == 'M' && sniffbuf[3] == 'F') {
r->sniffed_mime = "audio/x-realaudio";
return;
}
if (sniffbuf[0] == 0x30 && sniffbuf[1] == 0x26 &&
sniffbuf[2] == 0xB2) {
r->sniffed_mime = "video/x-ms-asf";
return;
}
if (!strncmp(sniffbuf+4,"free",4) || !strncmp(sniffbuf+4,"mdat",4) ||
!strncmp(sniffbuf+4,"wide",4) || !strncmp(sniffbuf+4,"pnot",4) ||
!strncmp(sniffbuf+4,"skip",4) || !strncmp(sniffbuf+4,"moov",4)) {
r->sniffed_mime = "video/quicktime";
return;
}
if ((sniffbuf[0] == 0x46 || sniffbuf[0] == 0x43) &&
sniffbuf[1] == 0x57 && sniffbuf[2] == 0x53) {
r->sniffed_mime = "application/x-shockwave-flash";
return;
}
if (sniffbuf[0] == 0x46 && sniffbuf[1] == 0x4C && sniffbuf[2] == 0x56) {
/* Again, multiple valid options in use; be polite. */
if (r->mime_type && !strcasecmp(r->mime_type,"video/flv"))
r->sniffed_mime = "video/flv";
else
r->sniffed_mime = "video/x-flv";
return;
}
if (r->payload_len > 3 && sniffbuf[0] == 0 && sniffbuf[1] == 0 && sniffbuf[2] < 3 && sniffbuf[3] == 0) {
/* Be polite again. */
if (r->mime_type && !strcasecmp(r->mime_type,"image/x-icon"))
r->sniffed_mime = "image/x-icon";
else
if (r->mime_type && !strcasecmp(r->mime_type,"image/bmp"))
r->sniffed_mime = "image/bmp";
else r->sniffed_mime = "image/vnd.microsoft.icon";
return;
}
if (sniffbuf[0] == '%' && sniffbuf[1] == 'P' && sniffbuf[2] == 'D' && sniffbuf[3] == 'F') {
r->sniffed_mime = "application/pdf";
return;
}
if (sniffbuf[0] == 'P' && sniffbuf[1] == 'K' && sniffbuf[2] < 6 && sniffbuf[3] < 7) {
if (rp_memmem(r->payload,r->payload_len,"META-INF/",9))
r->sniffed_mime = "application/java-archive";
else
r->sniffed_mime = "application/zip";
return;
}
if (sniffbuf[0] == 0xCA && sniffbuf[1] == 0xFE && sniffbuf[2] == 0xBA && sniffbuf[3] == 0xBE) {
r->sniffed_mime = "application/java-vm";
return;
}
/* Microsoft office is kind-of fuzzy. */
if (sniffbuf[0] == 0xD0 && sniffbuf[1] == 0xCF &&
sniffbuf[2] == 0x11 && sniffbuf[3] == 0xE0 && r->payload_len > 512) {
_u8 c = r->payload[512];
switch (c) {
case 0xEC: r->sniffed_mime = "application/msword"; break;
case 0xFD:
case 0x09: r->sniffed_mime = "application/vnd.ms-excel"; break;
case 0x00:
case 0x0F:
case 0xA0: r->sniffed_mime = "application/vnd.ms-powerpoint"; break;
}
return;
}
/* If we have no idea what it is, just leave it NULL. */
}
}