// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/startup/startup_browser_creator.h" #include // For max(). #include #include "base/bind.h" #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/compiler_specific.h" #include "base/environment.h" #include "base/file_path.h" #include "base/lazy_instance.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/metrics/histogram.h" #include "base/path_service.h" #include "base/string_number_conversions.h" #include "base/string_split.h" #include "base/threading/thread_restrictions.h" #include "base/utf_string_conversions.h" #include "chrome/browser/auto_launch_trial.h" #include "chrome/browser/automation/automation_provider.h" #include "chrome/browser/automation/automation_provider_list.h" #include "chrome/browser/automation/chrome_frame_automation_provider.h" #include "chrome/browser/automation/testing_automation_provider.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/component_updater/component_updater_service.h" #include "chrome/browser/component_updater/flash_component_installer.h" #include "chrome/browser/component_updater/pnacl/pnacl_component_installer.h" #include "chrome/browser/component_updater/recovery_component_installer.h" #include "chrome/browser/component_updater/swiftshader_component_installer.h" #include "chrome/browser/custom_handlers/protocol_handler_registry.h" #include "chrome/browser/first_run/first_run.h" #include "chrome/browser/google/google_util.h" #include "chrome/browser/net/crl_set_fetcher.h" #include "chrome/browser/net/url_fixer_upper.h" #include "chrome/browser/notifications/desktop_notification_service.h" #include "chrome/browser/prefs/incognito_mode_prefs.h" #include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/prefs/session_startup_pref.h" #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h" #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.h" #include "chrome/browser/printing/print_dialog_cloud.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/search_engines/template_url_service_factory.h" #include "chrome/browser/ui/startup/startup_browser_creator_impl.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_notification_types.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_result_codes.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/chrome_version_info.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" #include "chrome/installer/util/browser_distribution.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/child_process_security_policy.h" #include "grit/locale_settings.h" #include "net/base/net_util.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/resource/resource_bundle.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/profile_startup.h" #endif #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) #include "ui/base/touch/touch_factory.h" #endif #if defined(OS_WIN) #include "chrome/browser/ui/startup/startup_browser_creator_win.h" #endif using content::BrowserThread; using content::ChildProcessSecurityPolicy; bool in_synchronous_profile_launch = false; namespace { void RegisterComponentsForUpdate(const CommandLine& command_line) { ComponentUpdateService* cus = g_browser_process->component_updater(); if (!cus) return; // Registration can be before of after cus->Start() so it is ok to post // a task to the UI thread to do registration once you done the necessary // file IO to know you existing component version. RegisterRecoveryComponent(cus, g_browser_process->local_state()); RegisterPepperFlashComponent(cus); RegisterNPAPIFlashComponent(cus); RegisterSwiftShaderComponent(cus); // CRLSetFetcher attempts to load a CRL set from either the local disk or // network. if (!command_line.HasSwitch(switches::kDisableCRLSets)) g_browser_process->crl_set_fetcher()->StartInitialLoad(cus); // This developer version of Pnacl should only be installed for developers. if (command_line.HasSwitch(switches::kEnablePnacl)) { RegisterPnaclComponent(cus); } cus->Start(); } // Keeps track on which profiles have been launched. class ProfileLaunchObserver : public content::NotificationObserver { public: ProfileLaunchObserver() { registrar_.Add(this, chrome::NOTIFICATION_PROFILE_DESTROYED, content::NotificationService::AllSources()); } virtual ~ProfileLaunchObserver() {} virtual void Observe(int type, const content::NotificationSource& source, const content::NotificationDetails& details) OVERRIDE { switch (type) { case chrome::NOTIFICATION_PROFILE_DESTROYED: { Profile* profile = content::Source(source).ptr(); launched_profiles.erase(profile); break; } default: NOTREACHED(); } } bool HasBeenLaunched(const Profile* profile) { return launched_profiles.find(profile) != launched_profiles.end(); } void AddLaunched(const Profile* profile) { launched_profiles.insert(profile); } private: std::set launched_profiles; content::NotificationRegistrar registrar_; DISALLOW_COPY_AND_ASSIGN(ProfileLaunchObserver); }; base::LazyInstance profile_launch_observer = LAZY_INSTANCE_INITIALIZER; } // namespace StartupBrowserCreator::StartupBrowserCreator() : is_default_browser_dialog_suppressed_(false), show_main_browser_window_(true) { } StartupBrowserCreator::~StartupBrowserCreator() {} // static bool StartupBrowserCreator::was_restarted_read_ = false; void StartupBrowserCreator::AddFirstRunTab(const GURL& url) { first_run_tabs_.push_back(url); } // static bool StartupBrowserCreator::InSynchronousProfileLaunch() { return in_synchronous_profile_launch; } bool StartupBrowserCreator::LaunchBrowser( const CommandLine& command_line, Profile* profile, const FilePath& cur_dir, chrome::startup::IsProcessStartup process_startup, chrome::startup::IsFirstRun is_first_run, int* return_code) { in_synchronous_profile_launch = process_startup == chrome::startup::IS_PROCESS_STARTUP; DCHECK(profile); // Continue with the incognito profile from here on if Incognito mode // is forced. if (IncognitoModePrefs::ShouldLaunchIncognito(command_line, profile->GetPrefs())) { profile = profile->GetOffTheRecordProfile(); } else if (command_line.HasSwitch(switches::kIncognito)) { LOG(WARNING) << "Incognito mode disabled by policy, launching a normal " << "browser session."; } StartupBrowserCreatorImpl lwp(cur_dir, command_line, this, is_first_run); std::vector urls_to_launch = StartupBrowserCreator::GetURLsFromCommandLine(command_line, cur_dir, profile); bool launched = lwp.Launch(profile, urls_to_launch, in_synchronous_profile_launch); in_synchronous_profile_launch = false; if (!launched) { LOG(ERROR) << "launch error"; if (return_code) *return_code = chrome::RESULT_CODE_INVALID_CMDLINE_URL; return false; } profile_launch_observer.Get().AddLaunched(profile); #if defined(OS_CHROMEOS) chromeos::ProfileStartup(profile, process_startup); #endif return true; } // static bool StartupBrowserCreator::WasRestarted() { // Stores the value of the preference kWasRestarted had when it was read. static bool was_restarted = false; if (!was_restarted_read_) { PrefService* pref_service = g_browser_process->local_state(); was_restarted = pref_service->GetBoolean(prefs::kWasRestarted); pref_service->SetBoolean(prefs::kWasRestarted, false); was_restarted_read_ = true; } return was_restarted; } // static SessionStartupPref StartupBrowserCreator::GetSessionStartupPref( const CommandLine& command_line, Profile* profile) { DCHECK(profile); PrefService* prefs = profile->GetPrefs(); SessionStartupPref pref = SessionStartupPref::GetStartupPref(prefs); // The pref has an OS-dependent default value. For the first run only, this // default is overridden with SessionStartupPref::DEFAULT so that first run // behavior (sync promo, welcome page) is consistently invoked. // This applies only if the pref is still at its default and has not been // set by the user, managed prefs or policy. if (first_run::IsChromeFirstRun() && SessionStartupPref::TypeIsDefault(prefs)) pref.type = SessionStartupPref::DEFAULT; if (command_line.HasSwitch(switches::kRestoreLastSession) || StartupBrowserCreator::WasRestarted()) { pref.type = SessionStartupPref::LAST; } if (pref.type == SessionStartupPref::LAST && IncognitoModePrefs::ShouldLaunchIncognito(command_line, prefs)) { // We don't store session information when incognito. If the user has // chosen to restore last session and launched incognito, fallback to // default launch behavior. pref.type = SessionStartupPref::DEFAULT; } return pref; } std::vector StartupBrowserCreator::GetURLsFromCommandLine( const CommandLine& command_line, const FilePath& cur_dir, Profile* profile) { std::vector urls; const CommandLine::StringVector& params = command_line.GetArgs(); for (size_t i = 0; i < params.size(); ++i) { FilePath param = FilePath(params[i]); // Handle Vista way of searching - "? " if (param.value().size() > 2 && param.value()[0] == '?' && param.value()[1] == ' ') { const TemplateURL* default_provider = TemplateURLServiceFactory::GetForProfile(profile)-> GetDefaultSearchProvider(); if (default_provider) { const TemplateURLRef& search_url = default_provider->url_ref(); DCHECK(search_url.SupportsReplacement()); string16 search_term = param.LossyDisplayName().substr(2); urls.push_back(GURL(search_url.ReplaceSearchTerms( TemplateURLRef::SearchTermsArgs(search_term)))); continue; } } // Otherwise, fall through to treating it as a URL. // This will create a file URL or a regular URL. // This call can (in rare circumstances) block the UI thread. // Allow it until this bug is fixed. // http://code.google.com/p/chromium/issues/detail?id=60641 GURL url; { base::ThreadRestrictions::ScopedAllowIO allow_io; url = URLFixerUpper::FixupRelativeFile(cur_dir, param); } // Exclude dangerous schemes. if (url.is_valid()) { ChildProcessSecurityPolicy *policy = ChildProcessSecurityPolicy::GetInstance(); if (policy->IsWebSafeScheme(url.scheme()) || url.SchemeIs(chrome::kFileScheme) || #if defined(OS_CHROMEOS) // In ChromeOS, allow a settings page to be specified on the // command line. See ExistingUserController::OnLoginSuccess. (url.spec().find(chrome::kChromeUISettingsURL) == 0) || #endif (url.spec().compare(chrome::kAboutBlankURL) == 0)) { urls.push_back(url); } } } #if defined(OS_WIN) if (urls.empty()) { // If we are in Windows 8 metro mode and were launched as a result of the // search charm or via a url navigation in metro, then fetch the // corresponding url. GURL url = chrome::GetURLToOpen(profile); if (url.is_valid()) urls.push_back(GURL(url)); } #endif // OS_WIN return urls; } // static bool StartupBrowserCreator::ProcessCmdLineImpl( const CommandLine& command_line, const FilePath& cur_dir, bool process_startup, Profile* last_used_profile, const Profiles& last_opened_profiles, int* return_code, StartupBrowserCreator* browser_creator) { DCHECK(last_used_profile); if (process_startup) { if (command_line.HasSwitch(switches::kDisablePromptOnRepost)) content::NavigationController::DisablePromptOnRepost(); if (!command_line.HasSwitch(switches::kDisableComponentUpdate)) RegisterComponentsForUpdate(command_line); } bool silent_launch = false; #if defined(ENABLE_AUTOMATION) // Look for the testing channel ID ONLY during process startup if (process_startup && command_line.HasSwitch(switches::kTestingChannelID)) { std::string testing_channel_id = command_line.GetSwitchValueASCII( switches::kTestingChannelID); // TODO(sanjeevr) Check if we need to make this a singleton for // compatibility with the old testing code // If there are any extra parameters, we expect each one to generate a // new tab; if there are none then we get one homepage tab. int expected_tab_count = 1; if (command_line.HasSwitch(switches::kNoStartupWindow) && !command_line.HasSwitch(switches::kAutoLaunchAtStartup)) { expected_tab_count = 0; #if defined(OS_CHROMEOS) // kLoginManager will cause Chrome to start up with the ChromeOS login // screen instead of a browser window, so it won't load any tabs. } else if (command_line.HasSwitch(switches::kLoginManager)) { expected_tab_count = 0; #endif } else if (command_line.HasSwitch(switches::kRestoreLastSession)) { std::string restore_session_value( command_line.GetSwitchValueASCII(switches::kRestoreLastSession)); base::StringToInt(restore_session_value, &expected_tab_count); } else { std::vector urls_to_open = GetURLsFromCommandLine( command_line, cur_dir, last_used_profile); expected_tab_count = std::max(1, static_cast(urls_to_open.size())); } if (!CreateAutomationProvider( testing_channel_id, last_used_profile, static_cast(expected_tab_count))) return false; } if (command_line.HasSwitch(switches::kAutomationClientChannelID)) { std::string automation_channel_id = command_line.GetSwitchValueASCII( switches::kAutomationClientChannelID); // If there are any extra parameters, we expect each one to generate a // new tab; if there are none then we have no tabs std::vector urls_to_open = GetURLsFromCommandLine( command_line, cur_dir, last_used_profile); size_t expected_tabs = std::max(static_cast(urls_to_open.size()), 0); if (expected_tabs == 0) silent_launch = true; if (command_line.HasSwitch(switches::kChromeFrame)) { #if !defined(USE_AURA) if (!CreateAutomationProvider( automation_channel_id, last_used_profile, expected_tabs)) return false; #endif } else { if (!CreateAutomationProvider( automation_channel_id, last_used_profile, expected_tabs)) return false; } } #endif // defined(ENABLE_AUTOMATION) // If we have been invoked to display a desktop notification on behalf of // the service process, we do not want to open any browser windows. if (command_line.HasSwitch(switches::kNotifyCloudPrintTokenExpired)) { silent_launch = true; CloudPrintProxyServiceFactory::GetForProfile(last_used_profile)-> ShowTokenExpiredNotification(); } // If we are just displaying a print dialog we shouldn't open browser // windows. if (command_line.HasSwitch(switches::kCloudPrintFile) && print_dialog_cloud::CreatePrintDialogFromCommandLine(command_line)) { silent_launch = true; } // If we are checking the proxy enabled policy, don't open any windows. if (command_line.HasSwitch(switches::kCheckCloudPrintConnectorPolicy)) { silent_launch = true; if (CloudPrintProxyServiceFactory::GetForProfile(last_used_profile)-> EnforceCloudPrintConnectorPolicyAndQuit()) // Success, nothing more needs to be done, so return false to stop // launching and quit. return false; } if (command_line.HasSwitch(switches::kExplicitlyAllowedPorts)) { std::string allowed_ports = command_line.GetSwitchValueASCII(switches::kExplicitlyAllowedPorts); net::SetExplicitlyAllowedPorts(allowed_ports); } #if defined(OS_CHROMEOS) // The browser will be launched after the user logs in. if (command_line.HasSwitch(switches::kLoginManager) || command_line.HasSwitch(switches::kLoginPassword)) { silent_launch = true; } #endif #if defined(TOOLKIT_VIEWS) && defined(OS_LINUX) ui::TouchFactory::SetTouchDeviceListFromCommandLine(); #endif // If we don't want to launch a new browser window or tab (in the case // of an automation request), we are done here. if (!silent_launch) { chrome::startup::IsProcessStartup is_process_startup = process_startup ? chrome::startup::IS_PROCESS_STARTUP : chrome::startup::IS_NOT_PROCESS_STARTUP; chrome::startup::IsFirstRun is_first_run = first_run::IsChromeFirstRun() ? chrome::startup::IS_FIRST_RUN : chrome::startup::IS_NOT_FIRST_RUN; // |last_opened_profiles| will be empty in the following circumstances: // - This is the first launch. |last_used_profile| is the initial profile. // - The user exited the browser by closing all windows for all // profiles. |last_used_profile| is the profile which owned the last open // window. // - Only incognito windows were open when the browser exited. // |last_used_profile| is the last used incognito profile. Restoring it will // create a browser window for the corresponding original profile. if (last_opened_profiles.empty()) { if (!browser_creator->LaunchBrowser(command_line, last_used_profile, cur_dir, is_process_startup, is_first_run, return_code)) { return false; } } else { // Launch the last used profile with the full command line, and the other // opened profiles without the URLs to launch. CommandLine command_line_without_urls(command_line.GetProgram()); const CommandLine::SwitchMap& switches = command_line.GetSwitches(); for (CommandLine::SwitchMap::const_iterator switch_it = switches.begin(); switch_it != switches.end(); ++switch_it) { command_line_without_urls.AppendSwitchNative(switch_it->first, switch_it->second); } // Launch the profiles in the order they became active. for (Profiles::const_iterator it = last_opened_profiles.begin(); it != last_opened_profiles.end(); ++it) { // Don't launch additional profiles which would only open a new tab // page. When restarting after an update, all profiles will reopen last // open pages. SessionStartupPref startup_pref = GetSessionStartupPref(command_line, *it); if (*it != last_used_profile && startup_pref.type == SessionStartupPref::DEFAULT && !HasPendingUncleanExit(*it)) continue; if (!browser_creator->LaunchBrowser((*it == last_used_profile) ? command_line : command_line_without_urls, *it, cur_dir, is_process_startup, is_first_run, return_code)) return false; // We've launched at least one browser. is_process_startup = chrome::startup::IS_NOT_PROCESS_STARTUP; } } } return true; } template bool StartupBrowserCreator::CreateAutomationProvider( const std::string& channel_id, Profile* profile, size_t expected_tabs) { #if defined(ENABLE_AUTOMATION) scoped_refptr automation = new AutomationProviderClass(profile); if (!automation->InitializeChannel(channel_id)) return false; automation->SetExpectedTabCount(expected_tabs); AutomationProviderList* list = g_browser_process->GetAutomationProviderList(); DCHECK(list); list->AddProvider(automation); #endif // defined(ENABLE_AUTOMATION) return true; } // static void StartupBrowserCreator::ProcessCommandLineOnProfileCreated( const CommandLine& cmd_line, const FilePath& cur_dir, Profile* profile, Profile::CreateStatus status) { if (status == Profile::CREATE_STATUS_INITIALIZED) ProcessCmdLineImpl(cmd_line, cur_dir, false, profile, Profiles(), NULL, NULL); } // static void StartupBrowserCreator::ProcessCommandLineAlreadyRunning( const CommandLine& cmd_line, const FilePath& cur_dir) { if (cmd_line.HasSwitch(switches::kProfileDirectory)) { ProfileManager* profile_manager = g_browser_process->profile_manager(); FilePath path = cmd_line.GetSwitchValuePath(switches::kProfileDirectory); path = profile_manager->user_data_dir().Append(path); profile_manager->CreateProfileAsync(path, base::Bind(&StartupBrowserCreator::ProcessCommandLineOnProfileCreated, cmd_line, cur_dir), string16(), string16()); return; } Profile* profile = ProfileManager::GetLastUsedProfile(); if (!profile) { // We should only be able to get here if the profile already exists and // has been created. NOTREACHED(); return; } ProcessCmdLineImpl(cmd_line, cur_dir, false, profile, Profiles(), NULL, NULL); } bool HasPendingUncleanExit(Profile* profile) { return !profile->DidLastSessionExitCleanly() && !profile_launch_observer.Get().HasBeenLaunched(profile); }