blob: b544225c1fc50fe6741f4961c2c7b8b6eba4677e [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef SHILL_OPENVPN_DRIVER_H_
#define SHILL_OPENVPN_DRIVER_H_
#include <map>
#include <string>
#include <vector>
#include <base/file_path.h>
#include <base/memory/scoped_ptr.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include "shill/glib.h"
#include "shill/ipconfig.h"
#include "shill/refptr_types.h"
#include "shill/rpc_task.h"
#include "shill/service.h"
#include "shill/sockets.h"
#include "shill/vpn_driver.h"
namespace base {
template<typename T>
class WeakPtr;
} // namespace base;
namespace shill {
class CertificateFile;
class ControlInterface;
class DeviceInfo;
class Error;
class Metrics;
class NSS;
class OpenVPNManagementServer;
class ProcessKiller;
class OpenVPNDriver : public VPNDriver,
public RPCTaskDelegate {
public:
enum ReconnectReason {
kReconnectReasonUnknown,
kReconnectReasonOffline,
kReconnectReasonTLSError,
};
OpenVPNDriver(ControlInterface *control,
EventDispatcher *dispatcher,
Metrics *metrics,
Manager *manager,
DeviceInfo *device_info,
GLib *glib);
virtual ~OpenVPNDriver();
virtual void OnReconnecting(ReconnectReason reason);
// Resets the VPN state and deallocates all resources. If there's a service
// associated through Connect, sets its state to Service::kStateIdle and
// disassociates from the service.
virtual void IdleService();
// Resets the VPN state and deallocates all resources. If there's a service
// associated through Connect, sets its state to Service::kStateFailure, sets
// the failure reason to |failure|, sets its ErrorDetails property to
// |error_details|, and disassociates from the service.
virtual void FailService(Service::ConnectFailure failure,
const std::string &error_details);
// Append zero-valued, single-valued and double-valued options to the
// |options| array.
static void AppendOption(
const std::string &option,
std::vector<std::vector<std::string>> *options);
static void AppendOption(
const std::string &option,
const std::string &value,
std::vector<std::vector<std::string>> *options);
static void AppendOption(
const std::string &option,
const std::string &value0,
const std::string &value1,
std::vector<std::vector<std::string>> *options);
// Returns true if an option was appended.
bool AppendValueOption(const std::string &property,
const std::string &option,
std::vector<std::vector<std::string>> *options);
// Returns true if a flag was appended.
bool AppendFlag(const std::string &property,
const std::string &option,
std::vector<std::vector<std::string>> *options);
protected:
// Inherited from VPNDriver. |Connect| initiates the VPN connection by
// creating a tunnel device. When the device index becomes available, this
// instance is notified through |ClaimInterface| and resumes the connection
// process by setting up and spawning an external 'openvpn' process. IP
// configuration settings are passed back from the external process through
// the |Notify| RPC service method.
virtual void Connect(const VPNServiceRefPtr &service, Error *error);
virtual bool ClaimInterface(const std::string &link_name,
int interface_index);
virtual void Disconnect();
virtual std::string GetProviderType() const;
virtual void OnConnectionDisconnected();
virtual void OnConnectTimeout();
private:
friend class OpenVPNDriverTest;
FRIEND_TEST(OpenVPNDriverTest, ClaimInterface);
FRIEND_TEST(OpenVPNDriverTest, Cleanup);
FRIEND_TEST(OpenVPNDriverTest, Connect);
FRIEND_TEST(OpenVPNDriverTest, ConnectTunnelFailure);
FRIEND_TEST(OpenVPNDriverTest, DeleteInterface);
FRIEND_TEST(OpenVPNDriverTest, Disconnect);
FRIEND_TEST(OpenVPNDriverTest, GetRouteOptionEntry);
FRIEND_TEST(OpenVPNDriverTest, InitCAOptions);
FRIEND_TEST(OpenVPNDriverTest, InitClientAuthOptions);
FRIEND_TEST(OpenVPNDriverTest, InitEnvironment);
FRIEND_TEST(OpenVPNDriverTest, InitLoggingOptions);
FRIEND_TEST(OpenVPNDriverTest, InitOptions);
FRIEND_TEST(OpenVPNDriverTest, InitOptionsHostWithPort);
FRIEND_TEST(OpenVPNDriverTest, InitOptionsNoHost);
FRIEND_TEST(OpenVPNDriverTest, InitPKCS11Options);
FRIEND_TEST(OpenVPNDriverTest, Notify);
FRIEND_TEST(OpenVPNDriverTest, NotifyUMA);
FRIEND_TEST(OpenVPNDriverTest, NotifyFail);
FRIEND_TEST(OpenVPNDriverTest, OnDefaultServiceChanged);
FRIEND_TEST(OpenVPNDriverTest, OnOpenVPNDied);
FRIEND_TEST(OpenVPNDriverTest, ParseForeignOption);
FRIEND_TEST(OpenVPNDriverTest, ParseForeignOptions);
FRIEND_TEST(OpenVPNDriverTest, ParseIPConfiguration);
FRIEND_TEST(OpenVPNDriverTest, ParseLSBRelease);
FRIEND_TEST(OpenVPNDriverTest, ParseRouteOption);
FRIEND_TEST(OpenVPNDriverTest, SetRoutes);
FRIEND_TEST(OpenVPNDriverTest, SpawnOpenVPN);
FRIEND_TEST(OpenVPNDriverTest, SplitPortFromHost);
FRIEND_TEST(OpenVPNDriverTest, VerifyPaths);
FRIEND_TEST(OpenVPNDriverTest, WriteConfigFile);
// The map is a sorted container that allows us to iterate through the options
// in order.
typedef std::map<int, std::string> ForeignOptions;
typedef std::map<int, IPConfig::Route> RouteOptions;
static const char kDefaultCACertificates[];
static const char kOpenVPNPath[];
static const char kOpenVPNScript[];
static const Property kProperties[];
static const char kLSBReleaseFile[];
static const char kChromeOSReleaseName[];
static const char kChromeOSReleaseVersion[];
static const char kDefaultOpenVPNConfigurationDirectory[];
static const int kReconnectOfflineTimeoutSeconds;
static const int kReconnectTLSErrorTimeoutSeconds;
static void ParseIPConfiguration(
const std::map<std::string, std::string> &configuration,
IPConfig::Properties *properties);
static void ParseForeignOptions(const ForeignOptions &options,
IPConfig::Properties *properties);
static void ParseForeignOption(const std::string &option,
std::vector<std::string> *domain_search,
std::vector<std::string> *dns_servers);
static IPConfig::Route *GetRouteOptionEntry(const std::string &prefix,
const std::string &key,
RouteOptions *routes);
static void ParseRouteOption(const std::string &key,
const std::string &value,
RouteOptions *routes);
static void SetRoutes(const RouteOptions &routes,
IPConfig::Properties *properties);
// If |host| is in the "name:port" format, sets up |name| and |port|
// appropriately and returns true. Otherwise, returns false.
static bool SplitPortFromHost(const std::string &host,
std::string *name,
std::string *port);
void InitOptions(
std::vector<std::vector<std::string>> *options, Error *error);
bool InitCAOptions(
std::vector<std::vector<std::string>> *options, Error *error);
void InitClientAuthOptions(std::vector<std::vector<std::string>> *options);
void InitPKCS11Options(std::vector<std::vector<std::string>> *options);
bool InitManagementChannelOptions(
std::vector<std::vector<std::string>> *options, Error *error);
void InitLoggingOptions(std::vector<std::vector<std::string>> *options);
void InitEnvironment(std::vector<std::string> *environment);
bool ParseLSBRelease(std::map<std::string, std::string> *lsb_release);
bool SpawnOpenVPN();
// Implements the public IdleService and FailService methods. Resets the VPN
// state and deallocates all resources. If there's a service associated
// through Connect, sets its state |state|; if |state| is
// Service::kStateFailure, sets the failure reason to |failure| and its
// ErrorDetails property to |error_details|; disassociates from the service.
void Cleanup(Service::ConnectState state,
Service::ConnectFailure failure,
const std::string &error_details);
static int GetReconnectTimeoutSeconds(ReconnectReason reason);
// Join a list of options into a single string.
static std::string JoinOptions(
const std::vector<std::vector<std::string>> &options, char separator);
// Output an OpenVPN configuration.
bool WriteConfigFile(const std::vector<std::vector<std::string>> &options,
base::FilePath *config_file);
// Called when the openpvn process exits.
static void OnOpenVPNDied(GPid pid, gint status, gpointer data);
// Standalone callback used to delete the tunnel interface when the openvpn
// process dies.
static void DeleteInterface(const base::WeakPtr<DeviceInfo> &device_info,
int interface_index);
// Inherit from VPNDriver to add custom properties.
virtual KeyValueStore GetProvider(Error *error);
// Implements RPCTaskDelegate.
virtual void GetLogin(std::string *user, std::string *password);
virtual void Notify(const std::string &reason,
const std::map<std::string, std::string> &dict);
void OnDefaultServiceChanged(const ServiceRefPtr &service);
void ReportConnectionMetrics();
ControlInterface *control_;
Metrics *metrics_;
DeviceInfo *device_info_;
GLib *glib_;
Sockets sockets_;
scoped_ptr<OpenVPNManagementServer> management_server_;
NSS *nss_;
scoped_ptr<CertificateFile> certificate_file_;
ProcessKiller *process_killer_;
base::FilePath lsb_release_file_;
VPNServiceRefPtr service_;
scoped_ptr<RPCTask> rpc_task_;
std::string tunnel_interface_;
VirtualDeviceRefPtr device_;
base::FilePath tls_auth_file_;
base::FilePath openvpn_config_directory_;
base::FilePath openvpn_config_file_;
IPConfig::Properties ip_properties_;
// The PID of the spawned openvpn process. May be 0 if no process has been
// spawned yet or the process has died.
int pid_;
// Child exit watch callback source tag.
unsigned int child_watch_tag_;
// Default service watch callback tag.
int default_service_callback_tag_;
DISALLOW_COPY_AND_ASSIGN(OpenVPNDriver);
};
} // namespace shill
#endif // SHILL_OPENVPN_DRIVER_H_