error-reporting.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. ===============
  2. Error reporting
  3. ===============
  4. When you're running a public site you should always turn off the
  5. :setting:`DEBUG` setting. That will make your server run much faster, and will
  6. also prevent malicious users from seeing details of your application that can be
  7. revealed by the error pages.
  8. However, running with :setting:`DEBUG` set to ``False`` means you'll never see
  9. errors generated by your site -- everyone will just see your public error pages.
  10. You need to keep track of errors that occur in deployed sites, so Django can be
  11. configured to create reports with details about those errors.
  12. Email reports
  13. =============
  14. Server errors
  15. -------------
  16. When :setting:`DEBUG` is ``False``, Django will email the users listed in the
  17. :setting:`ADMINS` setting whenever your code raises an unhandled exception and
  18. results in an internal server error (HTTP status code 500). This gives the
  19. administrators immediate notification of any errors. The :setting:`ADMINS` will
  20. get a description of the error, a complete Python traceback, and details about
  21. the HTTP request that caused the error.
  22. .. note::
  23. In order to send email, Django requires a few settings telling it
  24. how to connect to your mail server. At the very least, you'll need
  25. to specify :setting:`EMAIL_HOST` and possibly
  26. :setting:`EMAIL_HOST_USER` and :setting:`EMAIL_HOST_PASSWORD`,
  27. though other settings may be also required depending on your mail
  28. server's configuration. Consult :doc:`the Django settings
  29. documentation </ref/settings>` for a full list of email-related
  30. settings.
  31. By default, Django will send email from root@localhost. However, some mail
  32. providers reject all email from this address. To use a different sender
  33. address, modify the :setting:`SERVER_EMAIL` setting.
  34. To activate this behavior, put the email addresses of the recipients in the
  35. :setting:`ADMINS` setting.
  36. .. seealso::
  37. Server error emails are sent using the logging framework, so you can
  38. customize this behavior by :doc:`customizing your logging configuration
  39. </topics/logging>`.
  40. 404 errors
  41. ----------
  42. Django can also be configured to email errors about broken links (404 "page
  43. not found" errors). Django sends emails about 404 errors when:
  44. * :setting:`DEBUG` is ``False``;
  45. * Your :setting:`MIDDLEWARE_CLASSES` setting includes
  46. :class:`django.middleware.common.BrokenLinkEmailsMiddleware`.
  47. If those conditions are met, Django will email the users listed in the
  48. :setting:`MANAGERS` setting whenever your code raises a 404 and the request has
  49. a referer. It doesn't bother to email for 404s that don't have a referer --
  50. those are usually just people typing in broken URLs or broken Web bots. It also
  51. ignores 404s when the referer is equal to the requested URL, since this
  52. behavior is from broken Web bots too.
  53. .. versionchanged:: 1.9
  54. In older versions, 404s were not ignored when the referer was equal to the
  55. requested URL.
  56. .. note::
  57. :class:`~django.middleware.common.BrokenLinkEmailsMiddleware` must appear
  58. before other middleware that intercepts 404 errors, such as
  59. :class:`~django.middleware.locale.LocaleMiddleware` or
  60. :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware`.
  61. Put it towards the top of your :setting:`MIDDLEWARE_CLASSES` setting.
  62. You can tell Django to stop reporting particular 404s by tweaking the
  63. :setting:`IGNORABLE_404_URLS` setting. It should be a list of compiled
  64. regular expression objects. For example::
  65. import re
  66. IGNORABLE_404_URLS = [
  67. re.compile(r'\.(php|cgi)$'),
  68. re.compile(r'^/phpmyadmin/'),
  69. ]
  70. In this example, a 404 to any URL ending with ``.php`` or ``.cgi`` will *not* be
  71. reported. Neither will any URL starting with ``/phpmyadmin/``.
  72. The following example shows how to exclude some conventional URLs that browsers and
  73. crawlers often request::
  74. import re
  75. IGNORABLE_404_URLS = [
  76. re.compile(r'^/apple-touch-icon.*\.png$'),
  77. re.compile(r'^/favicon\.ico$'),
  78. re.compile(r'^/robots\.txt$'),
  79. ]
  80. (Note that these are regular expressions, so we put a backslash in front of
  81. periods to escape them.)
  82. If you'd like to customize the behavior of
  83. :class:`django.middleware.common.BrokenLinkEmailsMiddleware` further (for
  84. example to ignore requests coming from web crawlers), you should subclass it
  85. and override its methods.
  86. .. seealso::
  87. 404 errors are logged using the logging framework. By default, these log
  88. records are ignored, but you can use them for error reporting by writing a
  89. handler and :doc:`configuring logging </topics/logging>` appropriately.
  90. .. _filtering-error-reports:
  91. Filtering error reports
  92. =======================
  93. .. warning::
  94. Filtering sensitive data is a hard problem, and it's nearly impossible to
  95. guarantee that sensitive won't leak into an error report. Therefore, error
  96. reports should only be available to trusted team members and you should
  97. avoid transmitting error reports unencrypted over the Internet (such as
  98. through email).
  99. Filtering sensitive information
  100. -------------------------------
  101. .. currentmodule:: django.views.decorators.debug
  102. Error reports are really helpful for debugging errors, so it is generally
  103. useful to record as much relevant information about those errors as possible.
  104. For example, by default Django records the `full traceback`_ for the
  105. exception raised, each `traceback frame`_’s local variables, and the
  106. :class:`~django.http.HttpRequest`’s :ref:`attributes<httprequest-attributes>`.
  107. However, sometimes certain types of information may be too sensitive and thus
  108. may not be appropriate to be kept track of, for example a user's password or
  109. credit card number. So Django offers a set of function decorators to help you
  110. control which information should be filtered out of error reports in a
  111. production environment (that is, where :setting:`DEBUG` is set to ``False``):
  112. :func:`sensitive_variables` and :func:`sensitive_post_parameters`.
  113. .. _`full traceback`: https://en.wikipedia.org/wiki/Stack_trace
  114. .. _`traceback frame`: https://en.wikipedia.org/wiki/Stack_frame
  115. .. function:: sensitive_variables(*variables)
  116. If a function (either a view or any regular callback) in your code uses
  117. local variables susceptible to contain sensitive information, you may
  118. prevent the values of those variables from being included in error reports
  119. using the ``sensitive_variables`` decorator::
  120. from django.views.decorators.debug import sensitive_variables
  121. @sensitive_variables('user', 'pw', 'cc')
  122. def process_info(user):
  123. pw = user.pass_word
  124. cc = user.credit_card_number
  125. name = user.name
  126. ...
  127. In the above example, the values for the ``user``, ``pw`` and ``cc``
  128. variables will be hidden and replaced with stars (`**********`) in the
  129. error reports, whereas the value of the ``name`` variable will be
  130. disclosed.
  131. To systematically hide all local variables of a function from error logs,
  132. do not provide any argument to the ``sensitive_variables`` decorator::
  133. @sensitive_variables()
  134. def my_function():
  135. ...
  136. .. admonition:: When using multiple decorators
  137. If the variable you want to hide is also a function argument (e.g.
  138. '``user``’ in the following example), and if the decorated function has
  139. multiple decorators, then make sure to place ``@sensitive_variables``
  140. at the top of the decorator chain. This way it will also hide the
  141. function argument as it gets passed through the other decorators::
  142. @sensitive_variables('user', 'pw', 'cc')
  143. @some_decorator
  144. @another_decorator
  145. def process_info(user):
  146. ...
  147. .. function:: sensitive_post_parameters(*parameters)
  148. If one of your views receives an :class:`~django.http.HttpRequest` object
  149. with :attr:`POST parameters<django.http.HttpRequest.POST>` susceptible to
  150. contain sensitive information, you may prevent the values of those
  151. parameters from being included in the error reports using the
  152. ``sensitive_post_parameters`` decorator::
  153. from django.views.decorators.debug import sensitive_post_parameters
  154. @sensitive_post_parameters('pass_word', 'credit_card_number')
  155. def record_user_profile(request):
  156. UserProfile.create(user=request.user,
  157. password=request.POST['pass_word'],
  158. credit_card=request.POST['credit_card_number'],
  159. name=request.POST['name'])
  160. ...
  161. In the above example, the values for the ``pass_word`` and
  162. ``credit_card_number`` POST parameters will be hidden and replaced with
  163. stars (`**********`) in the request's representation inside the error
  164. reports, whereas the value of the ``name`` parameter will be disclosed.
  165. To systematically hide all POST parameters of a request in error reports,
  166. do not provide any argument to the ``sensitive_post_parameters`` decorator::
  167. @sensitive_post_parameters()
  168. def my_view(request):
  169. ...
  170. All POST parameters are systematically filtered out of error reports for
  171. certain :mod:`django.contrib.auth.views` views (``login``,
  172. ``password_reset_confirm``, ``password_change``, and ``add_view`` and
  173. ``user_change_password`` in the ``auth`` admin) to prevent the leaking of
  174. sensitive information such as user passwords.
  175. .. _custom-error-reports:
  176. Custom error reports
  177. --------------------
  178. All :func:`sensitive_variables` and :func:`sensitive_post_parameters` do is,
  179. respectively, annotate the decorated function with the names of sensitive
  180. variables and annotate the ``HttpRequest`` object with the names of sensitive
  181. POST parameters, so that this sensitive information can later be filtered out
  182. of reports when an error occurs. The actual filtering is done by Django's
  183. default error reporter filter:
  184. :class:`django.views.debug.SafeExceptionReporterFilter`. This filter uses the
  185. decorators' annotations to replace the corresponding values with stars
  186. (`**********`) when the error reports are produced. If you wish to override or
  187. customize this default behavior for your entire site, you need to define your
  188. own filter class and tell Django to use it via the
  189. :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER` setting::
  190. DEFAULT_EXCEPTION_REPORTER_FILTER = 'path.to.your.CustomExceptionReporterFilter'
  191. You may also control in a more granular way which filter to use within any
  192. given view by setting the ``HttpRequest``’s ``exception_reporter_filter``
  193. attribute::
  194. def my_view(request):
  195. if request.user.is_authenticated():
  196. request.exception_reporter_filter = CustomExceptionReporterFilter()
  197. ...
  198. .. currentmodule:: django.views.debug
  199. Your custom filter class needs to inherit from
  200. :class:`django.views.debug.SafeExceptionReporterFilter` and may override the
  201. following methods:
  202. .. class:: SafeExceptionReporterFilter
  203. .. method:: SafeExceptionReporterFilter.is_active(request)
  204. Returns ``True`` to activate the filtering operated in the other methods.
  205. By default the filter is active if :setting:`DEBUG` is ``False``.
  206. .. method:: SafeExceptionReporterFilter.get_post_parameters(request)
  207. Returns the filtered dictionary of POST parameters. By default it replaces
  208. the values of sensitive parameters with stars (`**********`).
  209. .. method:: SafeExceptionReporterFilter.get_traceback_frame_variables(request, tb_frame)
  210. Returns the filtered dictionary of local variables for the given traceback
  211. frame. By default it replaces the values of sensitive variables with stars
  212. (`**********`).
  213. .. seealso::
  214. You can also set up custom error reporting by writing a custom piece of
  215. :ref:`exception middleware <exception-middleware>`. If you do write custom
  216. error handling, it's a good idea to emulate Django's built-in error handling
  217. and only report/log errors if :setting:`DEBUG` is ``False``.