Thieu Le | 94eed56 | 2012-02-21 15:57:29 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Darin Petkov | 50308cd | 2011-06-01 18:25:07 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef SHILL_DHCP_CONFIG_ |
| 6 | #define SHILL_DHCP_CONFIG_ |
| 7 | |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 8 | #include <base/file_path.h> |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 9 | #include <base/memory/scoped_ptr.h> |
Darin Petkov | aceede3 | 2011-07-18 15:32:38 -0700 | [diff] [blame] | 10 | #include <dbus-c++/types.h> |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 11 | #include <glib.h> |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 12 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 13 | |
Darin Petkov | 50308cd | 2011-06-01 18:25:07 -0700 | [diff] [blame] | 14 | #include "shill/ipconfig.h" |
| 15 | |
| 16 | namespace shill { |
| 17 | |
Chris Masone | 19e3040 | 2011-07-19 15:48:47 -0700 | [diff] [blame] | 18 | class ControlInterface; |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 19 | class DHCPProvider; |
| 20 | class DHCPProxyInterface; |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 21 | class EventDispatcher; |
Darin Petkov | 3258a81 | 2011-06-23 11:28:45 -0700 | [diff] [blame] | 22 | class GLib; |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 23 | class ProxyFactory; |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 24 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 25 | class DHCPConfig : public IPConfig { |
Darin Petkov | 50308cd | 2011-06-01 18:25:07 -0700 | [diff] [blame] | 26 | public: |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 27 | typedef std::map<std::string, DBus::Variant> Configuration; |
| 28 | |
Darin Petkov | 14c29ec | 2012-03-02 11:34:19 +0100 | [diff] [blame] | 29 | static const int kMinMTU; |
| 30 | |
Chris Masone | 19e3040 | 2011-07-19 15:48:47 -0700 | [diff] [blame] | 31 | DHCPConfig(ControlInterface *control_interface, |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 32 | EventDispatcher *dispatcher, |
Chris Masone | 19e3040 | 2011-07-19 15:48:47 -0700 | [diff] [blame] | 33 | DHCPProvider *provider, |
Darin Petkov | f65e928 | 2011-06-21 14:29:56 -0700 | [diff] [blame] | 34 | const std::string &device_name, |
Paul Stewart | d32f484 | 2012-01-11 16:08:13 -0800 | [diff] [blame] | 35 | const std::string &request_hostname, |
Darin Petkov | 3258a81 | 2011-06-23 11:28:45 -0700 | [diff] [blame] | 36 | GLib *glib); |
Darin Petkov | 50308cd | 2011-06-01 18:25:07 -0700 | [diff] [blame] | 37 | virtual ~DHCPConfig(); |
| 38 | |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 39 | // Inherited from IPConfig. |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 40 | virtual bool RequestIP(); |
| 41 | virtual bool RenewIP(); |
| 42 | virtual bool ReleaseIP(); |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 43 | |
| 44 | // If |proxy_| is not initialized already, sets it to a new D-Bus proxy to |
| 45 | // |service|. |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 46 | void InitProxy(const std::string &service); |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 47 | |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 48 | // Processes an Event signal from dhcpcd. |
| 49 | void ProcessEventSignal(const std::string &reason, |
| 50 | const Configuration &configuration); |
| 51 | |
Darin Petkov | 50308cd | 2011-06-01 18:25:07 -0700 | [diff] [blame] | 52 | private: |
Darin Petkov | 98dd6a0 | 2011-06-10 15:12:57 -0700 | [diff] [blame] | 53 | friend class DHCPConfigTest; |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 54 | FRIEND_TEST(DHCPConfigTest, GetIPv4AddressString); |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 55 | FRIEND_TEST(DHCPConfigTest, InitProxy); |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 56 | FRIEND_TEST(DHCPConfigTest, ParseConfiguration); |
Darin Petkov | f9b0ca8 | 2011-06-20 12:10:23 -0700 | [diff] [blame] | 57 | FRIEND_TEST(DHCPConfigTest, ProcessEventSignalFail); |
| 58 | FRIEND_TEST(DHCPConfigTest, ProcessEventSignalSuccess); |
| 59 | FRIEND_TEST(DHCPConfigTest, ProcessEventSignalUnknown); |
Darin Petkov | 98dd6a0 | 2011-06-10 15:12:57 -0700 | [diff] [blame] | 60 | FRIEND_TEST(DHCPConfigTest, ReleaseIP); |
| 61 | FRIEND_TEST(DHCPConfigTest, RenewIP); |
| 62 | FRIEND_TEST(DHCPConfigTest, RequestIP); |
| 63 | FRIEND_TEST(DHCPConfigTest, Restart); |
| 64 | FRIEND_TEST(DHCPConfigTest, RestartNoClient); |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 65 | FRIEND_TEST(DHCPConfigTest, StartFail); |
Paul Stewart | d32f484 | 2012-01-11 16:08:13 -0800 | [diff] [blame] | 66 | FRIEND_TEST(DHCPConfigTest, StartWithHostname); |
| 67 | FRIEND_TEST(DHCPConfigTest, StartWithoutHostname); |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 68 | FRIEND_TEST(DHCPConfigTest, StartSuccess); |
Darin Petkov | 98dd6a0 | 2011-06-10 15:12:57 -0700 | [diff] [blame] | 69 | FRIEND_TEST(DHCPConfigTest, Stop); |
| 70 | FRIEND_TEST(DHCPProviderTest, CreateConfig); |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 71 | |
Darin Petkov | f9b0ca8 | 2011-06-20 12:10:23 -0700 | [diff] [blame] | 72 | static const char kConfigurationKeyBroadcastAddress[]; |
| 73 | static const char kConfigurationKeyDNS[]; |
| 74 | static const char kConfigurationKeyDomainName[]; |
| 75 | static const char kConfigurationKeyDomainSearch[]; |
| 76 | static const char kConfigurationKeyIPAddress[]; |
| 77 | static const char kConfigurationKeyMTU[]; |
| 78 | static const char kConfigurationKeyRouters[]; |
| 79 | static const char kConfigurationKeySubnetCIDR[]; |
| 80 | |
Thieu Le | 94eed56 | 2012-02-21 15:57:29 -0800 | [diff] [blame] | 81 | static const int kDHCPCDExitPollMilliseconds; |
| 82 | static const int kDHCPCDExitWaitMilliseconds; |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 83 | static const char kDHCPCDPath[]; |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 84 | static const char kDHCPCDPathFormatLease[]; |
| 85 | static const char kDHCPCDPathFormatPID[]; |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 86 | |
Darin Petkov | f9b0ca8 | 2011-06-20 12:10:23 -0700 | [diff] [blame] | 87 | static const char kReasonBound[]; |
| 88 | static const char kReasonFail[]; |
| 89 | static const char kReasonRebind[]; |
| 90 | static const char kReasonReboot[]; |
| 91 | static const char kReasonRenew[]; |
| 92 | |
Chris Masone | 0756f23 | 2011-07-21 17:24:00 -0700 | [diff] [blame] | 93 | static const char kType[]; |
| 94 | |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 95 | // Starts dhcpcd, returns true on success and false otherwise. |
| 96 | bool Start(); |
| 97 | |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 98 | // Stops dhcpcd if running. |
| 99 | void Stop(); |
| 100 | |
Darin Petkov | 98dd6a0 | 2011-06-10 15:12:57 -0700 | [diff] [blame] | 101 | // Stops dhcpcd if already running and then starts it. Returns true on success |
| 102 | // and false otherwise. |
| 103 | bool Restart(); |
| 104 | |
Darin Petkov | e7cb7f8 | 2011-06-03 13:21:51 -0700 | [diff] [blame] | 105 | // Parses |configuration| into |properties|. Returns true on success, and |
| 106 | // false otherwise. |
| 107 | bool ParseConfiguration(const Configuration& configuration, |
| 108 | IPConfig::Properties *properties); |
| 109 | |
| 110 | // Returns the string representation of the IP address |address|, or an |
| 111 | // empty string on failure. |
| 112 | std::string GetIPv4AddressString(unsigned int address); |
| 113 | |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 114 | // Called when the dhcpcd client process exits. |
| 115 | static void ChildWatchCallback(GPid pid, gint status, gpointer data); |
| 116 | |
Darin Petkov | 98dd6a0 | 2011-06-10 15:12:57 -0700 | [diff] [blame] | 117 | // Cleans up remaining state from a running client, if any, including freeing |
| 118 | // its GPid, exit watch callback, and state files. |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 119 | void CleanupClientState(); |
| 120 | |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 121 | // Store cached copies of singletons for speed/ease of testing. |
| 122 | ProxyFactory *proxy_factory_; |
| 123 | |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 124 | DHCPProvider *provider_; |
| 125 | |
Paul Stewart | d32f484 | 2012-01-11 16:08:13 -0800 | [diff] [blame] | 126 | // Hostname to be used in the request. This will be passed to the DHCP |
| 127 | // server in the request. |
| 128 | std::string request_hostname_; |
| 129 | |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 130 | // The PID of the spawned DHCP client. May be 0 if no client has been spawned |
| 131 | // yet or the client has died. |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 132 | int pid_; |
| 133 | |
| 134 | // Child exit watch callback source tag. |
| 135 | unsigned int child_watch_tag_; |
Darin Petkov | d1b715b | 2011-06-02 21:21:22 -0700 | [diff] [blame] | 136 | |
| 137 | // The proxy for communicating with the DHCP client. |
| 138 | scoped_ptr<DHCPProxyInterface> proxy_; |
| 139 | |
Darin Petkov | 92c4390 | 2011-06-09 20:46:06 -0700 | [diff] [blame] | 140 | // Root file path, used for testing. |
| 141 | FilePath root_; |
| 142 | |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 143 | EventDispatcher *dispatcher_; |
Darin Petkov | 3258a81 | 2011-06-23 11:28:45 -0700 | [diff] [blame] | 144 | GLib *glib_; |
Darin Petkov | f7897bc | 2011-06-08 17:13:36 -0700 | [diff] [blame] | 145 | |
Darin Petkov | 50308cd | 2011-06-01 18:25:07 -0700 | [diff] [blame] | 146 | DISALLOW_COPY_AND_ASSIGN(DHCPConfig); |
| 147 | }; |
| 148 | |
| 149 | } // namespace shill |
| 150 | |
| 151 | #endif // SHILL_DHCP_CONFIG_ |