2012-01-29 16:34:10 +01:00
|
|
|
/*
|
|
|
|
* Spdylay - SPDY Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <signal.h>
|
2012-01-30 16:46:46 +01:00
|
|
|
#include <getopt.h>
|
2012-01-31 14:04:51 +01:00
|
|
|
#include <poll.h>
|
2012-01-29 16:34:10 +01:00
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <set>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <fstream>
|
2012-01-30 16:46:46 +01:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2012-02-01 13:47:25 +01:00
|
|
|
#include <sstream>
|
2012-01-29 16:34:10 +01:00
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <spdylay/spdylay.h>
|
|
|
|
|
|
|
|
#include "spdylay_ssl.h"
|
|
|
|
#include "uri.h"
|
|
|
|
|
|
|
|
namespace spdylay {
|
|
|
|
|
2012-01-30 16:46:46 +01:00
|
|
|
struct Config {
|
|
|
|
bool null_out;
|
|
|
|
bool remote_name;
|
|
|
|
bool verbose;
|
2012-05-12 14:20:19 +02:00
|
|
|
int spdy_version;
|
2012-04-04 19:19:00 +02:00
|
|
|
int timeout;
|
2012-04-22 16:04:55 +02:00
|
|
|
std::string certfile;
|
|
|
|
std::string keyfile;
|
2012-05-08 14:46:44 +02:00
|
|
|
int window_bits;
|
2012-02-26 10:13:56 +01:00
|
|
|
Config():null_out(false), remote_name(false), verbose(false),
|
2012-05-12 14:20:19 +02:00
|
|
|
spdy_version(-1), timeout(-1), window_bits(-1) {}
|
2012-01-30 16:46:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Request {
|
|
|
|
uri::UriStruct us;
|
2012-05-07 15:56:28 +02:00
|
|
|
spdylay_gzip *inflater;
|
2012-04-24 16:48:05 +02:00
|
|
|
Request(const uri::UriStruct& us):us(us), inflater(0) {}
|
|
|
|
~Request()
|
|
|
|
{
|
2012-05-07 15:56:28 +02:00
|
|
|
spdylay_gzip_inflate_del(inflater);
|
2012-04-24 16:48:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_inflater()
|
|
|
|
{
|
2012-05-07 15:56:28 +02:00
|
|
|
int rv;
|
|
|
|
rv = spdylay_gzip_inflate_new(&inflater);
|
|
|
|
assert(rv == 0);
|
2012-04-24 16:48:05 +02:00
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
std::map<int32_t, Request*> stream2req;
|
|
|
|
size_t numreq, complete;
|
|
|
|
|
|
|
|
Config config;
|
2012-01-29 16:34:10 +01:00
|
|
|
extern bool ssl_debug;
|
|
|
|
|
|
|
|
void on_data_chunk_recv_callback
|
|
|
|
(spdylay_session *session, uint8_t flags, int32_t stream_id,
|
|
|
|
const uint8_t *data, size_t len, void *user_data)
|
|
|
|
{
|
2012-01-30 16:46:46 +01:00
|
|
|
std::map<int32_t, Request*>::iterator itr = stream2req.find(stream_id);
|
|
|
|
if(itr != stream2req.end()) {
|
2012-04-24 16:48:05 +02:00
|
|
|
Request *req = (*itr).second;
|
|
|
|
if(req->inflater) {
|
|
|
|
while(len > 0) {
|
|
|
|
const size_t MAX_OUTLEN = 4096;
|
|
|
|
uint8_t out[MAX_OUTLEN];
|
|
|
|
size_t outlen = MAX_OUTLEN;
|
|
|
|
size_t tlen = len;
|
2012-05-07 15:56:28 +02:00
|
|
|
int rv = spdylay_gzip_inflate(req->inflater, out, &outlen, data, &tlen);
|
2012-04-24 16:48:05 +02:00
|
|
|
if(rv == -1) {
|
|
|
|
spdylay_submit_rst_stream(session, stream_id, SPDYLAY_INTERNAL_ERROR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::cout.write(reinterpret_cast<const char*>(out), outlen);
|
|
|
|
data += tlen;
|
|
|
|
len -= tlen;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
std::cout.write(reinterpret_cast<const char*>(data), len);
|
|
|
|
}
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-03 17:37:21 +01:00
|
|
|
void check_stream_id(spdylay_session *session,
|
|
|
|
spdylay_frame_type type, spdylay_frame *frame)
|
2012-01-29 16:34:10 +01:00
|
|
|
{
|
2012-02-03 17:37:21 +01:00
|
|
|
int32_t stream_id = frame->syn_stream.stream_id;
|
|
|
|
Request *req = (Request*)spdylay_session_get_stream_user_data(session,
|
|
|
|
stream_id);
|
|
|
|
stream2req[stream_id] = req;
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_ctrl_send_callback2
|
|
|
|
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2012-02-03 17:37:21 +01:00
|
|
|
if(type == SPDYLAY_SYN_STREAM) {
|
|
|
|
check_stream_id(session, type, frame);
|
|
|
|
}
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_ctrl_send_callback3
|
|
|
|
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2012-02-03 17:37:21 +01:00
|
|
|
if(type == SPDYLAY_SYN_STREAM) {
|
|
|
|
check_stream_id(session, type, frame);
|
|
|
|
}
|
2012-01-29 16:34:10 +01:00
|
|
|
on_ctrl_send_callback(session, type, frame, user_data);
|
|
|
|
}
|
|
|
|
|
2012-04-24 16:48:05 +02:00
|
|
|
void check_gzip
|
|
|
|
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
char **nv;
|
|
|
|
int32_t stream_id;
|
|
|
|
if(type == SPDYLAY_SYN_REPLY) {
|
|
|
|
nv = frame->syn_reply.nv;
|
|
|
|
stream_id = frame->syn_reply.stream_id;
|
|
|
|
} else if(type == SPDYLAY_HEADERS) {
|
|
|
|
nv = frame->headers.nv;
|
|
|
|
stream_id = frame->headers.stream_id;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool gzip = false;
|
|
|
|
for(size_t i = 0; nv[i]; i += 2) {
|
|
|
|
if(strcmp("content-encoding", nv[i]) == 0) {
|
|
|
|
gzip = strcmp("gzip", nv[i+1]) == 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(gzip) {
|
|
|
|
Request *req = (Request*)spdylay_session_get_stream_user_data(session,
|
|
|
|
stream_id);
|
|
|
|
assert(req);
|
|
|
|
if(req->inflater) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
req->init_inflater();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_ctrl_recv_callback2
|
|
|
|
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
check_gzip(session, type, frame, user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_ctrl_recv_callback3
|
|
|
|
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
check_gzip(session, type, frame, user_data);
|
|
|
|
on_ctrl_recv_callback(session, type, frame, user_data);
|
|
|
|
}
|
|
|
|
|
2012-01-29 16:34:10 +01:00
|
|
|
void on_stream_close_callback
|
|
|
|
(spdylay_session *session, int32_t stream_id, spdylay_status_code status_code,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2012-01-30 16:46:46 +01:00
|
|
|
std::map<int32_t, Request*>::iterator itr = stream2req.find(stream_id);
|
|
|
|
if(itr != stream2req.end()) {
|
|
|
|
++complete;
|
|
|
|
if(complete == numreq) {
|
2012-02-26 08:26:38 +01:00
|
|
|
spdylay_submit_goaway(session, SPDYLAY_GOAWAY_OK);
|
2012-01-30 16:46:46 +01:00
|
|
|
}
|
2012-04-24 16:48:05 +02:00
|
|
|
stream2req.erase(itr);
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int communicate(const std::string& host, uint16_t port,
|
2012-01-30 16:46:46 +01:00
|
|
|
std::vector<Request>& reqvec,
|
2012-01-29 16:34:10 +01:00
|
|
|
const spdylay_session_callbacks *callbacks)
|
|
|
|
{
|
2012-01-30 16:46:46 +01:00
|
|
|
numreq = reqvec.size();
|
|
|
|
complete = 0;
|
|
|
|
stream2req.clear();
|
2012-01-29 16:34:10 +01:00
|
|
|
int fd = connect_to(host, port);
|
|
|
|
if(fd == -1) {
|
|
|
|
std::cerr << "Could not connect to the host" << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
SSL_CTX *ssl_ctx;
|
|
|
|
ssl_ctx = SSL_CTX_new(SSLv23_client_method());
|
|
|
|
if(!ssl_ctx) {
|
|
|
|
std::cerr << ERR_error_string(ERR_get_error(), 0) << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
2012-02-25 17:31:45 +01:00
|
|
|
std::string next_proto;
|
2012-05-12 14:20:19 +02:00
|
|
|
switch(config.spdy_version) {
|
|
|
|
case SPDYLAY_PROTO_SPDY2:
|
|
|
|
next_proto = "spdy/2";
|
|
|
|
break;
|
|
|
|
case SPDYLAY_PROTO_SPDY3:
|
2012-02-26 10:13:56 +01:00
|
|
|
next_proto = "spdy/3";
|
2012-05-12 14:20:19 +02:00
|
|
|
break;
|
2012-02-26 10:13:56 +01:00
|
|
|
}
|
2012-02-25 17:31:45 +01:00
|
|
|
setup_ssl_ctx(ssl_ctx, &next_proto);
|
2012-04-22 16:04:55 +02:00
|
|
|
if(!config.keyfile.empty()) {
|
|
|
|
if(SSL_CTX_use_PrivateKey_file(ssl_ctx, config.keyfile.c_str(),
|
|
|
|
SSL_FILETYPE_PEM) != 1) {
|
|
|
|
std::cerr << ERR_error_string(ERR_get_error(), 0) << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!config.certfile.empty()) {
|
|
|
|
if(SSL_CTX_use_certificate_chain_file(ssl_ctx,
|
|
|
|
config.certfile.c_str()) != 1) {
|
|
|
|
std::cerr << ERR_error_string(ERR_get_error(), 0) << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2012-01-29 16:34:10 +01:00
|
|
|
SSL *ssl = SSL_new(ssl_ctx);
|
|
|
|
if(!ssl) {
|
|
|
|
std::cerr << ERR_error_string(ERR_get_error(), 0) << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if(ssl_handshake(ssl, fd) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
2012-02-20 22:15:02 +01:00
|
|
|
make_non_block(fd);
|
|
|
|
set_tcp_nodelay(fd);
|
2012-03-02 19:59:07 +01:00
|
|
|
int spdy_version = spdylay_npn_get_version(
|
|
|
|
reinterpret_cast<const unsigned char*>(next_proto.c_str()),
|
|
|
|
next_proto.size());
|
|
|
|
if (spdy_version <= 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Spdylay sc(fd, ssl, spdy_version, callbacks);
|
2012-01-31 14:04:51 +01:00
|
|
|
|
|
|
|
nfds_t npollfds = 1;
|
|
|
|
pollfd pollfds[1];
|
|
|
|
|
2012-02-01 13:47:25 +01:00
|
|
|
std::stringstream ss;
|
2012-02-14 16:14:27 +01:00
|
|
|
if(reqvec[0].us.ipv6LiteralAddress) {
|
|
|
|
ss << "[";
|
|
|
|
}
|
|
|
|
ss << host;
|
|
|
|
if(reqvec[0].us.ipv6LiteralAddress) {
|
|
|
|
ss << "]";
|
|
|
|
}
|
2012-03-08 18:36:55 +01:00
|
|
|
if(port != 443) {
|
|
|
|
ss << ":" << port;
|
|
|
|
}
|
2012-02-01 13:47:25 +01:00
|
|
|
std::string hostport = ss.str();
|
2012-05-08 14:46:44 +02:00
|
|
|
if(spdy_version >= SPDYLAY_PROTO_SPDY3 && config.window_bits != -1) {
|
|
|
|
spdylay_settings_entry iv[1];
|
|
|
|
iv[0].settings_id = SPDYLAY_SETTINGS_INITIAL_WINDOW_SIZE;
|
|
|
|
iv[0].flags = SPDYLAY_ID_FLAG_SETTINGS_NONE;
|
|
|
|
iv[0].value = 1 << config.window_bits;
|
|
|
|
int rv = sc.submit_settings(SPDYLAY_FLAG_SETTINGS_NONE, iv, 1);
|
|
|
|
assert(rv == 0);
|
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
for(int i = 0, n = reqvec.size(); i < n; ++i) {
|
|
|
|
uri::UriStruct& us = reqvec[i].us;
|
|
|
|
std::string path = us.dir+us.file+us.query;
|
2012-02-03 17:37:21 +01:00
|
|
|
int r = sc.submit_request(hostport, path, 3, &reqvec[i]);
|
2012-01-30 16:46:46 +01:00
|
|
|
assert(r == 0);
|
|
|
|
}
|
2012-01-31 14:04:51 +01:00
|
|
|
pollfds[0].fd = fd;
|
|
|
|
ctl_poll(pollfds, &sc);
|
2012-04-04 19:19:00 +02:00
|
|
|
int end_time = time(NULL) + config.timeout;
|
|
|
|
int timeout = config.timeout;
|
2012-01-31 14:04:51 +01:00
|
|
|
|
2012-01-29 16:34:10 +01:00
|
|
|
bool ok = true;
|
2012-04-27 18:07:36 +02:00
|
|
|
while(!sc.finish()) {
|
2012-04-04 19:19:00 +02:00
|
|
|
int nfds = poll(pollfds, npollfds, timeout);
|
2012-01-29 16:34:10 +01:00
|
|
|
if(nfds == -1) {
|
2012-01-31 14:04:51 +01:00
|
|
|
perror("poll");
|
2012-01-29 16:34:10 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2012-02-07 17:33:55 +01:00
|
|
|
if(pollfds[0].revents & (POLLIN | POLLOUT)) {
|
2012-05-10 17:23:52 +02:00
|
|
|
int rv;
|
|
|
|
if((rv = sc.recv()) != 0 || (rv = sc.send()) != 0) {
|
|
|
|
if(rv != SPDYLAY_ERR_EOF || complete != numreq) {
|
|
|
|
std::cout << "Fatal: " << spdylay_strerror(rv) << std::endl;
|
|
|
|
}
|
2012-04-04 19:19:00 +02:00
|
|
|
ok = false;
|
2012-01-29 16:34:10 +01:00
|
|
|
break;
|
2012-02-07 17:33:55 +01:00
|
|
|
}
|
2012-01-31 14:04:51 +01:00
|
|
|
}
|
|
|
|
if((pollfds[0].revents & POLLHUP) || (pollfds[0].revents & POLLERR)) {
|
|
|
|
std::cout << "HUP" << std::endl;
|
|
|
|
ok = false;
|
|
|
|
break;
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
2012-04-04 19:19:00 +02:00
|
|
|
timeout = timeout == -1 ? timeout : end_time - time(NULL);
|
|
|
|
if (config.timeout != -1 && timeout <= 0) {
|
|
|
|
std::cout << "Requests to " << hostport << "timed out.";
|
|
|
|
ok = false;
|
2012-01-29 16:34:10 +01:00
|
|
|
break;
|
|
|
|
}
|
2012-04-04 19:19:00 +02:00
|
|
|
assert(ok);
|
2012-01-31 14:04:51 +01:00
|
|
|
ctl_poll(pollfds, &sc);
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SSL_shutdown(ssl);
|
|
|
|
SSL_free(ssl);
|
|
|
|
SSL_CTX_free(ssl_ctx);
|
|
|
|
shutdown(fd, SHUT_WR);
|
|
|
|
close(fd);
|
|
|
|
return ok ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2012-01-30 16:46:46 +01:00
|
|
|
int run(char **uris, int n)
|
2012-01-29 16:34:10 +01:00
|
|
|
{
|
|
|
|
spdylay_session_callbacks callbacks;
|
|
|
|
memset(&callbacks, 0, sizeof(spdylay_session_callbacks));
|
|
|
|
callbacks.send_callback = send_callback;
|
|
|
|
callbacks.recv_callback = recv_callback;
|
|
|
|
callbacks.on_stream_close_callback = on_stream_close_callback;
|
2012-01-30 16:46:46 +01:00
|
|
|
if(config.verbose) {
|
2012-04-24 16:48:05 +02:00
|
|
|
callbacks.on_ctrl_recv_callback = on_ctrl_recv_callback3;
|
2012-01-29 16:34:10 +01:00
|
|
|
callbacks.on_data_recv_callback = on_data_recv_callback;
|
|
|
|
callbacks.on_ctrl_send_callback = on_ctrl_send_callback3;
|
2012-05-09 16:27:44 +02:00
|
|
|
callbacks.on_invalid_ctrl_recv_callback = on_invalid_ctrl_recv_callback;
|
2012-05-09 14:55:21 +02:00
|
|
|
callbacks.on_ctrl_recv_parse_error_callback =
|
|
|
|
on_ctrl_recv_parse_error_callback;
|
2012-05-09 15:41:08 +02:00
|
|
|
callbacks.on_unknown_ctrl_recv_callback = on_unknown_ctrl_recv_callback;
|
2012-01-29 16:34:10 +01:00
|
|
|
} else {
|
2012-04-24 16:48:05 +02:00
|
|
|
callbacks.on_ctrl_recv_callback = on_ctrl_recv_callback2;
|
2012-01-29 16:34:10 +01:00
|
|
|
callbacks.on_ctrl_send_callback = on_ctrl_send_callback2;
|
2012-01-30 16:46:46 +01:00
|
|
|
}
|
|
|
|
if(!config.null_out) {
|
2012-01-29 16:34:10 +01:00
|
|
|
callbacks.on_data_chunk_recv_callback = on_data_chunk_recv_callback;
|
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
ssl_debug = config.verbose;
|
|
|
|
std::vector<Request> reqvec;
|
|
|
|
std::string prev_host;
|
|
|
|
uint16_t prev_port = 0;
|
2012-03-02 19:59:07 +01:00
|
|
|
int failures = 0;
|
2012-01-30 16:46:46 +01:00
|
|
|
for(int i = 0; i < n; ++i) {
|
|
|
|
uri::UriStruct us;
|
|
|
|
if(uri::parse(us, uris[i])) {
|
|
|
|
if(prev_host != us.host || prev_port != us.port) {
|
|
|
|
if(!reqvec.empty()) {
|
2012-03-02 19:59:07 +01:00
|
|
|
if (communicate(prev_host, prev_port, reqvec, &callbacks) != 0) {
|
|
|
|
++failures;
|
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
reqvec.clear();
|
|
|
|
}
|
|
|
|
prev_host = us.host;
|
|
|
|
prev_port = us.port;
|
|
|
|
}
|
|
|
|
reqvec.push_back(Request(us));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!reqvec.empty()) {
|
2012-03-02 19:59:07 +01:00
|
|
|
if (communicate(prev_host, prev_port, reqvec, &callbacks) != 0) {
|
|
|
|
++failures;
|
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
}
|
2012-03-02 19:59:07 +01:00
|
|
|
return failures;
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
|
2012-01-30 16:46:46 +01:00
|
|
|
void print_usage(std::ostream& out)
|
|
|
|
{
|
2012-05-12 14:20:19 +02:00
|
|
|
out << "Usage: spdycat [-Onv23] [-t <SECONDS>] [-w <WINDOW_BITS>] [--cert=<CERT>]\n"
|
2012-05-12 14:13:56 +02:00
|
|
|
<< " [--key=<KEY>] <URI>..."
|
2012-05-08 14:46:44 +02:00
|
|
|
<< std::endl;
|
2012-01-30 16:46:46 +01:00
|
|
|
}
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2012-01-30 16:46:46 +01:00
|
|
|
void print_help(std::ostream& out)
|
2012-01-29 16:34:10 +01:00
|
|
|
{
|
2012-01-30 16:46:46 +01:00
|
|
|
print_usage(out);
|
|
|
|
out << "\n"
|
|
|
|
<< "OPTIONS:\n"
|
|
|
|
<< " -v, --verbose Print debug information such as reception/\n"
|
|
|
|
<< " transmission of frames and name/value pairs.\n"
|
|
|
|
<< " -n, --null-out Discard downloaded data.\n"
|
|
|
|
<< " -O, --remote-name Save download data in the current directory.\n"
|
|
|
|
<< " The filename is dereived from URI. If URI\n"
|
|
|
|
<< " ends with '/', 'index.html' is used as a\n"
|
|
|
|
<< " filename. Not implemented yet.\n"
|
2012-05-12 14:20:19 +02:00
|
|
|
<< " -2, --spdy2 Only use SPDY/2.\n"
|
2012-02-26 10:13:56 +01:00
|
|
|
<< " -3, --spdy3 Only use SPDY/3.\n"
|
2012-05-09 16:41:15 +02:00
|
|
|
<< " -t, --timeout=<N> Timeout each request after <N> seconds.\n"
|
2012-05-12 14:13:56 +02:00
|
|
|
<< " -w, --window-bits=<N>\n"
|
|
|
|
<< " Sets the initial window size to 2**<N>.\n"
|
2012-05-09 16:41:15 +02:00
|
|
|
<< " --cert=<CERT> Use the specified client certificate file.\n"
|
2012-04-22 16:04:55 +02:00
|
|
|
<< " The file must be in PEM format.\n"
|
2012-05-09 16:41:15 +02:00
|
|
|
<< " --key=<KEY> Use the client private key file. The file\n"
|
2012-04-22 16:04:55 +02:00
|
|
|
<< " must be in PEM format.\n"
|
2012-01-30 16:46:46 +01:00
|
|
|
<< std::endl;
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2012-01-30 16:46:46 +01:00
|
|
|
while(1) {
|
2012-04-22 16:04:55 +02:00
|
|
|
int flag;
|
2012-01-30 16:46:46 +01:00
|
|
|
static option long_options[] = {
|
|
|
|
{"verbose", no_argument, 0, 'v' },
|
|
|
|
{"null-out", no_argument, 0, 'n' },
|
|
|
|
{"remote-name", no_argument, 0, 'O' },
|
2012-05-12 14:20:19 +02:00
|
|
|
{"spdy2", no_argument, 0, '2' },
|
2012-02-26 10:13:56 +01:00
|
|
|
{"spdy3", no_argument, 0, '3' },
|
2012-04-04 19:19:00 +02:00
|
|
|
{"timeout", required_argument, 0, 't' },
|
2012-05-08 14:46:44 +02:00
|
|
|
{"window-bits", required_argument, 0, 'w' },
|
2012-04-22 16:04:55 +02:00
|
|
|
{"cert", required_argument, &flag, 1 },
|
|
|
|
{"key", required_argument, &flag, 2 },
|
2012-01-30 16:46:46 +01:00
|
|
|
{"help", no_argument, 0, 'h' },
|
|
|
|
{0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
int option_index = 0;
|
2012-05-12 14:20:19 +02:00
|
|
|
int c = getopt_long(argc, argv, "Onhv23t:w:", long_options, &option_index);
|
2012-01-30 16:46:46 +01:00
|
|
|
if(c == -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch(c) {
|
|
|
|
case 'O':
|
|
|
|
config.remote_name = true;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
print_help(std::cout);
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
case 'n':
|
|
|
|
config.null_out = true;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
config.verbose = true;
|
|
|
|
break;
|
2012-05-12 14:20:19 +02:00
|
|
|
case '2':
|
|
|
|
config.spdy_version = SPDYLAY_PROTO_SPDY2;
|
|
|
|
break;
|
2012-02-26 10:13:56 +01:00
|
|
|
case '3':
|
2012-05-12 14:20:19 +02:00
|
|
|
config.spdy_version = SPDYLAY_PROTO_SPDY3;
|
2012-02-26 10:13:56 +01:00
|
|
|
break;
|
2012-04-04 19:19:00 +02:00
|
|
|
case 't':
|
|
|
|
config.timeout = atoi(optarg);
|
|
|
|
break;
|
2012-05-08 14:46:44 +02:00
|
|
|
case 'w': {
|
|
|
|
errno = 0;
|
|
|
|
unsigned long int n = strtoul(optarg, 0, 10);
|
|
|
|
if(errno == 0 && n < 31) {
|
|
|
|
config.window_bits = n;
|
|
|
|
} else {
|
|
|
|
std::cerr << "-w: specify the integer in the range [0, 30], inclusive"
|
|
|
|
<< std::endl;
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
case '?':
|
|
|
|
exit(EXIT_FAILURE);
|
2012-04-22 16:04:55 +02:00
|
|
|
case 0:
|
|
|
|
switch(flag) {
|
|
|
|
case 1:
|
|
|
|
// cert option
|
|
|
|
config.certfile = optarg;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// key option
|
|
|
|
config.keyfile = optarg;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2012-01-30 16:46:46 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
|
|
|
struct sigaction act;
|
|
|
|
memset(&act, 0, sizeof(struct sigaction));
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGPIPE, &act, 0);
|
|
|
|
SSL_load_error_strings();
|
|
|
|
SSL_library_init();
|
2012-01-30 16:46:46 +01:00
|
|
|
reset_timer();
|
2012-03-02 19:59:07 +01:00
|
|
|
return run(argv+optind, argc-optind);
|
2012-01-29 16:34:10 +01:00
|
|
|
}
|
2012-01-30 16:46:46 +01:00
|
|
|
|
|
|
|
} // namespace spdylay
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
return spdylay::main(argc, argv);
|
|
|
|
}
|