OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/google_url_tracker.h" | 5 #include "chrome/browser/google_url_tracker.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // Only allow updates if the new URL appears to be on google.xx, google.co.xx, | 72 // Only allow updates if the new URL appears to be on google.xx, google.co.xx, |
73 // or google.com.xx. Cases other than this are either malicious, or doorway | 73 // or google.com.xx. Cases other than this are either malicious, or doorway |
74 // pages for hotel WiFi connections and the like. | 74 // pages for hotel WiFi connections and the like. |
75 // NOTE: Obviously the above is not as secure as whitelisting all known Google | 75 // NOTE: Obviously the above is not as secure as whitelisting all known Google |
76 // frontpage domains, but for now we're trying to prevent login pages etc. | 76 // frontpage domains, but for now we're trying to prevent login pages etc. |
77 // from ruining the user experience, rather than preventing hijacking. | 77 // from ruining the user experience, rather than preventing hijacking. |
78 std::vector<std::string> host_components; | 78 std::vector<std::string> host_components; |
79 SplitStringDontTrim(url.host(), '.', &host_components); | 79 SplitStringDontTrim(url.host(), '.', &host_components); |
80 if (host_components.size() < 2) | 80 if (host_components.size() < 2) |
81 return false; | 81 return false; |
82 std::string& component = host_components[host_components.size() - 2]; | 82 size_t google_component = host_components.size() - 2; |
| 83 const std::string& component = host_components[google_component]; |
83 if (component != "google") { | 84 if (component != "google") { |
84 if ((host_components.size() < 3) || | 85 if ((host_components.size() < 3) || |
85 ((component != "co") && (component != "com"))) | 86 ((component != "co") && (component != "com"))) |
86 return false; | 87 return false; |
87 if (host_components[host_components.size() - 3] != "google") | 88 google_component = host_components.size() - 3; |
| 89 if (host_components[google_component] != "google") |
88 return false; | 90 return false; |
89 } | 91 } |
| 92 // For Google employees only: If the URL appears to be on |
| 93 // [*.]corp.google.com, it's likely a doorway (e.g. |
| 94 // wifi.corp.google.com), so ignore it. |
| 95 if ((google_component > 0) && |
| 96 (host_components[google_component - 1] == "corp")) |
| 97 return false; |
90 | 98 |
91 // If the url's path does not begin "/intl/", reset it to "/". Other paths | 99 // If the url's path does not begin "/intl/", reset it to "/". Other paths |
92 // represent services such as iGoogle that are irrelevant to the baseURL. | 100 // represent services such as iGoogle that are irrelevant to the baseURL. |
93 *base_url = url.path().compare(0, 6, "/intl/") ? url.GetWithEmptyPath() : url; | 101 *base_url = url.path().compare(0, 6, "/intl/") ? url.GetWithEmptyPath() : url; |
94 return true; | 102 return true; |
95 } | 103 } |
96 | 104 |
97 void GoogleURLTracker::SetNeedToFetch() { | 105 void GoogleURLTracker::SetNeedToFetch() { |
98 need_to_fetch_ = true; | 106 need_to_fetch_ = true; |
99 StartFetchIfDesirable(); | 107 StartFetchIfDesirable(); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 } | 170 } |
163 } | 171 } |
164 | 172 |
165 void GoogleURLTracker::Observe(NotificationType type, | 173 void GoogleURLTracker::Observe(NotificationType type, |
166 const NotificationSource& source, | 174 const NotificationSource& source, |
167 const NotificationDetails& details) { | 175 const NotificationDetails& details) { |
168 DCHECK_EQ(NotificationType::DEFAULT_REQUEST_CONTEXT_AVAILABLE, type.value); | 176 DCHECK_EQ(NotificationType::DEFAULT_REQUEST_CONTEXT_AVAILABLE, type.value); |
169 request_context_available_ = true; | 177 request_context_available_ = true; |
170 StartFetchIfDesirable(); | 178 StartFetchIfDesirable(); |
171 } | 179 } |
OLD | NEW |