diff options
author | lloyd <[email protected]> | 2014-04-05 15:13:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-04-05 15:13:09 +0000 |
commit | a912a2ea250a5161d39e897ba3e37b003965237b (patch) | |
tree | 2ec021d6bbc7de5bc95dfa42ae5488e3f9f5af0b /src/lib/utils/http_util/http_util.cpp | |
parent | aa3af43218106e184398f667f82110bb069abf8a (diff) |
Check Content-Length of HTTP responses
Diffstat (limited to 'src/lib/utils/http_util/http_util.cpp')
-rw-r--r-- | src/lib/utils/http_util/http_util.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/utils/http_util/http_util.cpp b/src/lib/utils/http_util/http_util.cpp index a233c1c60..10f2770e6 100644 --- a/src/lib/utils/http_util/http_util.cpp +++ b/src/lib/utils/http_util/http_util.cpp @@ -8,6 +8,7 @@ #include <botan/http_util.h> #include <botan/parsing.h> #include <botan/hex.h> +#include <botan/internal/stl_util.h> #include <sstream> #if defined(BOTAN_HAS_BOOST_ASIO) @@ -166,7 +167,6 @@ Response http_sync(http_exch_fn http_transact, return GET_sync(headers["Location"], allowable_redirects - 1); } - // Use Content-Length if set std::vector<byte> resp_body; std::vector<byte> buf(4096); while(io.good()) @@ -175,6 +175,15 @@ Response http_sync(http_exch_fn http_transact, resp_body.insert(resp_body.end(), &buf[0], &buf[io.gcount()]); } + const std::string header_size = search_map(headers, std::string("Content-Length")); + + if(header_size != "") + { + if(resp_body.size() != to_u32bit(header_size)) + throw std::runtime_error("Content-Length disagreement, header says " + + header_size + " got " + std::to_string(resp_body.size())); + } + return Response(status_code, status_message, resp_body, headers); } |