blob: 6c8968112cd8a55f827eef6c00c89e93e2fc05e4 [file] [log] [blame]
// 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.
#ifndef _VPN_MANAGER_L2TP_MANAGER_H_
#define _VPN_MANAGER_L2TP_MANAGER_H_
#include <sys/socket.h>
#include "base/file_util.h"
#include "base/memory/scoped_ptr.h"
#include "base/time.h"
#include "gtest/gtest_prod.h" // for FRIEND_TEST
#include "vpn-manager/service_manager.h"
namespace chromeos {
class Process;
}
namespace vpn_manager {
// Manages the L2TP daemon. This manager orchestrates configuring and
// launching the L2TP daemon, initiating the L2TP connection, and
// detecting when PPP has been set up. It also sends user credentials
// to PPP through the L2TP control fifo unless the user has specified
// a PPP plugin should be used, which it will defer to. Current
// implementation assumes a connection that has been stopped will not
// be started again with the same object.
class L2tpManager : public ServiceManager {
public:
L2tpManager();
// Initialize the object using |remote_host|. Returns false if
// an illegal set of parameters has been given. Has no side effects
// other than setting up the object.
bool Initialize(const sockaddr& remote_address);
virtual bool Start();
virtual void Stop();
virtual int Poll();
virtual void ProcessOutput();
virtual void ProcessPppOutput();
virtual bool IsChild(pid_t pid);
virtual void OnSyslogOutput(const std::string& prefix,
const std::string& line);
// Returns the stderr output file descriptor of our child process.
int output_fd() const { return output_fd_; }
// Returns the log output file descriptor of the ppp daemon.
int ppp_output_fd() const { return ppp_output_fd_; }
private:
friend class L2tpManagerTest;
FRIEND_TEST(L2tpManagerTest, FormatL2tpdConfiguration);
FRIEND_TEST(L2tpManagerTest, FormatPppdConfiguration);
FRIEND_TEST(L2tpManagerTest, Initiate);
FRIEND_TEST(L2tpManagerTest, PollInitiateConnection);
FRIEND_TEST(L2tpManagerTest, PollNothingIfRunning);
FRIEND_TEST(L2tpManagerTest, PollTimeoutWaitingForControl);
FRIEND_TEST(L2tpManagerTest, PollTimeoutWaitingForUp);
FRIEND_TEST(L2tpManagerTest, PollTransitionToUp);
FRIEND_TEST(L2tpManagerTest, PollWaitIfNotUpYet);
FRIEND_TEST(L2tpManagerTest, Start);
FRIEND_TEST(L2tpManagerTest, Terminate);
bool CreatePppLogFifo();
std::string FormatL2tpdConfiguration(const std::string& ppp_config_path);
std::string FormatPppdConfiguration();
bool Initiate();
bool Terminate();
// Has the L2TP connection been initiated yet.
bool was_initiated_;
// l2tp daemon stderr pipe file descriptor.
int output_fd_;
// ppp daemon log pipe file descriptor.
int ppp_output_fd_;
// Start time of the l2tp daemon.
base::TimeTicks start_ticks_;
// Remote address for L2TP connection.
struct sockaddr remote_address_;
// Remote address for L2TP connection (as a string).
std::string remote_address_text_;
// Last partial line read from output_fd_.
std::string partial_output_line_;
// Last partial line read from ppp_output_fd_.
std::string partial_ppp_output_line_;
// Path to a file whose existence indicates the ppp device is up.
FilePath ppp_interface_path_;
// Path to ppp daemon's log file.
FilePath ppp_output_path_;
// Path to l2tp daemon's control file.
FilePath l2tpd_control_path_;
// Running l2tp process.
scoped_ptr<chromeos::Process> l2tpd_;
};
} // namespace vpn_manager
#endif // _VPN_MANAGER_L2TP_MANAGER_H_