| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // A binary wrapper for QuicClient. | 5 // A binary wrapper for QuicClient. |
| 6 // Connects to a host using QUIC, sends a request to the provided URL, and | 6 // Connects to a host using QUIC, sends a request to the provided URL, and |
| 7 // displays the response. | 7 // displays the response. |
| 8 // | 8 // |
| 9 // Some usage examples: | 9 // Some usage examples: |
| 10 // | 10 // |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #include "net/cert/ct_known_logs.h" | 50 #include "net/cert/ct_known_logs.h" |
| 51 #include "net/cert/ct_log_verifier.h" | 51 #include "net/cert/ct_log_verifier.h" |
| 52 #include "net/cert/multi_log_ct_verifier.h" | 52 #include "net/cert/multi_log_ct_verifier.h" |
| 53 #include "net/http/transport_security_state.h" | 53 #include "net/http/transport_security_state.h" |
| 54 #include "net/quic/chromium/crypto/proof_verifier_chromium.h" | 54 #include "net/quic/chromium/crypto/proof_verifier_chromium.h" |
| 55 #include "net/quic/core/quic_error_codes.h" | 55 #include "net/quic/core/quic_error_codes.h" |
| 56 #include "net/quic/core/quic_packets.h" | 56 #include "net/quic/core/quic_packets.h" |
| 57 #include "net/quic/core/quic_server_id.h" | 57 #include "net/quic/core/quic_server_id.h" |
| 58 #include "net/quic/platform/api/quic_socket_address.h" | 58 #include "net/quic/platform/api/quic_socket_address.h" |
| 59 #include "net/quic/platform/api/quic_str_cat.h" | 59 #include "net/quic/platform/api/quic_str_cat.h" |
| 60 #include "net/quic/platform/api/quic_string_piece.h" |
| 60 #include "net/quic/platform/api/quic_text_utils.h" | 61 #include "net/quic/platform/api/quic_text_utils.h" |
| 61 #include "net/spdy/spdy_header_block.h" | 62 #include "net/spdy/spdy_header_block.h" |
| 62 #include "net/spdy/spdy_http_utils.h" | 63 #include "net/spdy/spdy_http_utils.h" |
| 63 #include "net/tools/quic/quic_simple_client.h" | 64 #include "net/tools/quic/quic_simple_client.h" |
| 64 #include "net/tools/quic/synchronous_host_resolver.h" | 65 #include "net/tools/quic/synchronous_host_resolver.h" |
| 65 #include "url/gurl.h" | 66 #include "url/gurl.h" |
| 66 | 67 |
| 67 using base::StringPiece; | |
| 68 using net::CertVerifier; | 68 using net::CertVerifier; |
| 69 using net::CTPolicyEnforcer; | 69 using net::CTPolicyEnforcer; |
| 70 using net::CTVerifier; | 70 using net::CTVerifier; |
| 71 using net::MultiLogCTVerifier; | 71 using net::MultiLogCTVerifier; |
| 72 using net::ProofVerifier; | 72 using net::ProofVerifier; |
| 73 using net::ProofVerifierChromium; | 73 using net::ProofVerifierChromium; |
| 74 using net::QuicStringPiece; |
| 74 using net::QuicTextUtils; | 75 using net::QuicTextUtils; |
| 75 using net::SpdyHeaderBlock; | 76 using net::SpdyHeaderBlock; |
| 76 using net::TransportSecurityState; | 77 using net::TransportSecurityState; |
| 77 using std::cout; | 78 using std::cout; |
| 78 using std::cerr; | 79 using std::cerr; |
| 79 using std::endl; | 80 using std::endl; |
| 80 using std::string; | 81 using std::string; |
| 81 | 82 |
| 82 // The IP or hostname the quic client will connect to. | 83 // The IP or hostname the quic client will connect to. |
| 83 string FLAGS_host = ""; | 84 string FLAGS_host = ""; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 104 // Initial MTU of the connection. | 105 // Initial MTU of the connection. |
| 105 int32_t FLAGS_initial_mtu = 0; | 106 int32_t FLAGS_initial_mtu = 0; |
| 106 | 107 |
| 107 class FakeProofVerifier : public ProofVerifier { | 108 class FakeProofVerifier : public ProofVerifier { |
| 108 public: | 109 public: |
| 109 net::QuicAsyncStatus VerifyProof( | 110 net::QuicAsyncStatus VerifyProof( |
| 110 const string& hostname, | 111 const string& hostname, |
| 111 const uint16_t port, | 112 const uint16_t port, |
| 112 const string& server_config, | 113 const string& server_config, |
| 113 net::QuicVersion quic_version, | 114 net::QuicVersion quic_version, |
| 114 StringPiece chlo_hash, | 115 QuicStringPiece chlo_hash, |
| 115 const std::vector<string>& certs, | 116 const std::vector<string>& certs, |
| 116 const string& cert_sct, | 117 const string& cert_sct, |
| 117 const string& signature, | 118 const string& signature, |
| 118 const net::ProofVerifyContext* context, | 119 const net::ProofVerifyContext* context, |
| 119 string* error_details, | 120 string* error_details, |
| 120 std::unique_ptr<net::ProofVerifyDetails>* details, | 121 std::unique_ptr<net::ProofVerifyDetails>* details, |
| 121 std::unique_ptr<net::ProofVerifierCallback> callback) override { | 122 std::unique_ptr<net::ProofVerifierCallback> callback) override { |
| 122 return net::QUIC_SUCCESS; | 123 return net::QUIC_SUCCESS; |
| 123 } | 124 } |
| 124 | 125 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 } | 302 } |
| 302 | 303 |
| 303 // Construct a GET or POST request for supplied URL. | 304 // Construct a GET or POST request for supplied URL. |
| 304 SpdyHeaderBlock header_block; | 305 SpdyHeaderBlock header_block; |
| 305 header_block[":method"] = body.empty() ? "GET" : "POST"; | 306 header_block[":method"] = body.empty() ? "GET" : "POST"; |
| 306 header_block[":scheme"] = url.scheme(); | 307 header_block[":scheme"] = url.scheme(); |
| 307 header_block[":authority"] = url.host(); | 308 header_block[":authority"] = url.host(); |
| 308 header_block[":path"] = url.path(); | 309 header_block[":path"] = url.path(); |
| 309 | 310 |
| 310 // Append any additional headers supplied on the command line. | 311 // Append any additional headers supplied on the command line. |
| 311 for (StringPiece sp : QuicTextUtils::Split(FLAGS_headers, ';')) { | 312 for (QuicStringPiece sp : QuicTextUtils::Split(FLAGS_headers, ';')) { |
| 312 QuicTextUtils::RemoveLeadingAndTrailingWhitespace(&sp); | 313 QuicTextUtils::RemoveLeadingAndTrailingWhitespace(&sp); |
| 313 if (sp.empty()) { | 314 if (sp.empty()) { |
| 314 continue; | 315 continue; |
| 315 } | 316 } |
| 316 std::vector<StringPiece> kv = QuicTextUtils::Split(sp, ':'); | 317 std::vector<QuicStringPiece> kv = QuicTextUtils::Split(sp, ':'); |
| 317 QuicTextUtils::RemoveLeadingAndTrailingWhitespace(&kv[0]); | 318 QuicTextUtils::RemoveLeadingAndTrailingWhitespace(&kv[0]); |
| 318 QuicTextUtils::RemoveLeadingAndTrailingWhitespace(&kv[1]); | 319 QuicTextUtils::RemoveLeadingAndTrailingWhitespace(&kv[1]); |
| 319 header_block[kv[0]] = kv[1]; | 320 header_block[kv[0]] = kv[1]; |
| 320 } | 321 } |
| 321 | 322 |
| 322 // Make sure to store the response, for later output. | 323 // Make sure to store the response, for later output. |
| 323 client.set_store_response(true); | 324 client.set_store_response(true); |
| 324 | 325 |
| 325 // Send the request. | 326 // Send the request. |
| 326 client.SendRequestAndWaitForResponse(header_block, body, /*fin=*/true); | 327 client.SendRequestAndWaitForResponse(header_block, body, /*fin=*/true); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 return 0; | 361 return 0; |
| 361 } else { | 362 } else { |
| 362 cout << "Request failed (redirect " << response_code << ")." << endl; | 363 cout << "Request failed (redirect " << response_code << ")." << endl; |
| 363 return 1; | 364 return 1; |
| 364 } | 365 } |
| 365 } else { | 366 } else { |
| 366 cerr << "Request failed (" << response_code << ")." << endl; | 367 cerr << "Request failed (" << response_code << ")." << endl; |
| 367 return 1; | 368 return 1; |
| 368 } | 369 } |
| 369 } | 370 } |
| OLD | NEW |