| // Copyright 2015 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_PPP_DAEMON_H_ |
| #define SHILL_PPP_DAEMON_H_ |
| |
| #include <string> |
| |
| #include <base/callback.h> |
| #include <base/memory/weak_ptr.h> |
| #include <gtest/gtest_prod.h> |
| |
| #include "shill/external_task.h" |
| |
| namespace shill { |
| |
| class ControlInterface; |
| class GLib; |
| class Error; |
| |
| // PPPDaemon provides control over the configuration and instantiation of pppd |
| // processes. All pppd instances created through PPPDaemon will use shill's |
| // pppd plugin. |
| class PPPDaemon { |
| public: |
| // The type of callback invoked when an ExternalTask wrapping a pppd instance |
| // dies. The first argument is the pid of the process, the second is the exit |
| // code. |
| typedef base::Callback<void(pid_t, int)> DeathCallback; |
| |
| // Provides options used when preparing a pppd task for execution. These map |
| // to pppd command-line options. Refer to https://ppp.samba.org/pppd.html for |
| // more details about the meaning of each. |
| struct Options { |
| Options() |
| : debug(false), |
| no_detach(false), |
| no_default_route(false), |
| use_peer_dns(false), |
| use_shim_plugin(true), |
| use_pppoe_plugin(false) {} |
| |
| // Causes pppd to emit log messages useful for debugging connectivity. |
| bool debug; |
| |
| // Causes pppd to not fork and daemonize, remaining attached to the |
| // controlling terminal that spawned it. |
| bool no_detach; |
| |
| // Stops pppd from modifying the routing table. |
| bool no_default_route; |
| |
| // Instructs pppd to request DNS servers from the remote server. |
| bool use_peer_dns; |
| |
| // If set, will cause the shill pppd plugin to be used at the creation of |
| // the pppd instace. This will result in connectivity events being plumbed |
| // over D-Bus to the RPCTaskDelegate provided during PPPDaemon::Start. |
| bool use_shim_plugin; |
| |
| // If set, enables the rp-pppoe plugin which allows pppd to be used over |
| // ethernet devices. |
| bool use_pppoe_plugin; |
| }; |
| |
| // The path to the pppd plugin provided by shill. |
| static const char kShimPluginPath[]; |
| |
| // Starts a pppd instance. |options| provides the configuration for the |
| // instance to be started, |device| specifies which device the PPP connection |
| // is to be established on, |death_callback| will be invoked when the |
| // underlying pppd process dies. |error| is populated if the task cannot be |
| // started, and nullptr is returned. |
| static std::unique_ptr<ExternalTask> Start( |
| ControlInterface *control_interface, |
| GLib *glib, |
| const base::WeakPtr<RPCTaskDelegate> &task_delegate, |
| const Options &options, |
| const std::string &device, |
| const DeathCallback &death_callback, |
| Error *error); |
| |
| private: |
| FRIEND_TEST(PPPDaemonTest, PluginUsed); |
| |
| static const char kDaemonPath[]; |
| static const char kPPPoEPluginPath[]; |
| |
| PPPDaemon(); |
| ~PPPDaemon(); |
| |
| DISALLOW_COPY_AND_ASSIGN(PPPDaemon); |
| }; |
| |
| } // namespace shill |
| |
| #endif // SHILL_PPP_DAEMON_H_ |