blob: 4d9b77ec6cc60a6f74b42d50317f9f7e1d67c68e [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";
Paul Stewart10e9e4e2012-04-26 19:46:28 -070038// Technologies to enable for portal check at startup.
39static const char kPortalList[] = "portal-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";
Ben Chan156e73f2012-04-20 12:02:10 -070044// Logging level:
45// 0 = LOG(INFO), 1 = LOG(WARNING), 2 = LOG(ERROR),
46// -1 = SLOG(..., 1), -2 = SLOG(..., 2), etc.
Chris Masone7ccc8192011-05-24 14:54:49 -070047static const char kLogLevel[] = "log-level";
Ben Chan156e73f2012-04-20 12:02:10 -070048// Scopes to enable for SLOG()-based logging.
49static const char kLogScopes[] = "log-scopes";
Darin Petkov4f5e5492012-04-18 14:05:55 +020050// Use the same directories flimflam uses (profiles, run dir...)
51static const char kUseFlimflamDirs[] = "use-flimflam-dirs";
Chris Masoneee929b72011-05-10 10:02:18 -070052
53// The help message shown if help flag is passed to the program.
54static const char kHelpMessage[] = "\n"
55 "Available Switches: \n"
56 " --foreground\n"
57 " Don\'t daemon()ize; run in foreground.\n"
mukesh agrawal8f317b62011-07-15 11:53:23 -070058 " --config-dir\n"
Chris Masoneee929b72011-05-10 10:02:18 -070059 " Directory to read confguration settings.\n"
mukesh agrawal8f317b62011-07-15 11:53:23 -070060 " --default-config-dir\n"
61 " Directory to read default configuration settings (Read Only).\n"
62 " --device-black-list=device1,device2\n"
63 " Do not manage devices named device1 or device2\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070064 " --log-level=N\n"
Ben Chan156e73f2012-04-20 12:02:10 -070065 " Logging level:\n"
66 " 0 = LOG(INFO), 1 = LOG(WARNING), 2 = LOG(ERROR),\n"
67 " -1 = SLOG(..., 1), -2 = SLOG(..., 2), etc.\n"
68 " --log-scopes=\"*scope1+scope2\".\n"
69 " Scopes to enable for SLOG()-based logging.\n"
Paul Stewart10e9e4e2012-04-26 19:46:28 -070070 " --portal-list=technology1,technology2\n"
71 " Specify technologies to perform portal detection on at startup.\n"
Gaurav Shah71354762011-11-28 19:22:49 -080072 " --push=profile1,profile2\n"
73 " Specify profiles to push on startup.\n"
Darin Petkov4f5e5492012-04-18 14:05:55 +020074 " --use-flimflam-dirs\n"
Ben Chan156e73f2012-04-20 12:02:10 -070075 " Use the same directories flimflam uses (profiles, run dir...).\n";
Chris Masoneee929b72011-05-10 10:02:18 -070076} // namespace switches
77
78// Always logs to the syslog and logs to stderr if
79// we are running in the foreground.
80void SetupLogging(bool foreground) {
81 int log_flags = 0;
82 log_flags |= chromeos::kLogToSyslog;
mukesh agrawal43500062012-02-09 18:25:15 -080083 log_flags |= chromeos::kLogHeader;
Chris Masoneee929b72011-05-10 10:02:18 -070084 if (foreground) {
85 log_flags |= chromeos::kLogToStderr;
86 }
87 chromeos::InitLog(log_flags);
88}
89
Thieu Leb52d6ff2011-11-02 18:21:51 +000090void DeleteDBusControl(void* param) {
Ben Chanfad4a0b2012-04-18 15:49:59 -070091 SLOG(DBus, 2) << __func__;
Thieu Leb52d6ff2011-11-02 18:21:51 +000092 shill::DBusControl* dbus_control =
93 reinterpret_cast<shill::DBusControl*>(param);
94 delete dbus_control;
95}
96
Thieu Le1271d682011-11-02 22:48:19 +000097gboolean ExitSigHandler(gpointer data) {
98 shill::Daemon* daemon = reinterpret_cast<shill::Daemon*>(data);
99 daemon->Quit();
100 return TRUE;
101}
102
Chris Masoneee929b72011-05-10 10:02:18 -0700103
104int main(int argc, char** argv) {
Chris Masone0e1d1042011-05-09 18:07:03 -0700105 base::AtExitManager exit_manager;
Chris Masoneee929b72011-05-10 10:02:18 -0700106 CommandLine::Init(argc, argv);
107 CommandLine* cl = CommandLine::ForCurrentProcess();
108
Chris Masoneee929b72011-05-10 10:02:18 -0700109 if (cl->HasSwitch(switches::kHelp)) {
110 LOG(INFO) << switches::kHelpMessage;
111 return 0;
Paul Stewart75897df2011-04-27 09:05:53 -0700112 }
Paul Stewartb7163252011-12-09 16:21:30 -0800113
114 const int nochdir = 0, noclose = 0;
115 if (!cl->HasSwitch(switches::kForeground))
116 PLOG_IF(FATAL, daemon(nochdir, noclose) == -1 ) << "Failed to daemonize";
117
118 SetupLogging(cl->HasSwitch(switches::kForeground));
Chris Masone7ccc8192011-05-24 14:54:49 -0700119 if (cl->HasSwitch(switches::kLogLevel)) {
120 std::string log_level = cl->GetSwitchValueASCII(switches::kLogLevel);
121 int level = 0;
122 if (base::StringToInt(log_level, &level) &&
Ben Chan156e73f2012-04-20 12:02:10 -0700123 level < logging::LOG_NUM_SEVERITIES) {
Chris Masone7ccc8192011-05-24 14:54:49 -0700124 logging::SetMinLogLevel(level);
Ben Chan156e73f2012-04-20 12:02:10 -0700125 // Like VLOG, SLOG uses negative verbose level.
126 shill::ScopeLogger::GetInstance()->set_verbose_level(-level);
Chris Masone7ccc8192011-05-24 14:54:49 -0700127 } else {
128 LOG(WARNING) << "Bad log level: " << log_level;
129 }
130 }
Paul Stewart75897df2011-04-27 09:05:53 -0700131
Ben Chan156e73f2012-04-20 12:02:10 -0700132 if (cl->HasSwitch(switches::kLogScopes)) {
133 std::string log_scopes = cl->GetSwitchValueASCII(switches::kLogScopes);
134 shill::ScopeLogger::GetInstance()->EnableScopesByName(log_scopes);
135 }
136
Chris Masoneee929b72011-05-10 10:02:18 -0700137 FilePath config_dir(cl->GetSwitchValueASCII(switches::kConfigDir));
138 FilePath default_config_dir(
139 !cl->HasSwitch(switches::kDefaultConfigDir) ?
140 shill::Config::kShillDefaultPrefsDir :
141 cl->GetSwitchValueASCII(switches::kDefaultConfigDir));
Paul Stewart75897df2011-04-27 09:05:53 -0700142
Paul Stewart75897df2011-04-27 09:05:53 -0700143 shill::Config config; /* (config_dir, default_config_dir) */
Darin Petkov4f5e5492012-04-18 14:05:55 +0200144 if (cl->HasSwitch(switches::kUseFlimflamDirs))
145 config.UseFlimflamDirs();
Paul Stewart75897df2011-04-27 09:05:53 -0700146
Darin Petkovaceede32011-07-18 15:32:38 -0700147 // TODO(pstew): This should be chosen based on config
Thieu Leb52d6ff2011-11-02 18:21:51 +0000148 // Make sure we delete the DBusControl object AFTER the LazyInstances
149 // since some LazyInstances destructors rely on D-Bus being around.
150 shill::DBusControl* dbus_control = new shill::DBusControl();
151 exit_manager.RegisterCallback(DeleteDBusControl, dbus_control);
Darin Petkovaceede32011-07-18 15:32:38 -0700152 dbus_control->Init();
153
Thieu Leb52d6ff2011-11-02 18:21:51 +0000154 shill::Daemon daemon(&config, dbus_control);
mukesh agrawal8f317b62011-07-15 11:53:23 -0700155
Gaurav Shah71354762011-11-28 19:22:49 -0800156 if (cl->HasSwitch(switches::kPushProfiles)) {
157 vector<string> profile_list;
158 base::SplitString(cl->GetSwitchValueASCII(switches::kPushProfiles),
159 ',', &profile_list);
160 daemon.SetStartupProfiles(profile_list);
161 }
162
mukesh agrawal8f317b62011-07-15 11:53:23 -0700163 if (cl->HasSwitch(switches::kDeviceBlackList)) {
164 vector<string> device_list;
165 base::SplitString(cl->GetSwitchValueASCII(switches::kDeviceBlackList),
166 ',', &device_list);
167
168 vector<string>::iterator i;
169 for (i = device_list.begin(); i != device_list.end(); ++i) {
170 daemon.AddDeviceToBlackList(*i);
171 }
172 }
Thieu Le1271d682011-11-02 22:48:19 +0000173
Paul Stewart10e9e4e2012-04-26 19:46:28 -0700174 if (cl->HasSwitch(switches::kPortalList)) {
175 daemon.SetStartupPortalList(cl->GetSwitchValueASCII(switches::kPortalList));
176 }
177
Thieu Le1271d682011-11-02 22:48:19 +0000178 g_unix_signal_add(SIGINT, ExitSigHandler, &daemon);
179 g_unix_signal_add(SIGTERM, ExitSigHandler, &daemon);
180
Paul Stewart75897df2011-04-27 09:05:53 -0700181 daemon.Run();
182
183 return 0;
184}