This source file includes following definitions.
- FindFormInputElements
- FindFormElements
- IsElementEditable
- DoUsernamesMatch
- IsElementAutocompletable
- PasswordValueIsDefault
- weak_ptr_factory_
- RegisterElement
- OnUserGesture
- Reset
- ShowValue
- TextFieldDidEndEditing
- TextDidChangeInTextField
- TextFieldHandlingKeyDown
- DidAcceptAutofillSuggestion
- DidClearAutofillSelection
- ShowSuggestions
- OriginCanAccessPasswordManager
- OnDynamicFormsSeen
- SendPasswordForms
- OnMessageReceived
- DidStartLoading
- DidFinishDocumentLoad
- DidFinishLoad
- FrameDetached
- FrameWillClose
- WillSendSubmitEvent
- WillSubmitForm
- WillProcessUserGesture
- CurrentOrChildFrameWithSavedForms
- DidStartProvisionalLoad
- OnFillPasswordForm
- GetSuggestions
- ShowSuggestionPopup
- FillFormOnPasswordRecieved
- FillUserNameAndPassword
- PerformInlineAutocomplete
- FrameClosing
- FindLoginInfo
#include "components/autofill/content/renderer/password_autofill_agent.h"
#include "base/bind.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/histogram.h"
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/content/common/autofill_messages.h"
#include "components/autofill/content/renderer/form_autofill_util.h"
#include "components/autofill/content/renderer/password_form_conversion_utils.h"
#include "components/autofill/core/common/form_field_data.h"
#include "components/autofill/core/common/password_autofill_util.h"
#include "components/autofill/core/common/password_form.h"
#include "components/autofill/core/common/password_form_fill_data.h"
#include "content/public/renderer/render_view.h"
#include "third_party/WebKit/public/platform/WebVector.h"
#include "third_party/WebKit/public/web/WebAutofillClient.h"
#include "third_party/WebKit/public/web/WebDocument.h"
#include "third_party/WebKit/public/web/WebElement.h"
#include "third_party/WebKit/public/web/WebFormElement.h"
#include "third_party/WebKit/public/web/WebFrame.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
#include "third_party/WebKit/public/web/WebNode.h"
#include "third_party/WebKit/public/web/WebNodeList.h"
#include "third_party/WebKit/public/web/WebPasswordFormData.h"
#include "third_party/WebKit/public/web/WebSecurityOrigin.h"
#include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
#include "third_party/WebKit/public/web/WebView.h"
#include "ui/events/keycodes/keyboard_codes.h"
namespace autofill {
namespace {
static const size_t kMaximumTextSizeForAutocomplete = 1000;
typedef std::map<base::string16, blink::WebInputElement>
FormInputElementMap;
struct FormElements {
blink::WebFormElement form_element;
FormInputElementMap input_elements;
};
typedef std::vector<FormElements*> FormElementsList;
static bool FindFormInputElements(blink::WebFormElement* fe,
const FormData& data,
FormElements* result) {
for (size_t j = 0; j < data.fields.size(); j++) {
blink::WebVector<blink::WebNode> temp_elements;
fe->getNamedElements(data.fields[j].name, temp_elements);
bool found_input = false;
for (size_t i = 0; i < temp_elements.size(); ++i) {
if (temp_elements[i].to<blink::WebElement>().hasTagName("input")) {
if (found_input) {
found_input = false;
break;
}
blink::WebInputElement input_element =
temp_elements[i].to<blink::WebInputElement>();
if (input_element.isPasswordField() !=
(data.fields[j].form_control_type == "password"))
continue;
result->input_elements[data.fields[j].name] = input_element;
found_input = true;
}
}
if (!found_input) {
result->input_elements.clear();
return false;
}
}
return true;
}
void FindFormElements(blink::WebView* view,
const FormData& data,
FormElementsList* results) {
DCHECK(view);
DCHECK(results);
blink::WebFrame* main_frame = view->mainFrame();
if (!main_frame)
return;
GURL::Replacements rep;
rep.ClearQuery();
rep.ClearRef();
for (blink::WebFrame* f = main_frame; f; f = f->traverseNext(false)) {
blink::WebDocument doc = f->document();
if (!doc.isHTMLDocument())
continue;
GURL full_origin(doc.url());
if (data.origin != full_origin.ReplaceComponents(rep))
continue;
blink::WebVector<blink::WebFormElement> forms;
doc.forms(forms);
for (size_t i = 0; i < forms.size(); ++i) {
blink::WebFormElement fe = forms[i];
GURL full_action(f->document().completeURL(fe.action()));
if (full_action.is_empty()) {
full_action = full_origin;
}
if (data.action != full_action.ReplaceComponents(rep))
continue;
scoped_ptr<FormElements> curr_elements(new FormElements);
if (!FindFormInputElements(&fe, data, curr_elements.get()))
continue;
curr_elements->form_element = fe;
results->push_back(curr_elements.release());
}
}
}
bool IsElementEditable(const blink::WebInputElement& element) {
return element.isEnabled() && !element.isReadOnly();
}
bool DoUsernamesMatch(const base::string16& username1,
const base::string16& username2,
bool exact_match) {
if (exact_match)
return username1 == username2;
return StartsWith(username1, username2, true);
}
bool IsElementAutocompletable(const blink::WebInputElement& element) {
return IsElementEditable(element) &&
(ShouldIgnoreAutocompleteOffForPasswordFields() ||
element.autoComplete());
}
bool PasswordValueIsDefault(const PasswordForm& form,
blink::WebFormElement form_element) {
blink::WebVector<blink::WebNode> temp_elements;
form_element.getNamedElements(form.password_element, temp_elements);
for (size_t i = 0; i < temp_elements.size(); ++i) {
if (temp_elements[i].to<blink::WebElement>().getAttribute("value") ==
form.password_value)
return true;
}
return false;
}
}
PasswordAutofillAgent::PasswordAutofillAgent(content::RenderView* render_view)
: content::RenderViewObserver(render_view),
usernames_usage_(NOTHING_TO_AUTOFILL),
web_view_(render_view->GetWebView()),
weak_ptr_factory_(this) {
}
PasswordAutofillAgent::~PasswordAutofillAgent() {}
PasswordAutofillAgent::PasswordValueGatekeeper::PasswordValueGatekeeper()
: was_user_gesture_seen_(false) {}
PasswordAutofillAgent::PasswordValueGatekeeper::~PasswordValueGatekeeper() {}
void PasswordAutofillAgent::PasswordValueGatekeeper::RegisterElement(
blink::WebInputElement* element) {
if (was_user_gesture_seen_)
ShowValue(element);
else
elements_.push_back(*element);
}
void PasswordAutofillAgent::PasswordValueGatekeeper::OnUserGesture() {
was_user_gesture_seen_ = true;
for (std::vector<blink::WebInputElement>::iterator it = elements_.begin();
it != elements_.end();
++it) {
ShowValue(&(*it));
}
elements_.clear();
}
void PasswordAutofillAgent::PasswordValueGatekeeper::Reset() {
was_user_gesture_seen_ = false;
elements_.clear();
}
void PasswordAutofillAgent::PasswordValueGatekeeper::ShowValue(
blink::WebInputElement* element) {
if (!element->isNull() && !element->suggestedValue().isNull())
element->setValue(element->suggestedValue(), true);
}
bool PasswordAutofillAgent::TextFieldDidEndEditing(
const blink::WebInputElement& element) {
LoginToPasswordInfoMap::const_iterator iter =
login_to_password_info_.find(element);
if (iter == login_to_password_info_.end())
return false;
const PasswordFormFillData& fill_data =
iter->second.fill_data;
if (!fill_data.wait_for_username)
return false;
blink::WebInputElement password = iter->second.password_field;
if (!IsElementEditable(password))
return false;
blink::WebInputElement username = element;
FillUserNameAndPassword(&username, &password, fill_data,
true ,
false );
return true;
}
bool PasswordAutofillAgent::TextDidChangeInTextField(
const blink::WebInputElement& element) {
LoginToPasswordInfoMap::const_iterator iter =
login_to_password_info_.find(element);
if (iter == login_to_password_info_.end())
return false;
blink::WebInputElement username = element;
username.setAutofilled(false);
blink::WebInputElement password = iter->second.password_field;
if (password.isAutofilled()) {
password.setValue(base::string16(), true);
password.setAutofilled(false);
}
if (iter->second.fill_data.wait_for_username)
return false;
if (!element.isText() || !IsElementAutocompletable(element) ||
!IsElementAutocompletable(password)) {
return false;
}
if (iter->second.backspace_pressed_last) {
ShowSuggestionPopup(iter->second.fill_data, username);
return true;
}
blink::WebString name = element.nameForAutofill();
if (name.isEmpty())
return false;
if (element.value().length() > kMaximumTextSizeForAutocomplete)
return false;
PerformInlineAutocomplete(element, password, iter->second.fill_data);
return true;
}
bool PasswordAutofillAgent::TextFieldHandlingKeyDown(
const blink::WebInputElement& element,
const blink::WebKeyboardEvent& event) {
LoginToPasswordInfoMap::iterator iter = login_to_password_info_.find(element);
if (iter == login_to_password_info_.end())
return false;
int win_key_code = event.windowsKeyCode;
iter->second.backspace_pressed_last =
(win_key_code == ui::VKEY_BACK || win_key_code == ui::VKEY_DELETE);
return true;
}
bool PasswordAutofillAgent::DidAcceptAutofillSuggestion(
const blink::WebNode& node,
const blink::WebString& username) {
blink::WebInputElement input;
PasswordInfo password;
if (!FindLoginInfo(node, &input, &password))
return false;
input.setValue(username, true);
return FillUserNameAndPassword(&input, &password.password_field,
password.fill_data,
true ,
true );
}
bool PasswordAutofillAgent::DidClearAutofillSelection(
const blink::WebNode& node) {
blink::WebInputElement input;
PasswordInfo password;
return FindLoginInfo(node, &input, &password);
}
bool PasswordAutofillAgent::ShowSuggestions(
const blink::WebInputElement& element) {
LoginToPasswordInfoMap::const_iterator iter =
login_to_password_info_.find(element);
if (iter == login_to_password_info_.end())
return false;
if (!IsElementAutocompletable(element) ||
!IsElementAutocompletable(iter->second.password_field))
return true;
return ShowSuggestionPopup(iter->second.fill_data, element);
}
bool PasswordAutofillAgent::OriginCanAccessPasswordManager(
const blink::WebSecurityOrigin& origin) {
return origin.canAccessPasswordManager();
}
void PasswordAutofillAgent::OnDynamicFormsSeen(blink::WebFrame* frame) {
SendPasswordForms(frame, false );
}
void PasswordAutofillAgent::SendPasswordForms(blink::WebFrame* frame,
bool only_visible) {
blink::WebSecurityOrigin origin = frame->document().securityOrigin();
if (!OriginCanAccessPasswordManager(origin))
return;
if (IsWebpageEmpty(frame))
return;
blink::WebVector<blink::WebFormElement> forms;
frame->document().forms(forms);
std::vector<PasswordForm> password_forms;
for (size_t i = 0; i < forms.size(); ++i) {
const blink::WebFormElement& form = forms[i];
if (only_visible && !IsWebNodeVisible(form))
continue;
scoped_ptr<PasswordForm> password_form(CreatePasswordForm(form));
if (password_form.get())
password_forms.push_back(*password_form);
}
if (password_forms.empty() && !only_visible) {
return;
}
if (only_visible) {
Send(new AutofillHostMsg_PasswordFormsRendered(routing_id(),
password_forms));
} else {
Send(new AutofillHostMsg_PasswordFormsParsed(routing_id(), password_forms));
}
}
bool PasswordAutofillAgent::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(PasswordAutofillAgent, message)
IPC_MESSAGE_HANDLER(AutofillMsg_FillPasswordForm, OnFillPasswordForm)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void PasswordAutofillAgent::DidStartLoading() {
if (usernames_usage_ != NOTHING_TO_AUTOFILL) {
UMA_HISTOGRAM_ENUMERATION("PasswordManager.OtherPossibleUsernamesUsage",
usernames_usage_, OTHER_POSSIBLE_USERNAMES_MAX);
usernames_usage_ = NOTHING_TO_AUTOFILL;
}
}
void PasswordAutofillAgent::DidFinishDocumentLoad(blink::WebFrame* frame) {
SendPasswordForms(frame, false);
}
void PasswordAutofillAgent::DidFinishLoad(blink::WebFrame* frame) {
SendPasswordForms(frame, true);
}
void PasswordAutofillAgent::FrameDetached(blink::WebFrame* frame) {
FrameClosing(frame);
}
void PasswordAutofillAgent::FrameWillClose(blink::WebFrame* frame) {
FrameClosing(frame);
}
void PasswordAutofillAgent::WillSendSubmitEvent(
blink::WebFrame* frame,
const blink::WebFormElement& form) {
scoped_ptr<PasswordForm> password_form(CreatePasswordForm(form));
if (password_form)
provisionally_saved_forms_[frame].reset(password_form.release());
}
void PasswordAutofillAgent::WillSubmitForm(blink::WebFrame* frame,
const blink::WebFormElement& form) {
scoped_ptr<PasswordForm> submitted_form = CreatePasswordForm(form);
if (submitted_form) {
if (provisionally_saved_forms_[frame].get() &&
submitted_form->action == provisionally_saved_forms_[frame]->action) {
submitted_form->password_value =
provisionally_saved_forms_[frame]->password_value;
}
Send(new AutofillHostMsg_PasswordFormSubmitted(routing_id(),
*submitted_form));
provisionally_saved_forms_.erase(frame);
}
}
void PasswordAutofillAgent::WillProcessUserGesture() {
gatekeeper_.OnUserGesture();
}
blink::WebFrame* PasswordAutofillAgent::CurrentOrChildFrameWithSavedForms(
const blink::WebFrame* current_frame) {
for (FrameToPasswordFormMap::const_iterator it =
provisionally_saved_forms_.begin();
it != provisionally_saved_forms_.end();
++it) {
blink::WebFrame* form_frame = it->first;
if (current_frame == form_frame ||
current_frame->findChildByName(form_frame->assignedName())) {
return form_frame;
}
}
return NULL;
}
void PasswordAutofillAgent::DidStartProvisionalLoad(blink::WebFrame* frame) {
if (!frame->parent()) {
blink::WebFrame* form_frame = CurrentOrChildFrameWithSavedForms(frame);
if (!blink::WebUserGestureIndicator::isProcessingUserGesture()) {
if (provisionally_saved_forms_[form_frame].get()) {
Send(new AutofillHostMsg_PasswordFormSubmitted(
routing_id(),
*provisionally_saved_forms_[form_frame]));
provisionally_saved_forms_.erase(form_frame);
} else {
blink::WebVector<blink::WebFormElement> forms;
frame->document().forms(forms);
for (size_t i = 0; i < forms.size(); ++i) {
blink::WebFormElement form_element= forms[i];
scoped_ptr<PasswordForm> password_form(
CreatePasswordForm(form_element));
if (password_form.get() &&
!password_form->username_value.empty() &&
!password_form->password_value.empty() &&
!PasswordValueIsDefault(*password_form, form_element)) {
Send(new AutofillHostMsg_PasswordFormSubmitted(
routing_id(), *password_form));
}
}
}
}
provisionally_saved_forms_.clear();
gatekeeper_.Reset();
}
}
void PasswordAutofillAgent::OnFillPasswordForm(
const PasswordFormFillData& form_data) {
if (usernames_usage_ == NOTHING_TO_AUTOFILL) {
if (form_data.other_possible_usernames.size())
usernames_usage_ = OTHER_POSSIBLE_USERNAMES_PRESENT;
else if (usernames_usage_ == NOTHING_TO_AUTOFILL)
usernames_usage_ = OTHER_POSSIBLE_USERNAMES_ABSENT;
}
FormElementsList forms;
FindFormElements(render_view()->GetWebView(), form_data.basic_data, &forms);
FormElementsList::iterator iter;
for (iter = forms.begin(); iter != forms.end(); ++iter) {
scoped_ptr<FormElements> form_elements(*iter);
blink::WebInputElement username_element =
form_elements->input_elements[form_data.basic_data.fields[0].name];
blink::WebInputElement password_element =
form_elements->input_elements[form_data.basic_data.fields[1].name];
if (!form_data.wait_for_username)
FillFormOnPasswordRecieved(form_data, username_element, password_element);
if (login_to_password_info_.find(username_element) !=
login_to_password_info_.end())
continue;
PasswordInfo password_info;
password_info.fill_data = form_data;
password_info.password_field = password_element;
login_to_password_info_[username_element] = password_info;
FormData form;
FormFieldData field;
FindFormAndFieldForFormControlElement(
username_element, &form, &field, REQUIRE_NONE);
Send(new AutofillHostMsg_AddPasswordFormMapping(
routing_id(),
field,
form_data));
}
}
void PasswordAutofillAgent::GetSuggestions(
const PasswordFormFillData& fill_data,
const base::string16& input,
std::vector<base::string16>* suggestions,
std::vector<base::string16>* realms) {
if (StartsWith(fill_data.basic_data.fields[0].value, input, false)) {
suggestions->push_back(fill_data.basic_data.fields[0].value);
realms->push_back(base::UTF8ToUTF16(fill_data.preferred_realm));
}
for (PasswordFormFillData::LoginCollection::const_iterator iter =
fill_data.additional_logins.begin();
iter != fill_data.additional_logins.end(); ++iter) {
if (StartsWith(iter->first, input, false)) {
suggestions->push_back(iter->first);
realms->push_back(base::UTF8ToUTF16(iter->second.realm));
}
}
for (PasswordFormFillData::UsernamesCollection::const_iterator iter =
fill_data.other_possible_usernames.begin();
iter != fill_data.other_possible_usernames.end(); ++iter) {
for (size_t i = 0; i < iter->second.size(); ++i) {
if (StartsWith(iter->second[i], input, false)) {
usernames_usage_ = OTHER_POSSIBLE_USERNAME_SHOWN;
suggestions->push_back(iter->second[i]);
realms->push_back(base::UTF8ToUTF16(iter->first.realm));
}
}
}
}
bool PasswordAutofillAgent::ShowSuggestionPopup(
const PasswordFormFillData& fill_data,
const blink::WebInputElement& user_input) {
blink::WebFrame* frame = user_input.document().frame();
if (!frame)
return false;
blink::WebView* webview = frame->view();
if (!webview)
return false;
std::vector<base::string16> suggestions;
std::vector<base::string16> realms;
GetSuggestions(fill_data, user_input.value(), &suggestions, &realms);
DCHECK_EQ(suggestions.size(), realms.size());
FormData form;
FormFieldData field;
FindFormAndFieldForFormControlElement(
user_input, &form, &field, REQUIRE_NONE);
blink::WebInputElement selected_element = user_input;
gfx::Rect bounding_box(selected_element.boundsInViewportSpace());
float scale = web_view_->pageScaleFactor();
gfx::RectF bounding_box_scaled(bounding_box.x() * scale,
bounding_box.y() * scale,
bounding_box.width() * scale,
bounding_box.height() * scale);
Send(new AutofillHostMsg_ShowPasswordSuggestions(routing_id(),
field,
bounding_box_scaled,
suggestions,
realms));
return !suggestions.empty();
}
void PasswordAutofillAgent::FillFormOnPasswordRecieved(
const PasswordFormFillData& fill_data,
blink::WebInputElement username_element,
blink::WebInputElement password_element) {
DCHECK(password_element.document().frame());
if (password_element.document().frame()->parent())
return;
if (!ShouldIgnoreAutocompleteOffForPasswordFields() &&
!username_element.form().autoComplete())
return;
if (!IsElementAutocompletable(password_element))
return;
if (IsElementAutocompletable(username_element) &&
username_element.value().isEmpty()) {
username_element.setValue(fill_data.basic_data.fields[0].value, true);
}
FillUserNameAndPassword(&username_element, &password_element, fill_data,
true ,
false );
}
bool PasswordAutofillAgent::FillUserNameAndPassword(
blink::WebInputElement* username_element,
blink::WebInputElement* password_element,
const PasswordFormFillData& fill_data,
bool exact_username_match,
bool set_selection) {
base::string16 current_username = username_element->value();
base::string16 username;
base::string16 password;
if (DoUsernamesMatch(fill_data.basic_data.fields[0].value, current_username,
exact_username_match)) {
username = fill_data.basic_data.fields[0].value;
password = fill_data.basic_data.fields[1].value;
} else {
PasswordFormFillData::LoginCollection::const_iterator iter;
for (iter = fill_data.additional_logins.begin();
iter != fill_data.additional_logins.end(); ++iter) {
if (DoUsernamesMatch(iter->first, current_username,
exact_username_match)) {
username = iter->first;
password = iter->second.password;
break;
}
}
if (username.empty() && password.empty()) {
for (PasswordFormFillData::UsernamesCollection::const_iterator iter =
fill_data.other_possible_usernames.begin();
iter != fill_data.other_possible_usernames.end(); ++iter) {
for (size_t i = 0; i < iter->second.size(); ++i) {
if (DoUsernamesMatch(iter->second[i], current_username,
exact_username_match)) {
usernames_usage_ = OTHER_POSSIBLE_USERNAME_SELECTED;
username = iter->second[i];
password = iter->first.password;
break;
}
}
if (!username.empty() && !password.empty())
break;
}
}
}
if (password.empty())
return false;
if (!IsElementAutocompletable(*password_element)) {
return false;
}
if (IsElementAutocompletable(*username_element)) {
username_element->setValue(username, true);
username_element->setAutofilled(true);
if (set_selection) {
username_element->setSelectionRange(current_username.length(),
username.length());
}
} else if (current_username != username) {
return false;
}
#if !defined(OS_ANDROID) || !defined(OS_IOS)
password_element->setSuggestedValue(password);
gatekeeper_.RegisterElement(password_element);
#else
password_element->setValue(password);
#endif
password_element->setAutofilled(true);
return true;
}
void PasswordAutofillAgent::PerformInlineAutocomplete(
const blink::WebInputElement& username_input,
const blink::WebInputElement& password_input,
const PasswordFormFillData& fill_data) {
DCHECK(!fill_data.wait_for_username);
blink::WebInputElement username = username_input;
blink::WebInputElement password = password_input;
if (username.selectionStart() != username.selectionEnd() ||
username.selectionEnd() != static_cast<int>(username.value().length())) {
return;
}
ShowSuggestionPopup(fill_data, username);
#if !defined(OS_ANDROID)
FillUserNameAndPassword(&username, &password, fill_data,
false ,
true );
#endif
}
void PasswordAutofillAgent::FrameClosing(const blink::WebFrame* frame) {
for (LoginToPasswordInfoMap::iterator iter = login_to_password_info_.begin();
iter != login_to_password_info_.end();) {
if (iter->first.document().frame() == frame)
login_to_password_info_.erase(iter++);
else
++iter;
}
for (FrameToPasswordFormMap::iterator iter =
provisionally_saved_forms_.begin();
iter != provisionally_saved_forms_.end();) {
if (iter->first == frame)
provisionally_saved_forms_.erase(iter++);
else
++iter;
}
}
bool PasswordAutofillAgent::FindLoginInfo(const blink::WebNode& node,
blink::WebInputElement* found_input,
PasswordInfo* found_password) {
if (!node.isElementNode())
return false;
blink::WebElement element = node.toConst<blink::WebElement>();
if (!element.hasTagName("input"))
return false;
blink::WebInputElement input = element.to<blink::WebInputElement>();
LoginToPasswordInfoMap::iterator iter = login_to_password_info_.find(input);
if (iter == login_to_password_info_.end())
return false;
*found_input = input;
*found_password = iter->second;
return true;
}
}