1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
// Copyright (c) 2010 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/autofill/form_structure.h"
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/sha1.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autofill/field_types.h"
#include "chrome/browser/autofill/form_field.h"
#include "third_party/libjingle/files/talk/xmllite/xmlelement.h"
#include "webkit/glue/form_field.h"
using webkit_glue::FormData;
namespace {
const char* kFormMethodPost = "post";
// XML attribute names.
const char* const kAttributeClientVersion = "clientversion";
const char* const kAttributeAutoFillUsed = "autofillused";
const char* const kAttributeSignature = "signature";
const char* const kAttributeFormSignature = "formsignature";
const char* const kAttributeDataPresent = "datapresent";
const char* const kXMLElementForm = "form";
const char* const kXMLElementField = "field";
const char* const kAttributeAutoFillType = "autofilltype";
// The list of form control types we handle.
const char* const kControlTypeSelect = "select-one";
const char* const kControlTypeText = "text";
// The number of fillable fields necessary for a form to be fillable.
const size_t kRequiredFillableFields = 3;
static std::string Hash64Bit(const std::string& str) {
std::string hash_bin = base::SHA1HashString(str);
DCHECK_EQ(20U, hash_bin.length());
uint64 hash64 = (((static_cast<uint64>(hash_bin[0])) & 0xFF) << 56) |
(((static_cast<uint64>(hash_bin[1])) & 0xFF) << 48) |
(((static_cast<uint64>(hash_bin[2])) & 0xFF) << 40) |
(((static_cast<uint64>(hash_bin[3])) & 0xFF) << 32) |
(((static_cast<uint64>(hash_bin[4])) & 0xFF) << 24) |
(((static_cast<uint64>(hash_bin[5])) & 0xFF) << 16) |
(((static_cast<uint64>(hash_bin[6])) & 0xFF) << 8) |
((static_cast<uint64>(hash_bin[7])) & 0xFF);
return Uint64ToString(hash64);
}
} // namespace
FormStructure::FormStructure(const FormData& form)
: form_name_(UTF16ToUTF8(form.name)),
source_url_(form.origin),
target_url_(form.action),
autofill_count_(0) {
// Copy the form fields.
std::vector<webkit_glue::FormField>::const_iterator field;
for (field = form.fields.begin();
field != form.fields.end(); field++) {
// We currently only handle text and select fields; however, we need to
// store all fields in order to match the fields stored in the FormManager.
// We don't append other field types to the form signature though in order
// to match the form signature of the AutoFill servers.
if (LowerCaseEqualsASCII(field->form_control_type(), kControlTypeText) ||
LowerCaseEqualsASCII(field->form_control_type(), kControlTypeSelect)) {
// Add all supported form fields (including with empty names) to
// signature. This is a requirement for AutoFill servers.
form_signature_field_names_.append("&");
form_signature_field_names_.append(UTF16ToUTF8(field->name()));
++autofill_count_;
}
// Generate a unique name for this field by appending a counter to the name.
string16 unique_name = field->name() + IntToString16(fields_.size() + 1);
fields_.push_back(new AutoFillField(*field, unique_name));
}
// Terminate the vector with a NULL item.
fields_.push_back(NULL);
std::string method = UTF16ToUTF8(form.method);
if (StringToLowerASCII(method) == kFormMethodPost) {
method_ = POST;
} else {
// Either the method is 'get', or we don't know. In this case we default
// to GET.
method_ = GET;
}
}
bool FormStructure::EncodeUploadRequest(bool auto_fill_used,
std::string* encoded_xml) const {
bool auto_fillable = IsAutoFillable();
DCHECK(auto_fillable); // Caller should've checked for search pages.
if (!auto_fillable)
return false;
buzz::XmlElement autofil_request_xml(buzz::QName("autofillupload"));
// Attributes for the <autofillupload> element.
//
// TODO(jhawkins): Work with toolbar devs to make a spec for autofill clients.
// For now these values are hacked from the toolbar code.
autofil_request_xml.SetAttr(buzz::QName(kAttributeClientVersion),
"6.1.1715.1442/en (GGLL)");
autofil_request_xml.SetAttr(buzz::QName(kAttributeFormSignature),
FormSignature());
autofil_request_xml.SetAttr(buzz::QName(kAttributeAutoFillUsed),
auto_fill_used ? "true" : "false");
// TODO(jhawkins): Hook this up to the personal data manager.
// personaldata_manager_->GetDataPresent();
autofil_request_xml.SetAttr(buzz::QName(kAttributeDataPresent), "");
EncodeFormRequest(FormStructure::UPLOAD, &autofil_request_xml);
// Obtain the XML structure as a string.
*encoded_xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
*encoded_xml += autofil_request_xml.Str().c_str();
return true;
}
bool FormStructure::EncodeQueryRequest(const ScopedVector<FormStructure>& forms,
std::string* encoded_xml) {
buzz::XmlElement autofil_request_xml(buzz::QName("autofillquery"));
// Attributes for the <autofillquery> element.
//
// TODO(jhawkins): Work with toolbar devs to make a spec for autofill clients.
// For now these values are hacked from the toolbar code.
autofil_request_xml.SetAttr(buzz::QName(kAttributeClientVersion),
"6.1.1715.1442/en (GGLL)");
for (ScopedVector<FormStructure>::const_iterator it = forms.begin();
it != forms.end();
++it) {
buzz::XmlElement* encompassing_xml_element =
new buzz::XmlElement(buzz::QName("form"));
encompassing_xml_element->SetAttr(buzz::QName(kAttributeSignature),
(*it)->FormSignature());
(*it)->EncodeFormRequest(FormStructure::QUERY, encompassing_xml_element);
autofil_request_xml.AddElement(encompassing_xml_element);
}
// Obtain the XML structure as a string.
*encoded_xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
*encoded_xml += autofil_request_xml.Str().c_str();
return true;
}
void FormStructure::GetHeuristicAutoFillTypes() {
has_credit_card_field_ = false;
has_autofillable_field_ = false;
FieldTypeMap field_type_map;
GetHeuristicFieldInfo(&field_type_map);
for (size_t index = 0; index < field_count(); index++) {
AutoFillField* field = fields_[index];
FieldTypeMap::iterator iter = field_type_map.find(field->unique_name());
AutoFillFieldType heuristic_auto_fill_type;
if (iter == field_type_map.end())
heuristic_auto_fill_type = UNKNOWN_TYPE;
else
heuristic_auto_fill_type = iter->second;
field->set_heuristic_type(heuristic_auto_fill_type);
AutoFillType autofill_type(field->type());
if (autofill_type.group() == AutoFillType::CREDIT_CARD)
has_credit_card_field_ = true;
if (autofill_type.field_type() != UNKNOWN_TYPE)
has_autofillable_field_ = true;
}
}
std::string FormStructure::FormSignature() const {
std::string form_string = target_url_.scheme() +
"://" +
target_url_.host() +
"&" +
form_name_ +
form_signature_field_names_;
return Hash64Bit(form_string);
}
bool FormStructure::IsAutoFillable() const {
if (autofill_count() < kRequiredFillableFields)
return false;
// Rule out http(s)://*/search?...
// e.g. http://www.google.com/search?q=...
// http://search.yahoo.com/search?p=...
if (target_url_.path() == "/search")
return false;
if (method_ == GET)
return false;
return true;
}
void FormStructure::set_possible_types(int index, const FieldTypeSet& types) {
int num_fields = static_cast<int>(field_count());
DCHECK(index >= 0 && index < num_fields);
if (index >= 0 && index < num_fields)
fields_[index]->set_possible_types(types);
}
const AutoFillField* FormStructure::field(int index) const {
return fields_[index];
}
size_t FormStructure::field_count() const {
// Don't count the NULL terminator.
size_t field_size = fields_.size();
return (field_size == 0) ? 0 : field_size - 1;
}
FormData FormStructure::ConvertToFormData() const {
FormData form;
form.name = UTF8ToUTF16(form_name_);
form.origin = source_url_;
form.action = target_url_;
if (method_ == GET)
form.method = ASCIIToUTF16("GET");
else if (method_ == POST)
form.method = ASCIIToUTF16("POST");
else
NOTREACHED();
for (std::vector<AutoFillField*>::const_iterator iter = fields_.begin();
iter != fields_.end() && *iter; ++iter) {
form.fields.push_back(static_cast<webkit_glue::FormField>(**iter));
}
return form;
}
bool FormStructure::operator==(const FormData& form) const {
// TODO(jhawkins): Is this enough to differentiate a form?
if (UTF8ToUTF16(form_name_) == form.name &&
source_url_ == form.origin &&
target_url_ == form.action) {
return true;
}
// TODO(jhawkins): Compare field names, IDs and labels once we have labels
// set up.
return false;
}
bool FormStructure::operator!=(const FormData& form) const {
return !operator==(form);
}
void FormStructure::GetHeuristicFieldInfo(FieldTypeMap* field_type_map) {
FormFieldSet fields = FormFieldSet(this);
FormFieldSet::const_iterator field;
for (field = fields.begin(); field != fields.end(); field++) {
bool ok = (*field)->GetFieldInfo(field_type_map);
DCHECK(ok);
}
}
bool FormStructure::EncodeFormRequest(
FormStructure::EncodeRequestType request_type,
buzz::XmlElement* encompassing_xml_element) const {
if (!field_count()) // Nothing to add.
return false;
// Add the child nodes for the form fields.
for (size_t index = 0; index < field_count(); index++) {
const AutoFillField* field = fields_[index];
if (request_type == FormStructure::UPLOAD) {
FieldTypeSet types = field->possible_types();
for (FieldTypeSet::const_iterator type = types.begin();
type != types.end(); type++) {
buzz::XmlElement *field_element = new buzz::XmlElement(
buzz::QName(kXMLElementField));
field_element->SetAttr(buzz::QName(kAttributeSignature),
field->FieldSignature());
field_element->SetAttr(buzz::QName(kAttributeAutoFillType),
IntToString(*type));
encompassing_xml_element->AddElement(field_element);
}
} else {
buzz::XmlElement *field_element = new buzz::XmlElement(
buzz::QName(kXMLElementField));
field_element->SetAttr(buzz::QName(kAttributeSignature),
field->FieldSignature());
encompassing_xml_element->AddElement(field_element);
}
}
return true;
}
|