blob: b5c7699d878970bd31a0e2dbe8b3f0a62ef7872e [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
Ben Chan03ed8182012-04-19 20:39:27 -07005#include <glib-unix.h>
Paul Stewart75897df2011-04-27 09:05:53 -07006#include <time.h>
Gaurav Shahb893bed2011-11-28 19:37:16 -08007#include <unistd.h>
8
Paul Stewart75897df2011-04-27 09:05:53 -07009#include <string>
mukesh agrawal8f317b62011-07-15 11:53:23 -070010#include <vector>
Paul Stewart75897df2011-04-27 09:05:53 -070011
Chris Masone0e1d1042011-05-09 18:07:03 -070012#include <base/at_exit.h>
Chris Masoneee929b72011-05-10 10:02:18 -070013#include <base/command_line.h>
14#include <base/file_path.h>
15#include <base/logging.h>
Chris Masone7ccc8192011-05-24 14:54:49 -070016#include <base/string_number_conversions.h>
mukesh agrawal8f317b62011-07-15 11:53:23 -070017#include <base/string_split.h>
Chris Masoneee929b72011-05-10 10:02:18 -070018#include <chromeos/syslog_logging.h>
19
Paul Stewart75897df2011-04-27 09:05:53 -070020#include "shill/dbus_control.h"
Ben Chanfad4a0b2012-04-18 15:49:59 -070021#include "shill/scope_logger.h"
Darin Petkov633ac6f2011-07-08 13:56:13 -070022#include "shill/shill_config.h"
Darin Petkovd1b715b2011-06-02 21:21:22 -070023#include "shill/shill_daemon.h"
Paul Stewart75897df2011-04-27 09:05:53 -070024
25using std::string;
mukesh agrawal8f317b62011-07-15 11:53:23 -070026using std::vector;
Paul Stewart75897df2011-04-27 09:05:53 -070027
Chris Masoneee929b72011-05-10 10:02:18 -070028namespace switches {
29
30// Don't daemon()ize; run in foreground.
31static const char kForeground[] = "foreground";
32// Directory to read confguration settings.
33static const char kConfigDir[] = "config-dir";
34// Directory to read default configuration settings (Read Only).
35static const char kDefaultConfigDir[] = "default-config-dir";
mukesh agrawal8f317b62011-07-15 11:53:23 -070036// Don't attempt to manage these devices.
37static const char kDeviceBlackList[] = "device-black-list";
Gaurav Shah71354762011-11-28 19:22:49 -080038// Flag to specify specific profiles to be pushed.
39static const char kPushProfiles[] = "push";
Chris Masoneee929b72011-05-10 10:02:18 -070040// Flag that causes shill to show the help message and exit.
41static const char kHelp[] = "help";
Chris Masone7ccc8192011-05-24 14:54:49 -070042// LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.
43static const char kLogLevel[] = "log-level";
Darin Petkov4f5e5492012-04-18 14:05:55 +020044// Use the same directories flimflam uses (profiles, run dir...)
45static const char kUseFlimflamDirs[] = "use-flimflam-dirs";
Chris Masoneee929b72011-05-10 10:02:18 -070046
47// The help message shown if help flag is passed to the program.
48static const char kHelpMessage[] = "\n"
49 "Available Switches: \n"
50 " --foreground\n"
51 " Don\'t daemon()ize; run in foreground.\n"
mukesh agrawal8f317b62011-07-15 11:53:23 -070052 " --config-dir\n"
Chris Masoneee929b72011-05-10 10:02:18 -070053 " Directory to read confguration settings.\n"
mukesh agrawal8f317b62011-07-15 11:53:23 -070054 " --default-config-dir\n"
55 " Directory to read default configuration settings (Read Only).\n"
56 " --device-black-list=device1,device2\n"
57 " Do not manage devices named device1 or device2\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070058 " --log-level=N\n"
59 " LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.\n"
Gaurav Shah71354762011-11-28 19:22:49 -080060 " --push=profile1,profile2\n"
61 " Specify profiles to push on startup.\n"
Darin Petkov4f5e5492012-04-18 14:05:55 +020062 " --use-flimflam-dirs\n"
63 " Use the same directories flimflam uses (profiles, run dir...).\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070064 " --v=N\n"
65 " Enables VLOG(N) and below.\n"
66 " --vmodule=\"*file_pattern*=1,certain_file.cc=2\".\n"
67 " Enable VLOG() at different levels in different files/modules.\n";
Chris Masoneee929b72011-05-10 10:02:18 -070068} // namespace switches
69
70// Always logs to the syslog and logs to stderr if
71// we are running in the foreground.
72void SetupLogging(bool foreground) {
73 int log_flags = 0;
74 log_flags |= chromeos::kLogToSyslog;
mukesh agrawal43500062012-02-09 18:25:15 -080075 log_flags |= chromeos::kLogHeader;
Chris Masoneee929b72011-05-10 10:02:18 -070076 if (foreground) {
77 log_flags |= chromeos::kLogToStderr;
78 }
79 chromeos::InitLog(log_flags);
80}
81
Thieu Leb52d6ff2011-11-02 18:21:51 +000082void DeleteDBusControl(void* param) {
Ben Chanfad4a0b2012-04-18 15:49:59 -070083 SLOG(DBus, 2) << __func__;
Thieu Leb52d6ff2011-11-02 18:21:51 +000084 shill::DBusControl* dbus_control =
85 reinterpret_cast<shill::DBusControl*>(param);
86 delete dbus_control;
87}
88
Thieu Le1271d682011-11-02 22:48:19 +000089gboolean ExitSigHandler(gpointer data) {
90 shill::Daemon* daemon = reinterpret_cast<shill::Daemon*>(data);
91 daemon->Quit();
92 return TRUE;
93}
94
Chris Masoneee929b72011-05-10 10:02:18 -070095
96int main(int argc, char** argv) {
Chris Masone0e1d1042011-05-09 18:07:03 -070097 base::AtExitManager exit_manager;
Chris Masoneee929b72011-05-10 10:02:18 -070098 CommandLine::Init(argc, argv);
99 CommandLine* cl = CommandLine::ForCurrentProcess();
100
Chris Masoneee929b72011-05-10 10:02:18 -0700101 if (cl->HasSwitch(switches::kHelp)) {
102 LOG(INFO) << switches::kHelpMessage;
103 return 0;
Paul Stewart75897df2011-04-27 09:05:53 -0700104 }
Paul Stewartb7163252011-12-09 16:21:30 -0800105
106 const int nochdir = 0, noclose = 0;
107 if (!cl->HasSwitch(switches::kForeground))
108 PLOG_IF(FATAL, daemon(nochdir, noclose) == -1 ) << "Failed to daemonize";
109
110 SetupLogging(cl->HasSwitch(switches::kForeground));
Chris Masone7ccc8192011-05-24 14:54:49 -0700111 if (cl->HasSwitch(switches::kLogLevel)) {
112 std::string log_level = cl->GetSwitchValueASCII(switches::kLogLevel);
113 int level = 0;
114 if (base::StringToInt(log_level, &level) &&
115 level >= 0 && level < logging::LOG_NUM_SEVERITIES) {
116 logging::SetMinLogLevel(level);
117 } else {
118 LOG(WARNING) << "Bad log level: " << log_level;
119 }
120 }
Paul Stewart75897df2011-04-27 09:05:53 -0700121
Chris Masoneee929b72011-05-10 10:02:18 -0700122 FilePath config_dir(cl->GetSwitchValueASCII(switches::kConfigDir));
123 FilePath default_config_dir(
124 !cl->HasSwitch(switches::kDefaultConfigDir) ?
125 shill::Config::kShillDefaultPrefsDir :
126 cl->GetSwitchValueASCII(switches::kDefaultConfigDir));
Paul Stewart75897df2011-04-27 09:05:53 -0700127
Paul Stewart75897df2011-04-27 09:05:53 -0700128 shill::Config config; /* (config_dir, default_config_dir) */
Darin Petkov4f5e5492012-04-18 14:05:55 +0200129 if (cl->HasSwitch(switches::kUseFlimflamDirs))
130 config.UseFlimflamDirs();
Paul Stewart75897df2011-04-27 09:05:53 -0700131
Darin Petkovaceede32011-07-18 15:32:38 -0700132 // TODO(pstew): This should be chosen based on config
Thieu Leb52d6ff2011-11-02 18:21:51 +0000133 // Make sure we delete the DBusControl object AFTER the LazyInstances
134 // since some LazyInstances destructors rely on D-Bus being around.
135 shill::DBusControl* dbus_control = new shill::DBusControl();
136 exit_manager.RegisterCallback(DeleteDBusControl, dbus_control);
Darin Petkovaceede32011-07-18 15:32:38 -0700137 dbus_control->Init();
138
Thieu Leb52d6ff2011-11-02 18:21:51 +0000139 shill::Daemon daemon(&config, dbus_control);
mukesh agrawal8f317b62011-07-15 11:53:23 -0700140
Gaurav Shah71354762011-11-28 19:22:49 -0800141 if (cl->HasSwitch(switches::kPushProfiles)) {
142 vector<string> profile_list;
143 base::SplitString(cl->GetSwitchValueASCII(switches::kPushProfiles),
144 ',', &profile_list);
145 daemon.SetStartupProfiles(profile_list);
146 }
147
mukesh agrawal8f317b62011-07-15 11:53:23 -0700148 if (cl->HasSwitch(switches::kDeviceBlackList)) {
149 vector<string> device_list;
150 base::SplitString(cl->GetSwitchValueASCII(switches::kDeviceBlackList),
151 ',', &device_list);
152
153 vector<string>::iterator i;
154 for (i = device_list.begin(); i != device_list.end(); ++i) {
155 daemon.AddDeviceToBlackList(*i);
156 }
157 }
Thieu Le1271d682011-11-02 22:48:19 +0000158
159 g_unix_signal_add(SIGINT, ExitSigHandler, &daemon);
160 g_unix_signal_add(SIGTERM, ExitSigHandler, &daemon);
161
Paul Stewart75897df2011-04-27 09:05:53 -0700162 daemon.Run();
163
164 return 0;
165}