feedparser.py 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. # Copyright (C) 2004-2006 Python Software Foundation
  2. # Authors: Baxter, Wouters and Warsaw
  3. # Contact: email-sig@python.org
  4. """FeedParser - An email feed parser.
  5. The feed parser implements an interface for incrementally parsing an email
  6. message, line by line. This has advantages for certain applications, such as
  7. those reading email messages off a socket.
  8. FeedParser.feed() is the primary interface for pushing new data into the
  9. parser. It returns when there's nothing more it can do with the available
  10. data. When you have no more data to push into the parser, call .close().
  11. This completes the parsing and returns the root message object.
  12. The other advantage of this parser is that it will never raise a parsing
  13. exception. Instead, when it finds something unexpected, it adds a 'defect' to
  14. the current message. Defects are just instances that live on the message
  15. object's .defects attribute.
  16. """
  17. __all__ = ['FeedParser', 'BytesFeedParser']
  18. import re
  19. from email import errors
  20. from email import message
  21. from email._policybase import compat32
  22. from collections import deque
  23. NLCRE = re.compile('\r\n|\r|\n')
  24. NLCRE_bol = re.compile('(\r\n|\r|\n)')
  25. NLCRE_eol = re.compile('(\r\n|\r|\n)\Z')
  26. NLCRE_crack = re.compile('(\r\n|\r|\n)')
  27. # RFC 2822 $3.6.8 Optional fields. ftext is %d33-57 / %d59-126, Any character
  28. # except controls, SP, and ":".
  29. headerRE = re.compile(r'^(From |[\041-\071\073-\176]*:|[\t ])')
  30. EMPTYSTRING = ''
  31. NL = '\n'
  32. NeedMoreData = object()
  33. class BufferedSubFile(object):
  34. """A file-ish object that can have new data loaded into it.
  35. You can also push and pop line-matching predicates onto a stack. When the
  36. current predicate matches the current line, a false EOF response
  37. (i.e. empty string) is returned instead. This lets the parser adhere to a
  38. simple abstraction -- it parses until EOF closes the current message.
  39. """
  40. def __init__(self):
  41. # Chunks of the last partial line pushed into this object.
  42. self._partial = []
  43. # A deque of full, pushed lines
  44. self._lines = deque()
  45. # The stack of false-EOF checking predicates.
  46. self._eofstack = []
  47. # A flag indicating whether the file has been closed or not.
  48. self._closed = False
  49. def push_eof_matcher(self, pred):
  50. self._eofstack.append(pred)
  51. def pop_eof_matcher(self):
  52. return self._eofstack.pop()
  53. def close(self):
  54. # Don't forget any trailing partial line.
  55. self.pushlines(''.join(self._partial).splitlines(True))
  56. self._partial = []
  57. self._closed = True
  58. def readline(self):
  59. if not self._lines:
  60. if self._closed:
  61. return ''
  62. return NeedMoreData
  63. # Pop the line off the stack and see if it matches the current
  64. # false-EOF predicate.
  65. line = self._lines.popleft()
  66. # RFC 2046, section 5.1.2 requires us to recognize outer level
  67. # boundaries at any level of inner nesting. Do this, but be sure it's
  68. # in the order of most to least nested.
  69. for ateof in reversed(self._eofstack):
  70. if ateof(line):
  71. # We're at the false EOF. But push the last line back first.
  72. self._lines.appendleft(line)
  73. return ''
  74. return line
  75. def unreadline(self, line):
  76. # Let the consumer push a line back into the buffer.
  77. assert line is not NeedMoreData
  78. self._lines.appendleft(line)
  79. def push(self, data):
  80. """Push some new data into this object."""
  81. # Crack into lines, but preserve the linesep characters on the end of each
  82. parts = data.splitlines(True)
  83. if not parts or not parts[0].endswith(('\n', '\r')):
  84. # No new complete lines, so just accumulate partials
  85. self._partial += parts
  86. return
  87. if self._partial:
  88. # If there are previous leftovers, complete them now
  89. self._partial.append(parts[0])
  90. parts[0:1] = ''.join(self._partial).splitlines(True)
  91. del self._partial[:]
  92. # If the last element of the list does not end in a newline, then treat
  93. # it as a partial line. We only check for '\n' here because a line
  94. # ending with '\r' might be a line that was split in the middle of a
  95. # '\r\n' sequence (see bugs 1555570 and 1721862).
  96. if not parts[-1].endswith('\n'):
  97. self._partial = [parts.pop()]
  98. self.pushlines(parts)
  99. def pushlines(self, lines):
  100. self._lines.extend(lines)
  101. def __iter__(self):
  102. return self
  103. def __next__(self):
  104. line = self.readline()
  105. if line == '':
  106. raise StopIteration
  107. return line
  108. class FeedParser:
  109. """A feed-style parser of email."""
  110. def __init__(self, _factory=None, *, policy=compat32):
  111. """_factory is called with no arguments to create a new message obj
  112. The policy keyword specifies a policy object that controls a number of
  113. aspects of the parser's operation. The default policy maintains
  114. backward compatibility.
  115. """
  116. self.policy = policy
  117. self._factory_kwds = lambda: {'policy': self.policy}
  118. if _factory is None:
  119. # What this should be:
  120. #self._factory = policy.default_message_factory
  121. # but, because we are post 3.4 feature freeze, fix with temp hack:
  122. if self.policy is compat32:
  123. self._factory = message.Message
  124. else:
  125. self._factory = message.EmailMessage
  126. else:
  127. self._factory = _factory
  128. try:
  129. _factory(policy=self.policy)
  130. except TypeError:
  131. # Assume this is an old-style factory
  132. self._factory_kwds = lambda: {}
  133. self._input = BufferedSubFile()
  134. self._msgstack = []
  135. self._parse = self._parsegen().__next__
  136. self._cur = None
  137. self._last = None
  138. self._headersonly = False
  139. # Non-public interface for supporting Parser's headersonly flag
  140. def _set_headersonly(self):
  141. self._headersonly = True
  142. def feed(self, data):
  143. """Push more data into the parser."""
  144. self._input.push(data)
  145. self._call_parse()
  146. def _call_parse(self):
  147. try:
  148. self._parse()
  149. except StopIteration:
  150. pass
  151. def close(self):
  152. """Parse all remaining data and return the root message object."""
  153. self._input.close()
  154. self._call_parse()
  155. root = self._pop_message()
  156. assert not self._msgstack
  157. # Look for final set of defects
  158. if root.get_content_maintype() == 'multipart' \
  159. and not root.is_multipart():
  160. defect = errors.MultipartInvariantViolationDefect()
  161. self.policy.handle_defect(root, defect)
  162. return root
  163. def _new_message(self):
  164. msg = self._factory(**self._factory_kwds())
  165. if self._cur and self._cur.get_content_type() == 'multipart/digest':
  166. msg.set_default_type('message/rfc822')
  167. if self._msgstack:
  168. self._msgstack[-1].attach(msg)
  169. self._msgstack.append(msg)
  170. self._cur = msg
  171. self._last = msg
  172. def _pop_message(self):
  173. retval = self._msgstack.pop()
  174. if self._msgstack:
  175. self._cur = self._msgstack[-1]
  176. else:
  177. self._cur = None
  178. return retval
  179. def _parsegen(self):
  180. # Create a new message and start by parsing headers.
  181. self._new_message()
  182. headers = []
  183. # Collect the headers, searching for a line that doesn't match the RFC
  184. # 2822 header or continuation pattern (including an empty line).
  185. for line in self._input:
  186. if line is NeedMoreData:
  187. yield NeedMoreData
  188. continue
  189. if not headerRE.match(line):
  190. # If we saw the RFC defined header/body separator
  191. # (i.e. newline), just throw it away. Otherwise the line is
  192. # part of the body so push it back.
  193. if not NLCRE.match(line):
  194. defect = errors.MissingHeaderBodySeparatorDefect()
  195. self.policy.handle_defect(self._cur, defect)
  196. self._input.unreadline(line)
  197. break
  198. headers.append(line)
  199. # Done with the headers, so parse them and figure out what we're
  200. # supposed to see in the body of the message.
  201. self._parse_headers(headers)
  202. # Headers-only parsing is a backwards compatibility hack, which was
  203. # necessary in the older parser, which could raise errors. All
  204. # remaining lines in the input are thrown into the message body.
  205. if self._headersonly:
  206. lines = []
  207. while True:
  208. line = self._input.readline()
  209. if line is NeedMoreData:
  210. yield NeedMoreData
  211. continue
  212. if line == '':
  213. break
  214. lines.append(line)
  215. self._cur.set_payload(EMPTYSTRING.join(lines))
  216. return
  217. if self._cur.get_content_type() == 'message/delivery-status':
  218. # message/delivery-status contains blocks of headers separated by
  219. # a blank line. We'll represent each header block as a separate
  220. # nested message object, but the processing is a bit different
  221. # than standard message/* types because there is no body for the
  222. # nested messages. A blank line separates the subparts.
  223. while True:
  224. self._input.push_eof_matcher(NLCRE.match)
  225. for retval in self._parsegen():
  226. if retval is NeedMoreData:
  227. yield NeedMoreData
  228. continue
  229. break
  230. msg = self._pop_message()
  231. # We need to pop the EOF matcher in order to tell if we're at
  232. # the end of the current file, not the end of the last block
  233. # of message headers.
  234. self._input.pop_eof_matcher()
  235. # The input stream must be sitting at the newline or at the
  236. # EOF. We want to see if we're at the end of this subpart, so
  237. # first consume the blank line, then test the next line to see
  238. # if we're at this subpart's EOF.
  239. while True:
  240. line = self._input.readline()
  241. if line is NeedMoreData:
  242. yield NeedMoreData
  243. continue
  244. break
  245. while True:
  246. line = self._input.readline()
  247. if line is NeedMoreData:
  248. yield NeedMoreData
  249. continue
  250. break
  251. if line == '':
  252. break
  253. # Not at EOF so this is a line we're going to need.
  254. self._input.unreadline(line)
  255. return
  256. if self._cur.get_content_maintype() == 'message':
  257. # The message claims to be a message/* type, then what follows is
  258. # another RFC 2822 message.
  259. for retval in self._parsegen():
  260. if retval is NeedMoreData:
  261. yield NeedMoreData
  262. continue
  263. break
  264. self._pop_message()
  265. return
  266. if self._cur.get_content_maintype() == 'multipart':
  267. boundary = self._cur.get_boundary()
  268. if boundary is None:
  269. # The message /claims/ to be a multipart but it has not
  270. # defined a boundary. That's a problem which we'll handle by
  271. # reading everything until the EOF and marking the message as
  272. # defective.
  273. defect = errors.NoBoundaryInMultipartDefect()
  274. self.policy.handle_defect(self._cur, defect)
  275. lines = []
  276. for line in self._input:
  277. if line is NeedMoreData:
  278. yield NeedMoreData
  279. continue
  280. lines.append(line)
  281. self._cur.set_payload(EMPTYSTRING.join(lines))
  282. return
  283. # Make sure a valid content type was specified per RFC 2045:6.4.
  284. if (self._cur.get('content-transfer-encoding', '8bit').lower()
  285. not in ('7bit', '8bit', 'binary')):
  286. defect = errors.InvalidMultipartContentTransferEncodingDefect()
  287. self.policy.handle_defect(self._cur, defect)
  288. # Create a line match predicate which matches the inter-part
  289. # boundary as well as the end-of-multipart boundary. Don't push
  290. # this onto the input stream until we've scanned past the
  291. # preamble.
  292. separator = '--' + boundary
  293. boundaryre = re.compile(
  294. '(?P<sep>' + re.escape(separator) +
  295. r')(?P<end>--)?(?P<ws>[ \t]*)(?P<linesep>\r\n|\r|\n)?$')
  296. capturing_preamble = True
  297. preamble = []
  298. linesep = False
  299. close_boundary_seen = False
  300. while True:
  301. line = self._input.readline()
  302. if line is NeedMoreData:
  303. yield NeedMoreData
  304. continue
  305. if line == '':
  306. break
  307. mo = boundaryre.match(line)
  308. if mo:
  309. # If we're looking at the end boundary, we're done with
  310. # this multipart. If there was a newline at the end of
  311. # the closing boundary, then we need to initialize the
  312. # epilogue with the empty string (see below).
  313. if mo.group('end'):
  314. close_boundary_seen = True
  315. linesep = mo.group('linesep')
  316. break
  317. # We saw an inter-part boundary. Were we in the preamble?
  318. if capturing_preamble:
  319. if preamble:
  320. # According to RFC 2046, the last newline belongs
  321. # to the boundary.
  322. lastline = preamble[-1]
  323. eolmo = NLCRE_eol.search(lastline)
  324. if eolmo:
  325. preamble[-1] = lastline[:-len(eolmo.group(0))]
  326. self._cur.preamble = EMPTYSTRING.join(preamble)
  327. capturing_preamble = False
  328. self._input.unreadline(line)
  329. continue
  330. # We saw a boundary separating two parts. Consume any
  331. # multiple boundary lines that may be following. Our
  332. # interpretation of RFC 2046 BNF grammar does not produce
  333. # body parts within such double boundaries.
  334. while True:
  335. line = self._input.readline()
  336. if line is NeedMoreData:
  337. yield NeedMoreData
  338. continue
  339. mo = boundaryre.match(line)
  340. if not mo:
  341. self._input.unreadline(line)
  342. break
  343. # Recurse to parse this subpart; the input stream points
  344. # at the subpart's first line.
  345. self._input.push_eof_matcher(boundaryre.match)
  346. for retval in self._parsegen():
  347. if retval is NeedMoreData:
  348. yield NeedMoreData
  349. continue
  350. break
  351. # Because of RFC 2046, the newline preceding the boundary
  352. # separator actually belongs to the boundary, not the
  353. # previous subpart's payload (or epilogue if the previous
  354. # part is a multipart).
  355. if self._last.get_content_maintype() == 'multipart':
  356. epilogue = self._last.epilogue
  357. if epilogue == '':
  358. self._last.epilogue = None
  359. elif epilogue is not None:
  360. mo = NLCRE_eol.search(epilogue)
  361. if mo:
  362. end = len(mo.group(0))
  363. self._last.epilogue = epilogue[:-end]
  364. else:
  365. payload = self._last._payload
  366. if isinstance(payload, str):
  367. mo = NLCRE_eol.search(payload)
  368. if mo:
  369. payload = payload[:-len(mo.group(0))]
  370. self._last._payload = payload
  371. self._input.pop_eof_matcher()
  372. self._pop_message()
  373. # Set the multipart up for newline cleansing, which will
  374. # happen if we're in a nested multipart.
  375. self._last = self._cur
  376. else:
  377. # I think we must be in the preamble
  378. assert capturing_preamble
  379. preamble.append(line)
  380. # We've seen either the EOF or the end boundary. If we're still
  381. # capturing the preamble, we never saw the start boundary. Note
  382. # that as a defect and store the captured text as the payload.
  383. if capturing_preamble:
  384. defect = errors.StartBoundaryNotFoundDefect()
  385. self.policy.handle_defect(self._cur, defect)
  386. self._cur.set_payload(EMPTYSTRING.join(preamble))
  387. epilogue = []
  388. for line in self._input:
  389. if line is NeedMoreData:
  390. yield NeedMoreData
  391. continue
  392. self._cur.epilogue = EMPTYSTRING.join(epilogue)
  393. return
  394. # If we're not processing the preamble, then we might have seen
  395. # EOF without seeing that end boundary...that is also a defect.
  396. if not close_boundary_seen:
  397. defect = errors.CloseBoundaryNotFoundDefect()
  398. self.policy.handle_defect(self._cur, defect)
  399. return
  400. # Everything from here to the EOF is epilogue. If the end boundary
  401. # ended in a newline, we'll need to make sure the epilogue isn't
  402. # None
  403. if linesep:
  404. epilogue = ['']
  405. else:
  406. epilogue = []
  407. for line in self._input:
  408. if line is NeedMoreData:
  409. yield NeedMoreData
  410. continue
  411. epilogue.append(line)
  412. # Any CRLF at the front of the epilogue is not technically part of
  413. # the epilogue. Also, watch out for an empty string epilogue,
  414. # which means a single newline.
  415. if epilogue:
  416. firstline = epilogue[0]
  417. bolmo = NLCRE_bol.match(firstline)
  418. if bolmo:
  419. epilogue[0] = firstline[len(bolmo.group(0)):]
  420. self._cur.epilogue = EMPTYSTRING.join(epilogue)
  421. return
  422. # Otherwise, it's some non-multipart type, so the entire rest of the
  423. # file contents becomes the payload.
  424. lines = []
  425. for line in self._input:
  426. if line is NeedMoreData:
  427. yield NeedMoreData
  428. continue
  429. lines.append(line)
  430. self._cur.set_payload(EMPTYSTRING.join(lines))
  431. def _parse_headers(self, lines):
  432. # Passed a list of lines that make up the headers for the current msg
  433. lastheader = ''
  434. lastvalue = []
  435. for lineno, line in enumerate(lines):
  436. # Check for continuation
  437. if line[0] in ' \t':
  438. if not lastheader:
  439. # The first line of the headers was a continuation. This
  440. # is illegal, so let's note the defect, store the illegal
  441. # line, and ignore it for purposes of headers.
  442. defect = errors.FirstHeaderLineIsContinuationDefect(line)
  443. self.policy.handle_defect(self._cur, defect)
  444. continue
  445. lastvalue.append(line)
  446. continue
  447. if lastheader:
  448. self._cur.set_raw(*self.policy.header_source_parse(lastvalue))
  449. lastheader, lastvalue = '', []
  450. # Check for envelope header, i.e. unix-from
  451. if line.startswith('From '):
  452. if lineno == 0:
  453. # Strip off the trailing newline
  454. mo = NLCRE_eol.search(line)
  455. if mo:
  456. line = line[:-len(mo.group(0))]
  457. self._cur.set_unixfrom(line)
  458. continue
  459. elif lineno == len(lines) - 1:
  460. # Something looking like a unix-from at the end - it's
  461. # probably the first line of the body, so push back the
  462. # line and stop.
  463. self._input.unreadline(line)
  464. return
  465. else:
  466. # Weirdly placed unix-from line. Note this as a defect
  467. # and ignore it.
  468. defect = errors.MisplacedEnvelopeHeaderDefect(line)
  469. self._cur.defects.append(defect)
  470. continue
  471. # Split the line on the colon separating field name from value.
  472. # There will always be a colon, because if there wasn't the part of
  473. # the parser that calls us would have started parsing the body.
  474. i = line.find(':')
  475. # If the colon is on the start of the line the header is clearly
  476. # malformed, but we might be able to salvage the rest of the
  477. # message. Track the error but keep going.
  478. if i == 0:
  479. defect = errors.InvalidHeaderDefect("Missing header name.")
  480. self._cur.defects.append(defect)
  481. continue
  482. assert i>0, "_parse_headers fed line with no : and no leading WS"
  483. lastheader = line[:i]
  484. lastvalue = [line]
  485. # Done with all the lines, so handle the last header.
  486. if lastheader:
  487. self._cur.set_raw(*self.policy.header_source_parse(lastvalue))
  488. class BytesFeedParser(FeedParser):
  489. """Like FeedParser, but feed accepts bytes."""
  490. def feed(self, data):
  491. super().feed(data.decode('ascii', 'surrogateescape'))