Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -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 | |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 5 | #include "shill/shill_daemon.h" |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 6 | |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 7 | #include <stdio.h> |
| 8 | |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 9 | #include <string> |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 10 | #include <vector> |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 11 | |
Gary Morain | a9fb325 | 2012-05-31 12:05:31 -0700 | [diff] [blame] | 12 | #include <base/bind.h> |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 13 | #include <base/file_path.h> |
Chris Masone | ee929b7 | 2011-05-10 10:02:18 -0700 | [diff] [blame] | 14 | |
Wade Guthrie | 64b4c14 | 2012-08-20 15:21:01 -0700 | [diff] [blame] | 15 | #include "shill/callback80211_object.h" |
| 16 | #include "shill/config80211.h" |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 17 | #include "shill/dhcp_provider.h" |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 18 | #include "shill/error.h" |
Christopher Wiley | b691efd | 2012-08-09 13:51:51 -0700 | [diff] [blame] | 19 | #include "shill/logging.h" |
Darin Petkov | 3c5e4dc | 2012-04-02 14:44:27 +0200 | [diff] [blame] | 20 | #include "shill/nss.h" |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 21 | #include "shill/proxy_factory.h" |
Paul Stewart | c1dec4d | 2011-12-08 15:25:28 -0800 | [diff] [blame] | 22 | #include "shill/routing_table.h" |
Paul Stewart | a3c56f9 | 2011-05-26 07:08:52 -0700 | [diff] [blame] | 23 | #include "shill/rtnl_handler.h" |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 24 | #include "shill/shill_config.h" |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 25 | |
Gary Morain | a9fb325 | 2012-05-31 12:05:31 -0700 | [diff] [blame] | 26 | using base::Bind; |
| 27 | using base::Unretained; |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 28 | using std::string; |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 29 | using std::vector; |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 30 | |
| 31 | namespace shill { |
| 32 | |
Gary Morain | a9fb325 | 2012-05-31 12:05:31 -0700 | [diff] [blame] | 33 | // TODO(gmorain): 3 seconds may or may not be enough. Add an UMA stat to see |
| 34 | // how often the timeout occurs. crosbug.com/31475. |
Wade Guthrie | 0d43853 | 2012-05-18 14:18:50 -0700 | [diff] [blame] | 35 | const int Daemon::kTerminationActionsTimeout = 3000; // ms |
Gary Morain | a9fb325 | 2012-05-31 12:05:31 -0700 | [diff] [blame] | 36 | |
Darin Petkov | a7b8949 | 2011-07-27 12:48:17 -0700 | [diff] [blame] | 37 | Daemon::Daemon(Config *config, ControlInterface *control) |
| 38 | : config_(config), |
| 39 | control_(control), |
Darin Petkov | 3c5e4dc | 2012-04-02 14:44:27 +0200 | [diff] [blame] | 40 | nss_(NSS::GetInstance()), |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 41 | proxy_factory_(ProxyFactory::GetInstance()), |
| 42 | rtnl_handler_(RTNLHandler::GetInstance()), |
| 43 | routing_table_(RoutingTable::GetInstance()), |
| 44 | dhcp_provider_(DHCPProvider::GetInstance()), |
Wade Guthrie | 0d43853 | 2012-05-18 14:18:50 -0700 | [diff] [blame] | 45 | config80211_(Config80211::GetInstance()), |
| 46 | callback80211_(Callback80211Object::GetInstance()), |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 47 | manager_(new Manager(control_, |
| 48 | &dispatcher_, |
| 49 | &metrics_, |
| 50 | &glib_, |
| 51 | config->GetRunDirectory(), |
| 52 | config->GetStorageDirectory(), |
| 53 | config->GetUserStorageDirectoryFormat())) { |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 54 | } |
Wade Guthrie | 0d43853 | 2012-05-18 14:18:50 -0700 | [diff] [blame] | 55 | |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 56 | Daemon::~Daemon() {} |
| 57 | |
mukesh agrawal | 8f317b6 | 2011-07-15 11:53:23 -0700 | [diff] [blame] | 58 | void Daemon::AddDeviceToBlackList(const string &device_name) { |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 59 | manager_->AddDeviceToBlackList(device_name); |
mukesh agrawal | 8f317b6 | 2011-07-15 11:53:23 -0700 | [diff] [blame] | 60 | } |
| 61 | |
Paul Stewart | 10e9e4e | 2012-04-26 19:46:28 -0700 | [diff] [blame] | 62 | void Daemon::SetStartupPortalList(const string &portal_list) { |
| 63 | manager_->SetStartupPortalList(portal_list); |
| 64 | } |
| 65 | |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 66 | void Daemon::SetStartupProfiles(const vector<string> &profile_name_list) { |
| 67 | Error error; |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 68 | manager_->set_startup_profiles(profile_name_list); |
Thieu Le | 1271d68 | 2011-11-02 22:48:19 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 71 | void Daemon::Run() { |
Paul Stewart | 0af98bf | 2011-05-10 17:38:08 -0700 | [diff] [blame] | 72 | Start(); |
Ben Chan | fad4a0b | 2012-04-18 15:49:59 -0700 | [diff] [blame] | 73 | SLOG(Daemon, 1) << "Running main loop."; |
Chris Masone | c5b392e | 2011-05-14 16:31:01 -0700 | [diff] [blame] | 74 | dispatcher_.DispatchForever(); |
Ben Chan | fad4a0b | 2012-04-18 15:49:59 -0700 | [diff] [blame] | 75 | SLOG(Daemon, 1) << "Exited main loop."; |
Thieu Le | 1271d68 | 2011-11-02 22:48:19 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void Daemon::Quit() { |
Gary Morain | a9fb325 | 2012-05-31 12:05:31 -0700 | [diff] [blame] | 79 | SLOG(Daemon, 1) << "Starting termination actions."; |
| 80 | // Stop() prevents autoconnect from attempting to immediately connect to |
| 81 | // services after they have been disconnected. |
| 82 | Stop(); |
| 83 | manager_->RunTerminationActions(kTerminationActionsTimeout, |
| 84 | Bind(&Daemon::TerminationActionsCompleted, |
| 85 | Unretained(this))); |
| 86 | } |
| 87 | |
| 88 | void Daemon::TerminationActionsCompleted(const Error & error) { |
| 89 | SLOG(Daemon, 1) << "Finished termination actions. Result: " << error; |
Eric Shienbrood | 3e20a23 | 2012-02-16 11:35:56 -0500 | [diff] [blame] | 90 | dispatcher_.PostTask(MessageLoop::QuitClosure()); |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 93 | void Daemon::Start() { |
| 94 | glib_.TypeInit(); |
Darin Petkov | 3c5e4dc | 2012-04-02 14:44:27 +0200 | [diff] [blame] | 95 | nss_->Init(&glib_); |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 96 | proxy_factory_->Init(); |
| 97 | rtnl_handler_->Start(&dispatcher_, &sockets_); |
| 98 | routing_table_->Start(); |
| 99 | dhcp_provider_->Init(control_, &dispatcher_, &glib_); |
Wade Guthrie | 0d43853 | 2012-05-18 14:18:50 -0700 | [diff] [blame] | 100 | |
| 101 | if (config80211_) { |
| 102 | config80211_->Init(&dispatcher_); |
| 103 | // Subscribe to all the events in which we're interested. |
| 104 | static const Config80211::EventType kEvents[] = { |
| 105 | Config80211::kEventTypeConfig, |
| 106 | Config80211::kEventTypeScan, |
| 107 | Config80211::kEventTypeRegulatory, |
| 108 | Config80211::kEventTypeMlme }; |
| 109 | |
| 110 | // Install |callback80211_| in the Config80211 singleton. |
Wade Guthrie | d4977f2 | 2012-08-22 12:37:54 -0700 | [diff] [blame] | 111 | callback80211_->set_metrics(&metrics_); |
Wade Guthrie | 0d43853 | 2012-05-18 14:18:50 -0700 | [diff] [blame] | 112 | callback80211_->set_config80211(config80211_); |
| 113 | callback80211_->InstallAsCallback(); |
| 114 | |
| 115 | for (size_t i = 0; i < arraysize(kEvents); i++) { |
| 116 | config80211_->SubscribeToEvents(kEvents[i]); |
| 117 | } |
| 118 | } |
| 119 | |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 120 | manager_->Start(); |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | void Daemon::Stop() { |
Thieu Le | fb46caf | 2012-03-08 11:57:15 -0800 | [diff] [blame] | 124 | manager_->Stop(); |
Gaurav Shah | 7135476 | 2011-11-28 19:22:49 -0800 | [diff] [blame] | 125 | } |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 126 | |
| 127 | } // namespace shill |