-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathMultipartContentParser.cs
316 lines (252 loc) · 9.87 KB
/
MultipartContentParser.cs
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
//------------------------------------------------------------------------------
// <copyright file="MultipartContentParser.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* Multipart content parser.
*
* Copyright (c) 1998 Microsoft Corporation
*/
namespace System.Web {
using System.Text;
using System.Collections;
using System.Globalization;
using System.Web.Util;
/*
* Element of the multipart content
*/
internal sealed class MultipartContentElement {
private String _name;
private String _filename;
private String _contentType;
private HttpRawUploadedContent _data;
private int _offset;
private int _length;
internal MultipartContentElement(String name, String filename, String contentType, HttpRawUploadedContent data, int offset, int length) {
_name = name;
_filename = filename;
_contentType = contentType;
_data = data;
_offset = offset;
_length = length;
}
internal bool IsFile {
get { return(_filename != null);}
}
internal bool IsFormItem {
get { return(_filename == null);}
}
internal String Name {
get { return _name;}
}
internal HttpPostedFile GetAsPostedFile() {
return new HttpPostedFile(
_filename,
_contentType,
new HttpInputStream(_data, _offset, _length));
}
internal String GetAsString(Encoding encoding) {
if (_length > 0) {
return encoding.GetString(_data.GetAsByteArray(_offset, _length));
}
else {
return String.Empty;
}
}
}
/*
* Multipart content parser. Split content into elements.
*/
internal sealed class HttpMultipartContentTemplateParser {
private HttpRawUploadedContent _data;
private int _length;
private int _pos;
private ArrayList _elements = new ArrayList();
// currently parsed line
private int _lineStart = -1;
private int _lineLength = -1;
// last boundary has extra --
private bool _lastBoundaryFound;
// part separator
private byte[] _boundary;
// current header values
private String _partName;
private String _partFilename;
private String _partContentType;
// current part's content data
private int _partDataStart = -1;
private int _partDataLength = -1;
// encoding
private Encoding _encoding;
private HttpMultipartContentTemplateParser(HttpRawUploadedContent data, int length, byte[] boundary, Encoding encoding) {
_data = data;
_length = length;
_boundary = boundary;
_encoding = encoding;
}
private bool AtEndOfData() {
return(_pos >= _length || _lastBoundaryFound);
}
private bool GetNextLine() {
int i = _pos;
_lineStart = -1;
while (i < _length) {
if (_data[i] == 10) { // '\n'
_lineStart = _pos;
_lineLength = i - _pos;
_pos = i+1;
// ignore \r
if (_lineLength > 0 && _data[i-1] == 13)
_lineLength--;
// line found
break;
}
if (++i == _length) {
// last line doesn't end with \n
_lineStart = _pos;
_lineLength = i - _pos;
_pos = _length;
}
}
return(_lineStart >= 0);
}
private String ExtractValueFromContentDispositionHeader(String l, int pos, String name) {
String pattern = " " + name + "=";
int i1 = CultureInfo.InvariantCulture.CompareInfo.IndexOf(l, pattern, pos, CompareOptions.IgnoreCase);
if (i1 < 0) {
pattern = ";" + name + "=";
i1 = CultureInfo.InvariantCulture.CompareInfo.IndexOf(l, pattern, pos, CompareOptions.IgnoreCase);
if (i1 < 0) {
pattern = name + "=";
i1 = CultureInfo.InvariantCulture.CompareInfo.IndexOf(l, pattern, pos, CompareOptions.IgnoreCase);
}
}
if (i1 < 0)
return null;
i1 += pattern.Length;
if (i1 >= l.Length)
return String.Empty;
if (l[i1] == '"') {
i1 += 1;
int i2 = l.IndexOf('"', i1);
if (i2 < 0)
return null;
if (i2 == i1)
return String.Empty;
return l.Substring(i1, i2-i1);
}
else {
int i2 = l.IndexOf(';', i1);
if (i2 < 0)
i2 = l.Length;
return l.Substring(i1, i2-i1).Trim();
}
}
private void ParsePartHeaders() {
_partName = null;
_partFilename = null;
_partContentType = null;
while (GetNextLine()) {
if (_lineLength == 0)
break; // empty line signals end of headers
// get line as String
byte[] lineBytes = new byte[_lineLength];
_data.CopyBytes(_lineStart, lineBytes, 0, _lineLength);
String line = _encoding.GetString(lineBytes);
// parse into header and value
int ic = line.IndexOf(':');
if (ic < 0)
continue; // not a header
// remeber header
String header = line.Substring(0, ic);
if (StringUtil.EqualsIgnoreCase(header, "Content-Disposition")) {
// parse name and filename
_partName = ExtractValueFromContentDispositionHeader(line, ic+1, "name");
_partFilename = ExtractValueFromContentDispositionHeader(line, ic+1, "filename");
}
else if (StringUtil.EqualsIgnoreCase(header, "Content-Type")) {
_partContentType = line.Substring(ic+1).Trim();
}
}
}
private bool AtBoundaryLine() {
// check for either regular or last boundary line length
int len = _boundary.Length;
if (_lineLength != len && _lineLength != len+2)
return false;
// match with boundary
for (int i = 0; i < len; i++) {
if (_data[_lineStart+i] != _boundary[i])
return false;
}
// regular boundary line?
if (_lineLength == len)
return true;
// last boundary line? (has to end with "--")
if (_data[_lineStart+len] != 45 || _data[_lineStart+len+1] != 45)
return false;
_lastBoundaryFound = true; // remember that it is last
return true;
}
private void ParsePartData() {
_partDataStart = _pos;
_partDataLength = -1;
while (GetNextLine()) {
if (AtBoundaryLine()) {
// calc length: adjust to exclude [\r]\n before the separator
int iEnd = _lineStart - 1;
if (_data[iEnd] == 10) // \n
iEnd--;
if (_data[iEnd] == 13) // \r
iEnd--;
_partDataLength = iEnd - _partDataStart + 1;
break;
}
}
}
private void ParseIntoElementList() {
//
// Skip until first boundary
//
while (GetNextLine()) {
if (AtBoundaryLine())
break;
}
if (AtEndOfData())
return;
//
// Parse the parts
//
do {
// Parse current part's headers
ParsePartHeaders();
if (AtEndOfData())
break; // cannot stop after headers
// Parse current part's data
ParsePartData();
if (_partDataLength == -1)
break; // ending boundary not found
// Remember the current part (if named)
if (_partName != null) {
_elements.Add(new MultipartContentElement(
_partName,
_partFilename,
_partContentType,
_data,
_partDataStart,
_partDataLength));
}
}
while (!AtEndOfData());
}
/*
* Static method to do the parsing
*/
internal static MultipartContentElement[] Parse(HttpRawUploadedContent data, int length, byte[] boundary, Encoding encoding) {
HttpMultipartContentTemplateParser parser = new HttpMultipartContentTemplateParser(data, length, boundary, encoding);
parser.ParseIntoElementList();
return (MultipartContentElement[])parser._elements.ToArray(typeof(MultipartContentElement));
}
}
}