]> 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)
committerHenry Gessau <gessau@cisco.com>
Thu, 1 Oct 2015 20:56:10 +0000 (16:56 -0400)
commit80e3d9be4923ecad17377b1d15c8392b8a43dac6
treedd2b0d74eae1ed69a83bb9d118bb01449f4f66ed
parent68f1a07600860a534cda8237be463bb189d8bdba
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
neutron/agent/metadata/namespace_proxy.py
neutron/tests/unit/agent/metadata/test_namespace_proxy.py