Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Side by Side Diff: chrome/browser/user_data_downgrade.cc

Issue 1986823002: Reset user data directory and disk cache directory after downgrade. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cr Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/user_data_downgrade.h"
6
7 #include <string>
8
9 #include "base/bind.h"
10 #include "base/command_line.h"
11 #include "base/files/file_enumerator.h"
12 #include "base/files/file_path.h"
13 #include "base/files/file_util.h"
14 #include "base/path_service.h"
15 #include "base/strings/string_util.h"
16 #include "base/strings/stringprintf.h"
17 #include "base/strings/utf_string_conversions.h"
18 #include "base/time/time.h"
19 #include "base/version.h"
20 #include "base/win/registry.h"
21 #include "chrome/browser/policy/policy_path_parser.h"
22 #include "chrome/common/chrome_constants.h"
23 #include "chrome/common/chrome_paths.h"
24 #include "chrome/common/chrome_switches.h"
25 #include "chrome/common/chrome_version.h"
26 #include "chrome/installer/util/install_util.h"
27 #include "content/public/browser/browser_thread.h"
28
29 namespace {
30
31 constexpr base::FilePath::CharType g_delete_suffix[] =
32 FILE_PATH_LITERAL(".CHROME_DELETE");
33
34 // Return the disk cache dir override value if exists or empty path for default
35 // disk cache dir.
36 base::FilePath GetDiskCacheDir() {
37 base::FilePath disk_cache_dir;
38 policy::path_parser::CheckDiskCacheDirPolicy(&disk_cache_dir);
39 if (disk_cache_dir.empty()) {
40 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
41 disk_cache_dir = command_line->GetSwitchValuePath(switches::kDiskCacheDir);
42 }
43 if (disk_cache_dir.ReferencesParent())
44 return base::MakeAbsoluteFilePath(disk_cache_dir);
45 return disk_cache_dir;
46 }
47
48 base::FilePath GetLastChromeVersionFile(const base::FilePath& user_data_dir) {
49 return user_data_dir.Append(FILE_PATH_LITERAL("LastChromeVersion"));
50 }
51
52 base::Version GetLastChromeVersion(const base::FilePath& user_data_dir) {
53 std::string last_chrome_version_str;
54 if (base::ReadFileToString(GetLastChromeVersionFile(user_data_dir),
55 &last_chrome_version_str)) {
56 return base::Version(
57 base::TrimWhitespaceASCII(last_chrome_version_str, base::TRIM_ALL)
58 .as_string());
59 }
60 return base::Version();
61 }
62
63 // Return the temporary path that |source_path| will be renamed to later.
64 base::FilePath GetTempDirNameForDelete(const base::FilePath& source_path) {
65 if (source_path.empty())
66 return base::FilePath();
67
68 base::FilePath target_path(source_path.AddExtension(g_delete_suffix));
69 int uniquifier = base::GetUniquePathNumber(source_path, g_delete_suffix);
70 if (uniquifier < 0)
71 return base::FilePath();
72 if (uniquifier > 0) {
73 return target_path.InsertBeforeExtensionASCII(
74 base::StringPrintf(" (%d)", uniquifier));
75 }
76
77 return target_path;
78 }
79
80 // Rename the |source| directory to |target|. Create |source| directory after
81 // rename if |recreate| is true.
82 void RenameDirectory(const base::FilePath& source,
83 const base::FilePath& target,
84 bool recreate) {
85 if (!source.empty() && !target.empty() && base::Move(source, target) &&
86 recreate) {
87 base::CreateDirectory(source);
88 }
89 }
90
91 void DeleteAllRenamedUserDirectories(const base::FilePath& path) {
92 if (path.empty())
93 return;
94 base::FilePath dir_name = path.DirName();
95 // Does not support root directory
96 if (dir_name == path)
97 return;
98
99 base::FilePath::StringType pattern =
100 path.BaseName().value() + FILE_PATH_LITERAL("*") + g_delete_suffix;
101 base::FileEnumerator enumerator(dir_name, false,
102 base::FileEnumerator::DIRECTORIES, pattern);
103 for (base::FilePath dir = enumerator.Next(); !dir.empty();
104 dir = enumerator.Next()) {
105 base::DeleteFile(dir, true);
106 }
107 }
108
109 void DeleteMovedUserData() {
110 base::FilePath user_data_dir;
111 PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
112 DeleteAllRenamedUserDirectories(user_data_dir);
113 DeleteAllRenamedUserDirectories(GetDiskCacheDir());
114 }
115
116 } // namespace
117
118 void MoveUserDataForFirstRunAfterDowngrade() {
119 base::FilePath user_data_dir;
120 PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
121 base::Version current_version(chrome::kChromeVersion);
122 base::FilePath cur_chrome_exe;
123 if (!PathService::Get(base::FILE_EXE, &cur_chrome_exe))
124 return;
125 if (InstallUtil::GetDowngradeVersion(
126 InstallUtil::IsPerUserInstall(cur_chrome_exe) ? HKEY_CURRENT_USER
127 : HKEY_LOCAL_MACHINE,
128 BrowserDistribution::GetDistribution()) > current_version) {
129 base::FilePath disk_cache_dir(GetDiskCacheDir());
130 // Without the browser process singleton protection, the directory may be
131 // copied multiple times. In order to prevent that from happening, the temp
132 // directory's name will be computed before the LastChromeVersion file is
133 // read. Because the deletion will be scheduled after the singleton is
134 // required, the directory can only be moved twice in the worst case.
grt (UTC plus 2) 2016/05/20 15:25:05 required -> acquired
zmin 2016/05/20 16:33:05 Done.
135 // Also, doing this after the downgrade version check to reduce performance
136 // cost for the normal launch.
137 base::FilePath temp_disk_cache_dir(GetTempDirNameForDelete(disk_cache_dir));
138 base::FilePath temp_user_data_dir(GetTempDirNameForDelete(user_data_dir));
139 if (GetLastChromeVersion(user_data_dir) > current_version) {
140 // Do not recreate |disk_cache_dir| as it will be initialized later.
141 RenameDirectory(disk_cache_dir, temp_disk_cache_dir, false);
142 RenameDirectory(user_data_dir, temp_user_data_dir, true);
143 }
144 }
145 base::WriteFile(GetLastChromeVersionFile(user_data_dir),
146 chrome::kChromeVersion, strlen(chrome::kChromeVersion));
147 }
148
149 void DeleteMovedUserDataSoon() {
150 content::BrowserThread::GetBlockingPool()->PostWorkerTaskWithShutdownBehavior(
151 FROM_HERE, base::Bind(&DeleteMovedUserData),
152 base::SequencedWorkerPool::CONTINUE_ON_SHUTDOWN);
153 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698