blob: 1152d611b5a5b6a52fd12a26efc9dfb158b56519 [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 Petkov98dd6a02011-06-10 15:12:57 -070010#include <dbus-c++/connection.h>
Darin Petkov92c43902011-06-09 20:46:06 -070011#include <glib.h>
Darin Petkove7cb7f82011-06-03 13:21:51 -070012#include <gtest/gtest_prod.h> // for FRIEND_TEST
Darin Petkovd1b715b2011-06-02 21:21:22 -070013
Chris Masonec1e50412011-06-07 13:04:53 -070014#include "shill/device.h"
Darin Petkov50308cd2011-06-01 18:25:07 -070015#include "shill/ipconfig.h"
16
17namespace shill {
18
Darin Petkovd1b715b2011-06-02 21:21:22 -070019class DHCPConfig;
20class DHCPProvider;
21class DHCPProxyInterface;
Darin Petkovf7897bc2011-06-08 17:13:36 -070022class GLibInterface;
Darin Petkovd1b715b2011-06-02 21:21:22 -070023
24typedef scoped_refptr<DHCPConfig> DHCPConfigRefPtr;
25
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
30 static const char kConfigurationKeyBroadcastAddress[];
31 static const char kConfigurationKeyDNS[];
32 static const char kConfigurationKeyDomainName[];
33 static const char kConfigurationKeyDomainSearch[];
34 static const char kConfigurationKeyIPAddress[];
35 static const char kConfigurationKeyMTU[];
36 static const char kConfigurationKeyRouters[];
37 static const char kConfigurationKeySubnetCIDR[];
38
Darin Petkovf7897bc2011-06-08 17:13:36 -070039 DHCPConfig(DHCPProvider *provider,
40 DeviceConstRefPtr device,
41 GLibInterface *glib);
Darin Petkov50308cd2011-06-01 18:25:07 -070042 virtual ~DHCPConfig();
43
Darin Petkovd1b715b2011-06-02 21:21:22 -070044 // Inherited from IPConfig.
Darin Petkov92c43902011-06-09 20:46:06 -070045 virtual bool RequestIP();
46 virtual bool RenewIP();
47 virtual bool ReleaseIP();
Darin Petkovd1b715b2011-06-02 21:21:22 -070048
49 // If |proxy_| is not initialized already, sets it to a new D-Bus proxy to
50 // |service|.
51 void InitProxy(DBus::Connection *connection, const char *service);
52
Darin Petkove7cb7f82011-06-03 13:21:51 -070053 // Processes an Event signal from dhcpcd.
54 void ProcessEventSignal(const std::string &reason,
55 const Configuration &configuration);
56
Darin Petkov50308cd2011-06-01 18:25:07 -070057 private:
Darin Petkov98dd6a02011-06-10 15:12:57 -070058 friend class DHCPConfigTest;
Darin Petkove7cb7f82011-06-03 13:21:51 -070059 FRIEND_TEST(DHCPConfigTest, GetIPv4AddressString);
60 FRIEND_TEST(DHCPConfigTest, ParseConfiguration);
Darin Petkov98dd6a02011-06-10 15:12:57 -070061 FRIEND_TEST(DHCPConfigTest, ReleaseIP);
62 FRIEND_TEST(DHCPConfigTest, RenewIP);
63 FRIEND_TEST(DHCPConfigTest, RequestIP);
64 FRIEND_TEST(DHCPConfigTest, Restart);
65 FRIEND_TEST(DHCPConfigTest, RestartNoClient);
Darin Petkov92c43902011-06-09 20:46:06 -070066 FRIEND_TEST(DHCPConfigTest, StartFail);
67 FRIEND_TEST(DHCPConfigTest, StartSuccess);
Darin Petkov98dd6a02011-06-10 15:12:57 -070068 FRIEND_TEST(DHCPConfigTest, Stop);
69 FRIEND_TEST(DHCPProviderTest, CreateConfig);
Darin Petkove7cb7f82011-06-03 13:21:51 -070070
Darin Petkovd1b715b2011-06-02 21:21:22 -070071 static const char kDHCPCDPath[];
Darin Petkov92c43902011-06-09 20:46:06 -070072 static const char kDHCPCDPathFormatLease[];
73 static const char kDHCPCDPathFormatPID[];
Darin Petkovd1b715b2011-06-02 21:21:22 -070074
75 // Starts dhcpcd, returns true on success and false otherwise.
76 bool Start();
77
Darin Petkov92c43902011-06-09 20:46:06 -070078 // Stops dhcpcd if running.
79 void Stop();
80
Darin Petkov98dd6a02011-06-10 15:12:57 -070081 // Stops dhcpcd if already running and then starts it. Returns true on success
82 // and false otherwise.
83 bool Restart();
84
Darin Petkove7cb7f82011-06-03 13:21:51 -070085 // Parses |configuration| into |properties|. Returns true on success, and
86 // false otherwise.
87 bool ParseConfiguration(const Configuration& configuration,
88 IPConfig::Properties *properties);
89
90 // Returns the string representation of the IP address |address|, or an
91 // empty string on failure.
92 std::string GetIPv4AddressString(unsigned int address);
93
Darin Petkov92c43902011-06-09 20:46:06 -070094 // Called when the dhcpcd client process exits.
95 static void ChildWatchCallback(GPid pid, gint status, gpointer data);
96
Darin Petkov98dd6a02011-06-10 15:12:57 -070097 // Cleans up remaining state from a running client, if any, including freeing
98 // its GPid, exit watch callback, and state files.
Darin Petkov92c43902011-06-09 20:46:06 -070099 void CleanupClientState();
100
Darin Petkovd1b715b2011-06-02 21:21:22 -0700101 DHCPProvider *provider_;
102
103 // The PID of the spawned DHCP client. May be 0 if no client has been spawned
104 // yet or the client has died.
Darin Petkov92c43902011-06-09 20:46:06 -0700105 int pid_;
106
107 // Child exit watch callback source tag.
108 unsigned int child_watch_tag_;
Darin Petkovd1b715b2011-06-02 21:21:22 -0700109
110 // The proxy for communicating with the DHCP client.
111 scoped_ptr<DHCPProxyInterface> proxy_;
112
Darin Petkov92c43902011-06-09 20:46:06 -0700113 // Root file path, used for testing.
114 FilePath root_;
115
Darin Petkovf7897bc2011-06-08 17:13:36 -0700116 GLibInterface *glib_;
117
Darin Petkov50308cd2011-06-01 18:25:07 -0700118 DISALLOW_COPY_AND_ASSIGN(DHCPConfig);
119};
120
121} // namespace shill
122
123#endif // SHILL_DHCP_CONFIG_