blob: 10e38eb8e41881730f514a6818d02fa6e8da2a35 [file] [log] [blame]
mukesh agrawal43500062012-02-09 18:25:15 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewart75897df2011-04-27 09:05:53 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <time.h>
Gaurav Shahb893bed2011-11-28 19:37:16 -08006#include <unistd.h>
7
Paul Stewart75897df2011-04-27 09:05:53 -07008#include <string>
mukesh agrawal8f317b62011-07-15 11:53:23 -07009#include <vector>
Paul Stewart75897df2011-04-27 09:05:53 -070010
Chris Masone0e1d1042011-05-09 18:07:03 -070011#include <base/at_exit.h>
Chris Masoneee929b72011-05-10 10:02:18 -070012#include <base/command_line.h>
13#include <base/file_path.h>
14#include <base/logging.h>
Chris Masone7ccc8192011-05-24 14:54:49 -070015#include <base/string_number_conversions.h>
mukesh agrawal8f317b62011-07-15 11:53:23 -070016#include <base/string_split.h>
Chris Masoneee929b72011-05-10 10:02:18 -070017#include <chromeos/syslog_logging.h>
18
Thieu Le1271d682011-11-02 22:48:19 +000019extern "C" {
20#include <glib-unix.h>
21}
22
Paul Stewart75897df2011-04-27 09:05:53 -070023#include "shill/dbus_control.h"
Darin Petkov633ac6f2011-07-08 13:56:13 -070024#include "shill/shill_config.h"
Darin Petkovd1b715b2011-06-02 21:21:22 -070025#include "shill/shill_daemon.h"
Paul Stewart75897df2011-04-27 09:05:53 -070026
27using std::string;
mukesh agrawal8f317b62011-07-15 11:53:23 -070028using std::vector;
Paul Stewart75897df2011-04-27 09:05:53 -070029
Chris Masoneee929b72011-05-10 10:02:18 -070030namespace switches {
31
32// Don't daemon()ize; run in foreground.
33static const char kForeground[] = "foreground";
34// Directory to read confguration settings.
35static const char kConfigDir[] = "config-dir";
36// Directory to read default configuration settings (Read Only).
37static const char kDefaultConfigDir[] = "default-config-dir";
mukesh agrawal8f317b62011-07-15 11:53:23 -070038// Don't attempt to manage these devices.
39static const char kDeviceBlackList[] = "device-black-list";
Gaurav Shah71354762011-11-28 19:22:49 -080040// Flag to specify specific profiles to be pushed.
41static const char kPushProfiles[] = "push";
Chris Masoneee929b72011-05-10 10:02:18 -070042// Flag that causes shill to show the help message and exit.
43static const char kHelp[] = "help";
Chris Masone7ccc8192011-05-24 14:54:49 -070044// LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.
45static const char kLogLevel[] = "log-level";
Chris Masone2ae797d2011-08-23 20:41:00 -070046// Use the same directories flimflam uses for global, user profiles..
47static const char kUseFlimflamProfiles[] = "use-flimflam-profiles";
Chris Masoneee929b72011-05-10 10:02:18 -070048
49// The help message shown if help flag is passed to the program.
50static const char kHelpMessage[] = "\n"
51 "Available Switches: \n"
52 " --foreground\n"
53 " Don\'t daemon()ize; run in foreground.\n"
mukesh agrawal8f317b62011-07-15 11:53:23 -070054 " --config-dir\n"
Chris Masoneee929b72011-05-10 10:02:18 -070055 " Directory to read confguration settings.\n"
mukesh agrawal8f317b62011-07-15 11:53:23 -070056 " --default-config-dir\n"
57 " Directory to read default configuration settings (Read Only).\n"
58 " --device-black-list=device1,device2\n"
59 " Do not manage devices named device1 or device2\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070060 " --log-level=N\n"
61 " LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.\n"
Gaurav Shah71354762011-11-28 19:22:49 -080062 " --push=profile1,profile2\n"
63 " Specify profiles to push on startup.\n"
Chris Masone2ae797d2011-08-23 20:41:00 -070064 " --use-flimflam-profiles\n"
65 " Use the same directories flimflam uses for global, user profiles.\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070066 " --v=N\n"
67 " Enables VLOG(N) and below.\n"
68 " --vmodule=\"*file_pattern*=1,certain_file.cc=2\".\n"
69 " Enable VLOG() at different levels in different files/modules.\n";
Chris Masoneee929b72011-05-10 10:02:18 -070070} // namespace switches
71
72// Always logs to the syslog and logs to stderr if
73// we are running in the foreground.
74void SetupLogging(bool foreground) {
75 int log_flags = 0;
76 log_flags |= chromeos::kLogToSyslog;
mukesh agrawal43500062012-02-09 18:25:15 -080077 log_flags |= chromeos::kLogHeader;
Chris Masoneee929b72011-05-10 10:02:18 -070078 if (foreground) {
79 log_flags |= chromeos::kLogToStderr;
80 }
81 chromeos::InitLog(log_flags);
82}
83
Thieu Leb52d6ff2011-11-02 18:21:51 +000084void DeleteDBusControl(void* param) {
85 VLOG(2) << __func__;
86 shill::DBusControl* dbus_control =
87 reinterpret_cast<shill::DBusControl*>(param);
88 delete dbus_control;
89}
90
Thieu Le1271d682011-11-02 22:48:19 +000091gboolean ExitSigHandler(gpointer data) {
92 shill::Daemon* daemon = reinterpret_cast<shill::Daemon*>(data);
93 daemon->Quit();
94 return TRUE;
95}
96
Chris Masoneee929b72011-05-10 10:02:18 -070097
98int main(int argc, char** argv) {
Chris Masone0e1d1042011-05-09 18:07:03 -070099 base::AtExitManager exit_manager;
Chris Masoneee929b72011-05-10 10:02:18 -0700100 CommandLine::Init(argc, argv);
101 CommandLine* cl = CommandLine::ForCurrentProcess();
102
Chris Masoneee929b72011-05-10 10:02:18 -0700103 if (cl->HasSwitch(switches::kHelp)) {
104 LOG(INFO) << switches::kHelpMessage;
105 return 0;
Paul Stewart75897df2011-04-27 09:05:53 -0700106 }
Paul Stewartb7163252011-12-09 16:21:30 -0800107
108 const int nochdir = 0, noclose = 0;
109 if (!cl->HasSwitch(switches::kForeground))
110 PLOG_IF(FATAL, daemon(nochdir, noclose) == -1 ) << "Failed to daemonize";
111
112 SetupLogging(cl->HasSwitch(switches::kForeground));
Chris Masone7ccc8192011-05-24 14:54:49 -0700113 if (cl->HasSwitch(switches::kLogLevel)) {
114 std::string log_level = cl->GetSwitchValueASCII(switches::kLogLevel);
115 int level = 0;
116 if (base::StringToInt(log_level, &level) &&
117 level >= 0 && level < logging::LOG_NUM_SEVERITIES) {
118 logging::SetMinLogLevel(level);
119 } else {
120 LOG(WARNING) << "Bad log level: " << log_level;
121 }
122 }
Paul Stewart75897df2011-04-27 09:05:53 -0700123
Chris Masoneee929b72011-05-10 10:02:18 -0700124 FilePath config_dir(cl->GetSwitchValueASCII(switches::kConfigDir));
125 FilePath default_config_dir(
126 !cl->HasSwitch(switches::kDefaultConfigDir) ?
127 shill::Config::kShillDefaultPrefsDir :
128 cl->GetSwitchValueASCII(switches::kDefaultConfigDir));
Paul Stewart75897df2011-04-27 09:05:53 -0700129
Paul Stewart75897df2011-04-27 09:05:53 -0700130 shill::Config config; /* (config_dir, default_config_dir) */
Chris Masone2ae797d2011-08-23 20:41:00 -0700131 if (cl->HasSwitch(switches::kUseFlimflamProfiles))
132 config.UseFlimflamStorageDirs();
Paul Stewart75897df2011-04-27 09:05:53 -0700133
Darin Petkovaceede32011-07-18 15:32:38 -0700134 // TODO(pstew): This should be chosen based on config
Thieu Leb52d6ff2011-11-02 18:21:51 +0000135 // Make sure we delete the DBusControl object AFTER the LazyInstances
136 // since some LazyInstances destructors rely on D-Bus being around.
137 shill::DBusControl* dbus_control = new shill::DBusControl();
138 exit_manager.RegisterCallback(DeleteDBusControl, dbus_control);
Darin Petkovaceede32011-07-18 15:32:38 -0700139 dbus_control->Init();
140
Thieu Leb52d6ff2011-11-02 18:21:51 +0000141 shill::Daemon daemon(&config, dbus_control);
mukesh agrawal8f317b62011-07-15 11:53:23 -0700142
Gaurav Shah71354762011-11-28 19:22:49 -0800143 if (cl->HasSwitch(switches::kPushProfiles)) {
144 vector<string> profile_list;
145 base::SplitString(cl->GetSwitchValueASCII(switches::kPushProfiles),
146 ',', &profile_list);
147 daemon.SetStartupProfiles(profile_list);
148 }
149
mukesh agrawal8f317b62011-07-15 11:53:23 -0700150 if (cl->HasSwitch(switches::kDeviceBlackList)) {
151 vector<string> device_list;
152 base::SplitString(cl->GetSwitchValueASCII(switches::kDeviceBlackList),
153 ',', &device_list);
154
155 vector<string>::iterator i;
156 for (i = device_list.begin(); i != device_list.end(); ++i) {
157 daemon.AddDeviceToBlackList(*i);
158 }
159 }
Thieu Le1271d682011-11-02 22:48:19 +0000160
161 g_unix_signal_add(SIGINT, ExitSigHandler, &daemon);
162 g_unix_signal_add(SIGTERM, ExitSigHandler, &daemon);
163
Paul Stewart75897df2011-04-27 09:05:53 -0700164 daemon.Run();
165
166 return 0;
167}