multipartparser.py 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. """
  2. Multi-part parsing for file uploads.
  3. Exposes one class, ``MultiPartParser``, which feeds chunks of uploaded data to
  4. file upload handlers for processing.
  5. """
  6. import base64
  7. import binascii
  8. import cgi
  9. import collections
  10. import html
  11. from urllib.parse import unquote
  12. from django.conf import settings
  13. from django.core.exceptions import (
  14. RequestDataTooBig, SuspiciousMultipartForm, TooManyFieldsSent,
  15. )
  16. from django.core.files.uploadhandler import (
  17. SkipFile, StopFutureHandlers, StopUpload,
  18. )
  19. from django.utils.datastructures import MultiValueDict
  20. from django.utils.encoding import force_str
  21. __all__ = ('MultiPartParser', 'MultiPartParserError', 'InputStreamExhausted')
  22. class MultiPartParserError(Exception):
  23. pass
  24. class InputStreamExhausted(Exception):
  25. """
  26. No more reads are allowed from this device.
  27. """
  28. pass
  29. RAW = "raw"
  30. FILE = "file"
  31. FIELD = "field"
  32. class MultiPartParser:
  33. """
  34. A rfc2388 multipart/form-data parser.
  35. ``MultiValueDict.parse()`` reads the input stream in ``chunk_size`` chunks
  36. and returns a tuple of ``(MultiValueDict(POST), MultiValueDict(FILES))``.
  37. """
  38. def __init__(self, META, input_data, upload_handlers, encoding=None):
  39. """
  40. Initialize the MultiPartParser object.
  41. :META:
  42. The standard ``META`` dictionary in Django request objects.
  43. :input_data:
  44. The raw post data, as a file-like object.
  45. :upload_handlers:
  46. A list of UploadHandler instances that perform operations on the
  47. uploaded data.
  48. :encoding:
  49. The encoding with which to treat the incoming data.
  50. """
  51. # Content-Type should contain multipart and the boundary information.
  52. content_type = META.get('CONTENT_TYPE', '')
  53. if not content_type.startswith('multipart/'):
  54. raise MultiPartParserError('Invalid Content-Type: %s' % content_type)
  55. # Parse the header to get the boundary to split the parts.
  56. try:
  57. ctypes, opts = parse_header(content_type.encode('ascii'))
  58. except UnicodeEncodeError:
  59. raise MultiPartParserError('Invalid non-ASCII Content-Type in multipart: %s' % force_str(content_type))
  60. boundary = opts.get('boundary')
  61. if not boundary or not cgi.valid_boundary(boundary):
  62. raise MultiPartParserError('Invalid boundary in multipart: %s' % force_str(boundary))
  63. # Content-Length should contain the length of the body we are about
  64. # to receive.
  65. try:
  66. content_length = int(META.get('CONTENT_LENGTH', 0))
  67. except (ValueError, TypeError):
  68. content_length = 0
  69. if content_length < 0:
  70. # This means we shouldn't continue...raise an error.
  71. raise MultiPartParserError("Invalid content length: %r" % content_length)
  72. if isinstance(boundary, str):
  73. boundary = boundary.encode('ascii')
  74. self._boundary = boundary
  75. self._input_data = input_data
  76. # For compatibility with low-level network APIs (with 32-bit integers),
  77. # the chunk size should be < 2^31, but still divisible by 4.
  78. possible_sizes = [x.chunk_size for x in upload_handlers if x.chunk_size]
  79. self._chunk_size = min([2 ** 31 - 4] + possible_sizes)
  80. self._meta = META
  81. self._encoding = encoding or settings.DEFAULT_CHARSET
  82. self._content_length = content_length
  83. self._upload_handlers = upload_handlers
  84. def parse(self):
  85. """
  86. Parse the POST data and break it into a FILES MultiValueDict and a POST
  87. MultiValueDict.
  88. Return a tuple containing the POST and FILES dictionary, respectively.
  89. """
  90. from django.http import QueryDict
  91. encoding = self._encoding
  92. handlers = self._upload_handlers
  93. # HTTP spec says that Content-Length >= 0 is valid
  94. # handling content-length == 0 before continuing
  95. if self._content_length == 0:
  96. return QueryDict(encoding=self._encoding), MultiValueDict()
  97. # See if any of the handlers take care of the parsing.
  98. # This allows overriding everything if need be.
  99. for handler in handlers:
  100. result = handler.handle_raw_input(
  101. self._input_data,
  102. self._meta,
  103. self._content_length,
  104. self._boundary,
  105. encoding,
  106. )
  107. # Check to see if it was handled
  108. if result is not None:
  109. return result[0], result[1]
  110. # Create the data structures to be used later.
  111. self._post = QueryDict(mutable=True)
  112. self._files = MultiValueDict()
  113. # Instantiate the parser and stream:
  114. stream = LazyStream(ChunkIter(self._input_data, self._chunk_size))
  115. # Whether or not to signal a file-completion at the beginning of the loop.
  116. old_field_name = None
  117. counters = [0] * len(handlers)
  118. # Number of bytes that have been read.
  119. num_bytes_read = 0
  120. # To count the number of keys in the request.
  121. num_post_keys = 0
  122. # To limit the amount of data read from the request.
  123. read_size = None
  124. try:
  125. for item_type, meta_data, field_stream in Parser(stream, self._boundary):
  126. if old_field_name:
  127. # We run this at the beginning of the next loop
  128. # since we cannot be sure a file is complete until
  129. # we hit the next boundary/part of the multipart content.
  130. self.handle_file_complete(old_field_name, counters)
  131. old_field_name = None
  132. try:
  133. disposition = meta_data['content-disposition'][1]
  134. field_name = disposition['name'].strip()
  135. except (KeyError, IndexError, AttributeError):
  136. continue
  137. transfer_encoding = meta_data.get('content-transfer-encoding')
  138. if transfer_encoding is not None:
  139. transfer_encoding = transfer_encoding[0].strip()
  140. field_name = force_str(field_name, encoding, errors='replace')
  141. if item_type == FIELD:
  142. # Avoid storing more than DATA_UPLOAD_MAX_NUMBER_FIELDS.
  143. num_post_keys += 1
  144. if (settings.DATA_UPLOAD_MAX_NUMBER_FIELDS is not None and
  145. settings.DATA_UPLOAD_MAX_NUMBER_FIELDS < num_post_keys):
  146. raise TooManyFieldsSent(
  147. 'The number of GET/POST parameters exceeded '
  148. 'settings.DATA_UPLOAD_MAX_NUMBER_FIELDS.'
  149. )
  150. # Avoid reading more than DATA_UPLOAD_MAX_MEMORY_SIZE.
  151. if settings.DATA_UPLOAD_MAX_MEMORY_SIZE is not None:
  152. read_size = settings.DATA_UPLOAD_MAX_MEMORY_SIZE - num_bytes_read
  153. # This is a post field, we can just set it in the post
  154. if transfer_encoding == 'base64':
  155. raw_data = field_stream.read(size=read_size)
  156. num_bytes_read += len(raw_data)
  157. try:
  158. data = base64.b64decode(raw_data)
  159. except binascii.Error:
  160. data = raw_data
  161. else:
  162. data = field_stream.read(size=read_size)
  163. num_bytes_read += len(data)
  164. # Add two here to make the check consistent with the
  165. # x-www-form-urlencoded check that includes '&='.
  166. num_bytes_read += len(field_name) + 2
  167. if (settings.DATA_UPLOAD_MAX_MEMORY_SIZE is not None and
  168. num_bytes_read > settings.DATA_UPLOAD_MAX_MEMORY_SIZE):
  169. raise RequestDataTooBig('Request body exceeded settings.DATA_UPLOAD_MAX_MEMORY_SIZE.')
  170. self._post.appendlist(field_name, force_str(data, encoding, errors='replace'))
  171. elif item_type == FILE:
  172. # This is a file, use the handler...
  173. file_name = disposition.get('filename')
  174. if file_name:
  175. file_name = force_str(file_name, encoding, errors='replace')
  176. file_name = self.IE_sanitize(html.unescape(file_name))
  177. if not file_name:
  178. continue
  179. content_type, content_type_extra = meta_data.get('content-type', ('', {}))
  180. content_type = content_type.strip()
  181. charset = content_type_extra.get('charset')
  182. try:
  183. content_length = int(meta_data.get('content-length')[0])
  184. except (IndexError, TypeError, ValueError):
  185. content_length = None
  186. counters = [0] * len(handlers)
  187. try:
  188. for handler in handlers:
  189. try:
  190. handler.new_file(
  191. field_name, file_name, content_type,
  192. content_length, charset, content_type_extra,
  193. )
  194. except StopFutureHandlers:
  195. break
  196. for chunk in field_stream:
  197. if transfer_encoding == 'base64':
  198. # We only special-case base64 transfer encoding
  199. # We should always decode base64 chunks by multiple of 4,
  200. # ignoring whitespace.
  201. stripped_chunk = b"".join(chunk.split())
  202. remaining = len(stripped_chunk) % 4
  203. while remaining != 0:
  204. over_chunk = field_stream.read(4 - remaining)
  205. stripped_chunk += b"".join(over_chunk.split())
  206. remaining = len(stripped_chunk) % 4
  207. try:
  208. chunk = base64.b64decode(stripped_chunk)
  209. except Exception as exc:
  210. # Since this is only a chunk, any error is an unfixable error.
  211. raise MultiPartParserError("Could not decode base64 data.") from exc
  212. for i, handler in enumerate(handlers):
  213. chunk_length = len(chunk)
  214. chunk = handler.receive_data_chunk(chunk, counters[i])
  215. counters[i] += chunk_length
  216. if chunk is None:
  217. # Don't continue if the chunk received by
  218. # the handler is None.
  219. break
  220. except SkipFile:
  221. self._close_files()
  222. # Just use up the rest of this file...
  223. exhaust(field_stream)
  224. else:
  225. # Handle file upload completions on next iteration.
  226. old_field_name = field_name
  227. else:
  228. # If this is neither a FIELD or a FILE, just exhaust the stream.
  229. exhaust(stream)
  230. except StopUpload as e:
  231. self._close_files()
  232. if not e.connection_reset:
  233. exhaust(self._input_data)
  234. else:
  235. # Make sure that the request data is all fed
  236. exhaust(self._input_data)
  237. # Signal that the upload has completed.
  238. # any() shortcircuits if a handler's upload_complete() returns a value.
  239. any(handler.upload_complete() for handler in handlers)
  240. self._post._mutable = False
  241. return self._post, self._files
  242. def handle_file_complete(self, old_field_name, counters):
  243. """
  244. Handle all the signaling that takes place when a file is complete.
  245. """
  246. for i, handler in enumerate(self._upload_handlers):
  247. file_obj = handler.file_complete(counters[i])
  248. if file_obj:
  249. # If it returns a file object, then set the files dict.
  250. self._files.appendlist(force_str(old_field_name, self._encoding, errors='replace'), file_obj)
  251. break
  252. def IE_sanitize(self, filename):
  253. """Cleanup filename from Internet Explorer full paths."""
  254. return filename and filename[filename.rfind("\\") + 1:].strip()
  255. def _close_files(self):
  256. # Free up all file handles.
  257. # FIXME: this currently assumes that upload handlers store the file as 'file'
  258. # We should document that... (Maybe add handler.free_file to complement new_file)
  259. for handler in self._upload_handlers:
  260. if hasattr(handler, 'file'):
  261. handler.file.close()
  262. class LazyStream:
  263. """
  264. The LazyStream wrapper allows one to get and "unget" bytes from a stream.
  265. Given a producer object (an iterator that yields bytestrings), the
  266. LazyStream object will support iteration, reading, and keeping a "look-back"
  267. variable in case you need to "unget" some bytes.
  268. """
  269. def __init__(self, producer, length=None):
  270. """
  271. Every LazyStream must have a producer when instantiated.
  272. A producer is an iterable that returns a string each time it
  273. is called.
  274. """
  275. self._producer = producer
  276. self._empty = False
  277. self._leftover = b''
  278. self.length = length
  279. self.position = 0
  280. self._remaining = length
  281. self._unget_history = []
  282. def tell(self):
  283. return self.position
  284. def read(self, size=None):
  285. def parts():
  286. remaining = self._remaining if size is None else size
  287. # do the whole thing in one shot if no limit was provided.
  288. if remaining is None:
  289. yield b''.join(self)
  290. return
  291. # otherwise do some bookkeeping to return exactly enough
  292. # of the stream and stashing any extra content we get from
  293. # the producer
  294. while remaining != 0:
  295. assert remaining > 0, 'remaining bytes to read should never go negative'
  296. try:
  297. chunk = next(self)
  298. except StopIteration:
  299. return
  300. else:
  301. emitting = chunk[:remaining]
  302. self.unget(chunk[remaining:])
  303. remaining -= len(emitting)
  304. yield emitting
  305. return b''.join(parts())
  306. def __next__(self):
  307. """
  308. Used when the exact number of bytes to read is unimportant.
  309. Return whatever chunk is conveniently returned from the iterator.
  310. Useful to avoid unnecessary bookkeeping if performance is an issue.
  311. """
  312. if self._leftover:
  313. output = self._leftover
  314. self._leftover = b''
  315. else:
  316. output = next(self._producer)
  317. self._unget_history = []
  318. self.position += len(output)
  319. return output
  320. def close(self):
  321. """
  322. Used to invalidate/disable this lazy stream.
  323. Replace the producer with an empty list. Any leftover bytes that have
  324. already been read will still be reported upon read() and/or next().
  325. """
  326. self._producer = []
  327. def __iter__(self):
  328. return self
  329. def unget(self, bytes):
  330. """
  331. Place bytes back onto the front of the lazy stream.
  332. Future calls to read() will return those bytes first. The
  333. stream position and thus tell() will be rewound.
  334. """
  335. if not bytes:
  336. return
  337. self._update_unget_history(len(bytes))
  338. self.position -= len(bytes)
  339. self._leftover = bytes + self._leftover
  340. def _update_unget_history(self, num_bytes):
  341. """
  342. Update the unget history as a sanity check to see if we've pushed
  343. back the same number of bytes in one chunk. If we keep ungetting the
  344. same number of bytes many times (here, 50), we're mostly likely in an
  345. infinite loop of some sort. This is usually caused by a
  346. maliciously-malformed MIME request.
  347. """
  348. self._unget_history = [num_bytes] + self._unget_history[:49]
  349. number_equal = len([
  350. current_number for current_number in self._unget_history
  351. if current_number == num_bytes
  352. ])
  353. if number_equal > 40:
  354. raise SuspiciousMultipartForm(
  355. "The multipart parser got stuck, which shouldn't happen with"
  356. " normal uploaded files. Check for malicious upload activity;"
  357. " if there is none, report this to the Django developers."
  358. )
  359. class ChunkIter:
  360. """
  361. An iterable that will yield chunks of data. Given a file-like object as the
  362. constructor, yield chunks of read operations from that object.
  363. """
  364. def __init__(self, flo, chunk_size=64 * 1024):
  365. self.flo = flo
  366. self.chunk_size = chunk_size
  367. def __next__(self):
  368. try:
  369. data = self.flo.read(self.chunk_size)
  370. except InputStreamExhausted:
  371. raise StopIteration()
  372. if data:
  373. return data
  374. else:
  375. raise StopIteration()
  376. def __iter__(self):
  377. return self
  378. class InterBoundaryIter:
  379. """
  380. A Producer that will iterate over boundaries.
  381. """
  382. def __init__(self, stream, boundary):
  383. self._stream = stream
  384. self._boundary = boundary
  385. def __iter__(self):
  386. return self
  387. def __next__(self):
  388. try:
  389. return LazyStream(BoundaryIter(self._stream, self._boundary))
  390. except InputStreamExhausted:
  391. raise StopIteration()
  392. class BoundaryIter:
  393. """
  394. A Producer that is sensitive to boundaries.
  395. Will happily yield bytes until a boundary is found. Will yield the bytes
  396. before the boundary, throw away the boundary bytes themselves, and push the
  397. post-boundary bytes back on the stream.
  398. The future calls to next() after locating the boundary will raise a
  399. StopIteration exception.
  400. """
  401. def __init__(self, stream, boundary):
  402. self._stream = stream
  403. self._boundary = boundary
  404. self._done = False
  405. # rollback an additional six bytes because the format is like
  406. # this: CRLF<boundary>[--CRLF]
  407. self._rollback = len(boundary) + 6
  408. # Try to use mx fast string search if available. Otherwise
  409. # use Python find. Wrap the latter for consistency.
  410. unused_char = self._stream.read(1)
  411. if not unused_char:
  412. raise InputStreamExhausted()
  413. self._stream.unget(unused_char)
  414. def __iter__(self):
  415. return self
  416. def __next__(self):
  417. if self._done:
  418. raise StopIteration()
  419. stream = self._stream
  420. rollback = self._rollback
  421. bytes_read = 0
  422. chunks = []
  423. for bytes in stream:
  424. bytes_read += len(bytes)
  425. chunks.append(bytes)
  426. if bytes_read > rollback:
  427. break
  428. if not bytes:
  429. break
  430. else:
  431. self._done = True
  432. if not chunks:
  433. raise StopIteration()
  434. chunk = b''.join(chunks)
  435. boundary = self._find_boundary(chunk)
  436. if boundary:
  437. end, next = boundary
  438. stream.unget(chunk[next:])
  439. self._done = True
  440. return chunk[:end]
  441. else:
  442. # make sure we don't treat a partial boundary (and
  443. # its separators) as data
  444. if not chunk[:-rollback]: # and len(chunk) >= (len(self._boundary) + 6):
  445. # There's nothing left, we should just return and mark as done.
  446. self._done = True
  447. return chunk
  448. else:
  449. stream.unget(chunk[-rollback:])
  450. return chunk[:-rollback]
  451. def _find_boundary(self, data):
  452. """
  453. Find a multipart boundary in data.
  454. Should no boundary exist in the data, return None. Otherwise, return
  455. a tuple containing the indices of the following:
  456. * the end of current encapsulation
  457. * the start of the next encapsulation
  458. """
  459. index = data.find(self._boundary)
  460. if index < 0:
  461. return None
  462. else:
  463. end = index
  464. next = index + len(self._boundary)
  465. # backup over CRLF
  466. last = max(0, end - 1)
  467. if data[last:last + 1] == b'\n':
  468. end -= 1
  469. last = max(0, end - 1)
  470. if data[last:last + 1] == b'\r':
  471. end -= 1
  472. return end, next
  473. def exhaust(stream_or_iterable):
  474. """Exhaust an iterator or stream."""
  475. try:
  476. iterator = iter(stream_or_iterable)
  477. except TypeError:
  478. iterator = ChunkIter(stream_or_iterable, 16384)
  479. collections.deque(iterator, maxlen=0) # consume iterator quickly.
  480. def parse_boundary_stream(stream, max_header_size):
  481. """
  482. Parse one and exactly one stream that encapsulates a boundary.
  483. """
  484. # Stream at beginning of header, look for end of header
  485. # and parse it if found. The header must fit within one
  486. # chunk.
  487. chunk = stream.read(max_header_size)
  488. # 'find' returns the top of these four bytes, so we'll
  489. # need to munch them later to prevent them from polluting
  490. # the payload.
  491. header_end = chunk.find(b'\r\n\r\n')
  492. def _parse_header(line):
  493. main_value_pair, params = parse_header(line)
  494. try:
  495. name, value = main_value_pair.split(':', 1)
  496. except ValueError:
  497. raise ValueError("Invalid header: %r" % line)
  498. return name, (value, params)
  499. if header_end == -1:
  500. # we find no header, so we just mark this fact and pass on
  501. # the stream verbatim
  502. stream.unget(chunk)
  503. return (RAW, {}, stream)
  504. header = chunk[:header_end]
  505. # here we place any excess chunk back onto the stream, as
  506. # well as throwing away the CRLFCRLF bytes from above.
  507. stream.unget(chunk[header_end + 4:])
  508. TYPE = RAW
  509. outdict = {}
  510. # Eliminate blank lines
  511. for line in header.split(b'\r\n'):
  512. # This terminology ("main value" and "dictionary of
  513. # parameters") is from the Python docs.
  514. try:
  515. name, (value, params) = _parse_header(line)
  516. except ValueError:
  517. continue
  518. if name == 'content-disposition':
  519. TYPE = FIELD
  520. if params.get('filename'):
  521. TYPE = FILE
  522. outdict[name] = value, params
  523. if TYPE == RAW:
  524. stream.unget(chunk)
  525. return (TYPE, outdict, stream)
  526. class Parser:
  527. def __init__(self, stream, boundary):
  528. self._stream = stream
  529. self._separator = b'--' + boundary
  530. def __iter__(self):
  531. boundarystream = InterBoundaryIter(self._stream, self._separator)
  532. for sub_stream in boundarystream:
  533. # Iterate over each part
  534. yield parse_boundary_stream(sub_stream, 1024)
  535. def parse_header(line):
  536. """
  537. Parse the header into a key-value.
  538. Input (line): bytes, output: str for key/name, bytes for values which
  539. will be decoded later.
  540. """
  541. plist = _parse_header_params(b';' + line)
  542. key = plist.pop(0).lower().decode('ascii')
  543. pdict = {}
  544. for p in plist:
  545. i = p.find(b'=')
  546. if i >= 0:
  547. has_encoding = False
  548. name = p[:i].strip().lower().decode('ascii')
  549. if name.endswith('*'):
  550. # Lang/encoding embedded in the value (like "filename*=UTF-8''file.ext")
  551. # http://tools.ietf.org/html/rfc2231#section-4
  552. name = name[:-1]
  553. if p.count(b"'") == 2:
  554. has_encoding = True
  555. value = p[i + 1:].strip()
  556. if has_encoding:
  557. encoding, lang, value = value.split(b"'")
  558. value = unquote(value.decode(), encoding=encoding.decode())
  559. if len(value) >= 2 and value[:1] == value[-1:] == b'"':
  560. value = value[1:-1]
  561. value = value.replace(b'\\\\', b'\\').replace(b'\\"', b'"')
  562. pdict[name] = value
  563. return key, pdict
  564. def _parse_header_params(s):
  565. plist = []
  566. while s[:1] == b';':
  567. s = s[1:]
  568. end = s.find(b';')
  569. while end > 0 and s.count(b'"', 0, end) % 2:
  570. end = s.find(b';', end + 1)
  571. if end < 0:
  572. end = len(s)
  573. f = s[:end]
  574. plist.append(f.strip())
  575. s = s[end:]
  576. return plist