From: Abhishek Lekshmanan Date: Wed, 7 Aug 2019 15:09:32 +0000 (+0200) Subject: rgw: asio: check the remote endpoint before processing requests X-Git-Tag: v14.2.3~2^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=29753dd3ca71bba8713fcf7a09c4bb51629a6f63;p=ceph.git rgw: asio: check the remote endpoint before processing requests `socket.remote_endpoint()` can throw exceptions corresponding to errors in the `getpeername` syscall, make sure these are handled. Fixes: CVE-2019-10222, https://tracker.ceph.com/issues/40018 Signed-off-by: Abhishek Lekshmanan (cherry picked from commit caa653196856ecdf50519a9a33195d5c4e3372af) Conflicts: src/rgw/rgw_asio_frontend.cc conflicts due to missing yield ctx in nautilus --- diff --git a/src/rgw/rgw_asio_frontend.cc b/src/rgw/rgw_asio_frontend.cc index 58a7446db3c1..8431be0b8955 100644 --- a/src/rgw/rgw_asio_frontend.cc +++ b/src/rgw/rgw_asio_frontend.cc @@ -142,9 +142,15 @@ void handle_connection(RGWProcessEnv& env, Stream& stream, RGWRequest req{env.store->get_new_req_id()}; auto& socket = stream.lowest_layer(); + const auto& remote_endpoint = socket.remote_endpoint(ec); + if (ec) { + ldout(cct, 1) << "failed to connect client: " << ec.message() << dendl; + return; + } + StreamIO real_client{cct, stream, parser, buffer, is_ssl, socket.local_endpoint(), - socket.remote_endpoint()}; + remote_endpoint}; auto real_client_io = rgw::io::add_reordering( rgw::io::add_buffering(cct,