blob: 8b81ddd8c27bc9995ef91f6a4425bfe347af8b15 [file] [log] [blame]
Darin Petkov50308cd2011-06-01 18:25:07 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
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 Petkov92c43902011-06-09 20:46:06 -07008#include <base/file_path.h>
Darin Petkovd1b715b2011-06-02 21:21:22 -07009#include <base/memory/scoped_ptr.h>
Darin Petkova7b89492011-07-27 12:48:17 -070010#include <base/task.h>
Darin Petkovaceede32011-07-18 15:32:38 -070011#include <dbus-c++/types.h>
Darin Petkov92c43902011-06-09 20:46:06 -070012#include <glib.h>
Darin Petkove7cb7f82011-06-03 13:21:51 -070013#include <gtest/gtest_prod.h> // for FRIEND_TEST
Darin Petkovd1b715b2011-06-02 21:21:22 -070014
Darin Petkov50308cd2011-06-01 18:25:07 -070015#include "shill/ipconfig.h"
16
17namespace shill {
18
Chris Masone19e30402011-07-19 15:48:47 -070019class ControlInterface;
Darin Petkovd1b715b2011-06-02 21:21:22 -070020class DHCPProvider;
21class DHCPProxyInterface;
Darin Petkova7b89492011-07-27 12:48:17 -070022class EventDispatcher;
Darin Petkov3258a812011-06-23 11:28:45 -070023class GLib;
Darin Petkovab565bb2011-10-06 02:55:51 -070024class ProxyFactory;
Darin Petkovd1b715b2011-06-02 21:21:22 -070025
Darin Petkov50308cd2011-06-01 18:25:07 -070026class DHCPConfig : public IPConfig {
27 public:
Darin Petkove7cb7f82011-06-03 13:21:51 -070028 typedef std::map<std::string, DBus::Variant> Configuration;
29
Chris Masone19e30402011-07-19 15:48:47 -070030 DHCPConfig(ControlInterface *control_interface,
Darin Petkova7b89492011-07-27 12:48:17 -070031 EventDispatcher *dispatcher,
Chris Masone19e30402011-07-19 15:48:47 -070032 DHCPProvider *provider,
Darin Petkovf65e9282011-06-21 14:29:56 -070033 const std::string &device_name,
Darin Petkov3258a812011-06-23 11:28:45 -070034 GLib *glib);
Darin Petkov50308cd2011-06-01 18:25:07 -070035 virtual ~DHCPConfig();
36
Darin Petkovd1b715b2011-06-02 21:21:22 -070037 // Inherited from IPConfig.
Darin Petkov92c43902011-06-09 20:46:06 -070038 virtual bool RequestIP();
39 virtual bool RenewIP();
40 virtual bool ReleaseIP();
Darin Petkovd1b715b2011-06-02 21:21:22 -070041
42 // If |proxy_| is not initialized already, sets it to a new D-Bus proxy to
43 // |service|.
Darin Petkova7b89492011-07-27 12:48:17 -070044 void InitProxy(const std::string &service);
Darin Petkovd1b715b2011-06-02 21:21:22 -070045
Darin Petkove7cb7f82011-06-03 13:21:51 -070046 // Processes an Event signal from dhcpcd.
47 void ProcessEventSignal(const std::string &reason,
48 const Configuration &configuration);
49
Darin Petkov50308cd2011-06-01 18:25:07 -070050 private:
Darin Petkov98dd6a02011-06-10 15:12:57 -070051 friend class DHCPConfigTest;
Darin Petkove7cb7f82011-06-03 13:21:51 -070052 FRIEND_TEST(DHCPConfigTest, GetIPv4AddressString);
Darin Petkova7b89492011-07-27 12:48:17 -070053 FRIEND_TEST(DHCPConfigTest, InitProxy);
Darin Petkove7cb7f82011-06-03 13:21:51 -070054 FRIEND_TEST(DHCPConfigTest, ParseConfiguration);
Darin Petkovf9b0ca82011-06-20 12:10:23 -070055 FRIEND_TEST(DHCPConfigTest, ProcessEventSignalFail);
56 FRIEND_TEST(DHCPConfigTest, ProcessEventSignalSuccess);
57 FRIEND_TEST(DHCPConfigTest, ProcessEventSignalUnknown);
Darin Petkov98dd6a02011-06-10 15:12:57 -070058 FRIEND_TEST(DHCPConfigTest, ReleaseIP);
59 FRIEND_TEST(DHCPConfigTest, RenewIP);
60 FRIEND_TEST(DHCPConfigTest, RequestIP);
61 FRIEND_TEST(DHCPConfigTest, Restart);
62 FRIEND_TEST(DHCPConfigTest, RestartNoClient);
Darin Petkov92c43902011-06-09 20:46:06 -070063 FRIEND_TEST(DHCPConfigTest, StartFail);
64 FRIEND_TEST(DHCPConfigTest, StartSuccess);
Darin Petkov98dd6a02011-06-10 15:12:57 -070065 FRIEND_TEST(DHCPConfigTest, Stop);
66 FRIEND_TEST(DHCPProviderTest, CreateConfig);
Darin Petkove7cb7f82011-06-03 13:21:51 -070067
Darin Petkovf9b0ca82011-06-20 12:10:23 -070068 static const char kConfigurationKeyBroadcastAddress[];
69 static const char kConfigurationKeyDNS[];
70 static const char kConfigurationKeyDomainName[];
71 static const char kConfigurationKeyDomainSearch[];
72 static const char kConfigurationKeyIPAddress[];
73 static const char kConfigurationKeyMTU[];
74 static const char kConfigurationKeyRouters[];
75 static const char kConfigurationKeySubnetCIDR[];
76
Darin Petkovd1b715b2011-06-02 21:21:22 -070077 static const char kDHCPCDPath[];
Darin Petkov92c43902011-06-09 20:46:06 -070078 static const char kDHCPCDPathFormatLease[];
79 static const char kDHCPCDPathFormatPID[];
Darin Petkovd1b715b2011-06-02 21:21:22 -070080
Darin Petkovf9b0ca82011-06-20 12:10:23 -070081 static const char kReasonBound[];
82 static const char kReasonFail[];
83 static const char kReasonRebind[];
84 static const char kReasonReboot[];
85 static const char kReasonRenew[];
86
Chris Masone0756f232011-07-21 17:24:00 -070087 static const char kType[];
88
Darin Petkova7b89492011-07-27 12:48:17 -070089 // If |proxy_| is not initialized already, sets it to a new D-Bus proxy to
90 // |service|.
91 void InitProxyTask(const std::string &service);
92
Darin Petkovd1b715b2011-06-02 21:21:22 -070093 // Starts dhcpcd, returns true on success and false otherwise.
94 bool Start();
95
Darin Petkov92c43902011-06-09 20:46:06 -070096 // Stops dhcpcd if running.
97 void Stop();
98
Darin Petkov98dd6a02011-06-10 15:12:57 -070099 // Stops dhcpcd if already running and then starts it. Returns true on success
100 // and false otherwise.
101 bool Restart();
102
Darin Petkove7cb7f82011-06-03 13:21:51 -0700103 // Parses |configuration| into |properties|. Returns true on success, and
104 // false otherwise.
105 bool ParseConfiguration(const Configuration& configuration,
106 IPConfig::Properties *properties);
107
108 // Returns the string representation of the IP address |address|, or an
109 // empty string on failure.
110 std::string GetIPv4AddressString(unsigned int address);
111
Darin Petkov92c43902011-06-09 20:46:06 -0700112 // Called when the dhcpcd client process exits.
113 static void ChildWatchCallback(GPid pid, gint status, gpointer data);
114
Darin Petkov98dd6a02011-06-10 15:12:57 -0700115 // Cleans up remaining state from a running client, if any, including freeing
116 // its GPid, exit watch callback, and state files.
Darin Petkov92c43902011-06-09 20:46:06 -0700117 void CleanupClientState();
118
Darin Petkovab565bb2011-10-06 02:55:51 -0700119 // Store cached copies of singletons for speed/ease of testing.
120 ProxyFactory *proxy_factory_;
121
Darin Petkovd1b715b2011-06-02 21:21:22 -0700122 DHCPProvider *provider_;
123
124 // The PID of the spawned DHCP client. May be 0 if no client has been spawned
125 // yet or the client has died.
Darin Petkov92c43902011-06-09 20:46:06 -0700126 int pid_;
127
128 // Child exit watch callback source tag.
129 unsigned int child_watch_tag_;
Darin Petkovd1b715b2011-06-02 21:21:22 -0700130
131 // The proxy for communicating with the DHCP client.
132 scoped_ptr<DHCPProxyInterface> proxy_;
133
Darin Petkov92c43902011-06-09 20:46:06 -0700134 // Root file path, used for testing.
135 FilePath root_;
136
Darin Petkova7b89492011-07-27 12:48:17 -0700137 ScopedRunnableMethodFactory<DHCPConfig> task_factory_;
138 EventDispatcher *dispatcher_;
Darin Petkov3258a812011-06-23 11:28:45 -0700139 GLib *glib_;
Darin Petkovf7897bc2011-06-08 17:13:36 -0700140
Darin Petkov50308cd2011-06-01 18:25:07 -0700141 DISALLOW_COPY_AND_ASSIGN(DHCPConfig);
142};
143
144} // namespace shill
145
146#endif // SHILL_DHCP_CONFIG_