Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Unified Diff: l2tpipsec_vpn.cc

Issue 6508016: vpn-manager: Add l2tp/ipsec vpn manager (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vpn-manager.git@master
Patch Set: respond to petkov Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « l2tp_manager_test.cc ('k') | service_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: l2tpipsec_vpn.cc
diff --git a/l2tpipsec_vpn.cc b/l2tpipsec_vpn.cc
new file mode 100644
index 0000000000000000000000000000000000000000..24a57a7415ad7caa01f7c1c94e7a9d13e74ab24c
--- /dev/null
+++ b/l2tpipsec_vpn.cc
@@ -0,0 +1,134 @@
+// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <poll.h>
+#include <signal.h>
+#include <stddef.h>
+#include <sys/wait.h>
+
+#include <string>
+
+#include "base/command_line.h"
+#include "base/logging.h"
+#include "base/scoped_temp_dir.h"
+#include "chromeos/process.h"
+#include "chromeos/syslog_logging.h"
+#include "gflags/gflags.h"
+#include "vpn-manager/ipsec_manager.h"
+#include "vpn-manager/l2tp_manager.h"
+
+#pragma GCC diagnostic ignored "-Wstrict-aliasing"
+DEFINE_string(client_cert_file, "", "File with IPsec client certificate");
+DEFINE_string(client_key_file, "", "File with IPsec client private key");
+DEFINE_string(psk_file, "", "File with IPsec pre-shared key");
+DEFINE_string(remote_address, "", "VPN server address");
+DEFINE_string(server_ca_file, "", "File with IPsec server CA");
+#pragma GCC diagnostic error "-Wstrict-aliasing"
+
+// True if a signal has requested termination.
+static bool s_terminate_request = false;
+
+void HandleSignal(int sig_num) {
+ LOG(INFO) << "Caught signal " << sig_num;
+ switch(sig_num) {
+ case SIGTERM:
+ case SIGINT:
+ s_terminate_request = true;
+ break;
+ case SIGALRM:
+ break;
+ }
+}
+
+static void InstallSignalHandlers() {
+ struct sigaction sa;
+ memset(&sa, 0, sizeof(sa));
+ sa.sa_handler = HandleSignal;
+ sigaction(SIGTERM, &sa, NULL);
+ sigaction(SIGINT, &sa, NULL);
+ sigaction(SIGALRM, &sa, NULL);
+}
+
+static void LockDownUmask() {
+ // Only user and group may access configuration files we create.
+ umask(S_IWGRP | S_IROTH | S_IWOTH);
+}
+
+// Run the main event loop. The events to handle are:
+// 1) timeout from poll
+// 2) caught signal
+// 3) stdout/err of child process ready
+// 4) child process dies
+static void RunEventLoop(IpsecManager* ipsec, L2tpManager* l2tp) {
+ do {
+ int status;
+ int ipsec_poll_timeout = ipsec->Poll();
+ int l2tp_poll_timeout = l2tp->Poll();
+ int poll_timeout = (ipsec_poll_timeout > l2tp_poll_timeout) ?
+ ipsec_poll_timeout : l2tp_poll_timeout;
+
+ const int poll_input_count = 2;
+ struct pollfd poll_inputs[poll_input_count] = {
+ { ipsec->output_fd(), POLLIN }, // ipsec output
+ { l2tp->output_fd(), POLLIN } // l2tp output
+ };
+ int poll_result = poll(poll_inputs, poll_input_count, poll_timeout);
+ if (poll_result < 0 && errno != EINTR) {
+ int saved_errno = errno;
+ LOG(ERROR) << "Unexpected poll error: " << saved_errno;
+ return;
+ }
+
+ // Check if there are any child processes to be reaped without
+ // blocking.
+ pid_t pid = waitpid(-1, &status, WNOHANG);
+ if (pid > 0 && (ipsec->IsChild(pid) || l2tp->IsChild(pid))) {
+ LOG(WARNING) << "Child process " << pid << " stopped early";
+ s_terminate_request = true;
+ }
+
+ if (poll_inputs[0].revents & POLLIN)
+ ipsec->ProcessOutput();
+ if (poll_inputs[1].revents & POLLIN)
+ l2tp->ProcessOutput();
+ } while(!ipsec->was_stopped() && !s_terminate_request);
+}
+
+int main(int argc, char* argv[]) {
+ ScopedTempDir temp_dir;
+ CommandLine::Init(argc, argv);
+ google::ParseCommandLineFlags(&argc, &argv, true);
+ int log_flags = chromeos::kLogToSyslog;
+ if (isatty(STDOUT_FILENO)) log_flags |= chromeos::kLogToStderr;
+ chromeos::InitLog(log_flags);
+ chromeos::OpenLog("l2tpipsec_vpn", true);
+ IpsecManager ipsec;
+ L2tpManager l2tp;
+
+ LockDownUmask();
+
+ ServiceManager::InitializeDirectories(&temp_dir);
+
+ if (!ipsec.Initialize(1,
+ FLAGS_remote_address,
+ FLAGS_psk_file,
+ FLAGS_server_ca_file,
+ FLAGS_client_key_file,
+ FLAGS_client_cert_file)) {
+ return 1;
+ }
+ if (!l2tp.Initialize(FLAGS_remote_address)) {
+ return 1;
+ }
+ ServiceManager::SetLayerOrder(&ipsec, &l2tp);
+
+ InstallSignalHandlers();
+ CHECK(ipsec.Start()) << "Unable to start IPsec layer";
+
+ RunEventLoop(&ipsec, &l2tp);
+
+ LOG(INFO) << "Shutting down...";
+ l2tp.Stop();
+ return 0;
+}
« no previous file with comments | « l2tp_manager_test.cc ('k') | service_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698