]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
metadata: don't crash proxy on non-unicode user data
authorIhar Hrachyshka <ihrachys@redhat.com>
Thu, 1 Oct 2015 15:13:25 +0000 (17:13 +0200)
committerKyle Mestery <mestery@mestery.com>
Fri, 2 Oct 2015 15:54:26 +0000 (15:54 +0000)
commit13b6d76da361178ea0b84baf4831a4c7f53e29c7
tree6015a18c2d87a5b881f9043593d5b498247f83c6
parentfa2b18c45ae0e7aefa0a0b454c5b7b4e9a05f63a
metadata: don't crash proxy on non-unicode user data

We attempt to log every successful metadata response with LOG.debug. But
as per oslo.log docs [1], we should make sure that what we pass into the
library is unicode.

Http.request returns a tuple of Response object and a string, which is
bytes in Python 2.x [2].

That's why we need to convert the response content to unicode before
passing it into oslo.log.

To achieve it, we utilize encodeutils.safe_decode with 'replace' errors
handling strategy, so that we don't get exceptions on input that does
not conform unicode.

For the unit test case, we pass a string that is not expected to convert
to unicode with errors='strict' strategy or similar, and check that we
still don't crash.

While at it, we remove a check for the number of log calls being
triggered, because it's something that we should avoid validating in
test cases, and it cannot trigger a real bug. The mock that was used to
count the number would also hide the bug that we try to reproduce.

Note that the bug does not require debug to be set because the crash
occurs before oslo.log machinery decides it should not log the message.

[1]: http://docs.openstack.org/developer/oslo.log/usage.html#no-more-implicit-conversion-to-unicode-str
[2]: http://bitworking.org/projects/httplib2/doc/html/libhttplib2.html#httplib2.Http.request

Closes-Bug: #1501772
Change-Id: I6a32c40ff117fae43913386134c8981539697ce8
(cherry picked from commit 80e3d9be4923ecad17377b1d15c8392b8a43dac6)
neutron/agent/metadata/namespace_proxy.py
neutron/tests/unit/agent/metadata/test_namespace_proxy.py