1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
#include "config.h"
#include <arpa/inet.h>
#ifdef HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h> /* DNS HEADER struct */
#endif
#include <fcntl.h>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <gtest/gtest.h>
#include <csignal>
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#include <netdb.h>
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h> /* inet_ functions / structs */
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#ifdef HAVE_VFORK_H
#include <vfork.h>
#endif
#include "net/connection_pool.h"
#include "net/url_fetcher.h"
#include "util/libevent_wrapper.h"
#include "util/status_test_util.h"
#include "util/sync_task.h"
#include "util/testing.h"
#include "util/thread_pool.h"
DECLARE_int32(connection_read_timeout_seconds);
DECLARE_int32(connection_write_timeout_seconds);
DECLARE_string(trusted_root_certs);
namespace cert_trans {
using std::make_shared;
using std::shared_ptr;
using std::string;
using std::to_string;
using std::unique_ptr;
using util::SyncTask;
using util::testing::StatusIs;
DEFINE_string(cert_dir, "test/testdata/urlfetcher_test_certs",
"Directory containing the test certs.");
const uint16_t kLocalHostPort = 4433;
const uint16_t kNonLocalHostPort = 4434;
const uint16_t kStarExampleComPort = 4435;
const uint16_t kBinkyExampleComPort = 4436;
const uint16_t kExampleComPort = 4437;
const uint16_t k127_0_0_1Port = 4438;
const uint16_t kHangPort = 4439;
namespace {
class LocalhostResolver : public libevent::Base::Resolver {
public:
string Resolve(const std::string& name) override {
return "127.0.0.1";
}
};
pid_t RunOpenSSLServer(uint16_t port, const std::string& cert_file,
const std::string& key_file,
const std::string& mode = "-www") {
#ifdef HAVE_WORKING_VFORK
pid_t pid(vfork());
#else
pid_t pid(fork());
#endif
if (pid == -1) {
LOG(INFO) << "fork() failed: " << pid;
} else if (pid == 0) {
const string port_str(to_string(port));
const string cert_str(FLAGS_cert_dir + "/" + cert_file);
const string key_str(FLAGS_cert_dir + "/" + key_file);
const char* argv[]{"openssl", "s_server",
"-accept", port_str.c_str(),
"-cert", cert_str.c_str(),
"-key", key_str.c_str(),
mode.c_str(), 0L};
execvp(argv[0], const_cast<char**>(argv));
}
return pid;
}
} // namespace
class UrlFetcherTest : public ::testing::Test {
public:
UrlFetcherTest()
: base_(make_shared<libevent::Base>(
unique_ptr<libevent::Base::Resolver>(new LocalhostResolver))),
event_pump_(base_),
pool_() {
FLAGS_trusted_root_certs = FLAGS_cert_dir + "/ca-cert.pem";
fetcher_.reset(new UrlFetcher(base_.get(), &pool_));
}
protected:
shared_ptr<libevent::Base> base_;
shared_ptr<UrlFetcher> fetcher_;
libevent::EventPumpThread event_pump_;
ThreadPool pool_;
};
TEST_F(UrlFetcherTest, TestCertMatchesHost) {
UrlFetcher::Request req(
URL("https://localhost:" + to_string(kLocalHostPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_OK(task.status());
EXPECT_EQ(200, resp.status_code);
}
TEST_F(UrlFetcherTest, TestCertDoesNotMatchHost) {
UrlFetcher::Request req(
URL("https://localhost:" + to_string(kNonLocalHostPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestNotListening) {
UrlFetcher::Request req(URL("https://localhost:63544"));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kUnknownErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestStarMatchesSubdomain) {
UrlFetcher::Request req(
URL("https://donkey.example.com:" + to_string(kStarExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_OK(task.status());
EXPECT_EQ(200, resp.status_code);
}
TEST_F(UrlFetcherTest, TestStarDoesNotMatcheIncorrectParentDomain) {
UrlFetcher::Request req(
URL("https://donkey.9600.org:" + to_string(kStarExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestSubdomainMatches) {
UrlFetcher::Request req(
URL("https://binky.example.com:" + to_string(kBinkyExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_OK(task.status());
EXPECT_EQ(200, resp.status_code);
}
TEST_F(UrlFetcherTest, TestSubdomainDoesNotMatchIncorrectParentDomain) {
UrlFetcher::Request req(
URL("https://binky.9600.org:" + to_string(kBinkyExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestSubstringSubjectDoesNotMatch) {
UrlFetcher::Request req(
URL("https://superexample.com:" + to_string(kExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestSuperstringSubjectDoesNotMatch) {
UrlFetcher::Request req(
URL("https://xample.com:" + to_string(kExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestSubstringHostDoesNotMatch) {
UrlFetcher::Request req(URL("https://exampl:" + to_string(kExampleComPort)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestIpMatches) {
UrlFetcher::Request req(
URL("https://127.0.0.1:" + to_string(k127_0_0_1Port)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_OK(task.status());
EXPECT_EQ(200, resp.status_code);
}
TEST_F(UrlFetcherTest, TestWrongIpDoesNotMatch) {
UrlFetcher::Request req(URL("https://1.2.3.4:" + to_string(k127_0_0_1Port)));
UrlFetcher::Response resp;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::UNAVAILABLE));
EXPECT_EQ(kSSLErrorStatus, resp.status_code);
}
TEST_F(UrlFetcherTest, TestTimeout) {
UrlFetcher::Request req(URL("http://localhost:" + to_string(kHangPort)));
UrlFetcher::Response resp;
FLAGS_connection_read_timeout_seconds = 1;
FLAGS_connection_write_timeout_seconds = 1;
SyncTask task(&pool_);
fetcher_->Fetch(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::DEADLINE_EXCEEDED));
EXPECT_EQ(kTimeout, resp.status_code);
}
} // namespace cert_trans
namespace {
pid_t localhost_pid(0);
pid_t nonlocalhost_pid(0);
pid_t star_example_com_pid(0);
pid_t binky_example_com_pid(0);
pid_t example_com_pid(0);
pid_t ip_address_pid(0);
void KillAllOpenSSLServers() {
kill(localhost_pid, SIGTERM);
kill(nonlocalhost_pid, SIGTERM);
kill(star_example_com_pid, SIGTERM);
kill(binky_example_com_pid, SIGTERM);
kill(example_com_pid, SIGTERM);
kill(ip_address_pid, SIGTERM);
waitpid(localhost_pid, nullptr, 0);
waitpid(nonlocalhost_pid, nullptr, 0);
waitpid(star_example_com_pid, nullptr, 0);
waitpid(binky_example_com_pid, nullptr, 0);
waitpid(example_com_pid, nullptr, 0);
waitpid(ip_address_pid, nullptr, 0);
}
} // namespace
int main(int argc, char** argv) {
cert_trans::test::InitTesting(argv[0], &argc, &argv, true);
OpenSSL_add_all_algorithms();
ERR_load_BIO_strings();
ERR_load_crypto_strings();
SSL_load_error_strings();
SSL_library_init();
signal(SIGPIPE, SIG_IGN);
int hang_fd(socket(AF_INET, SOCK_STREAM, 0));
CHECK_NE(-1, hang_fd);
CHECK_NE(-1, fcntl(hang_fd, F_SETFL, O_NONBLOCK));
struct sockaddr_in hang_addr;
bzero((char*)&hang_addr, sizeof(hang_addr));
hang_addr.sin_family = AF_INET;
// Prefer to use INADDR_LOOPBACK if available as it avoids the firewall
// triggering on some platforms if we bind a non-local address.
#ifdef HAVE_INADDR_LOOPBACK
hang_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
#else
hang_addr.sin_addr.s_addr = htonl(INADDR_ANY);
#endif
hang_addr.sin_port = htons(cert_trans::kHangPort);
CHECK_EQ(0, bind(hang_fd, reinterpret_cast<struct sockaddr*>(&hang_addr),
sizeof(hang_addr)))
<< strerror(errno);
CHECK_EQ(0, listen(hang_fd, 10));
struct sockaddr_in other_addr;
socklen_t other_size;
accept(hang_fd, reinterpret_cast<struct sockaddr*>(&other_addr),
&other_size);
localhost_pid =
cert_trans::RunOpenSSLServer(cert_trans::kLocalHostPort,
"localhost-cert.pem", "localhost-key.pem");
nonlocalhost_pid =
cert_trans::RunOpenSSLServer(cert_trans::kNonLocalHostPort,
"not-localhost-cert.pem",
"not-localhost-key.pem");
star_example_com_pid =
cert_trans::RunOpenSSLServer(cert_trans::kStarExampleComPort,
"star_example_com-cert.pem",
"star_example_com-key.pem");
binky_example_com_pid =
cert_trans::RunOpenSSLServer(cert_trans::kBinkyExampleComPort,
"binky_example_com-cert.pem",
"binky_example_com-key.pem");
example_com_pid = cert_trans::RunOpenSSLServer(cert_trans::kExampleComPort,
"example_com-cert.pem",
"example_com-key.pem");
ip_address_pid =
cert_trans::RunOpenSSLServer(cert_trans::k127_0_0_1Port,
"127_0_0_1-cert.pem", "127_0_0_1-key.pem");
sleep(1);
const int ret(RUN_ALL_TESTS());
KillAllOpenSSLServers();
close(hang_fd);
return ret;
}
|