1 // Copyright 2013 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.
5 #include "chrome/browser/component_updater/update_response.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "base/stl_util.h"
9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/string_util.h"
11 #include "base/strings/stringprintf.h"
12 #include "base/version.h"
13 #include "libxml/tree.h"
14 #include "third_party/libxml/chromium/libxml_utils.h"
16 namespace component_updater
{
18 static const char* kExpectedResponseProtocol
= "3.0";
20 UpdateResponse::UpdateResponse() {}
21 UpdateResponse::~UpdateResponse() {}
23 UpdateResponse::Results::Results() : daystart_elapsed_seconds(kNoDaystart
) {}
24 UpdateResponse::Results::~Results() {}
26 UpdateResponse::Result::Result() {}
28 UpdateResponse::Result::~Result() {}
30 UpdateResponse::Result::Manifest::Manifest() {}
31 UpdateResponse::Result::Manifest::~Manifest() {}
33 UpdateResponse::Result::Manifest::Package::Package() : size(0), sizediff(0) {}
34 UpdateResponse::Result::Manifest::Package::~Package() {}
36 void UpdateResponse::ParseError(const char* details
, ...) {
38 va_start(args
, details
);
40 if (!errors_
.empty()) {
44 base::StringAppendV(&errors_
, details
, args
);
48 // Checks whether a given node's name matches |expected_name|.
49 static bool TagNameEquals(const xmlNode
* node
, const char* expected_name
) {
50 return 0 == strcmp(expected_name
, reinterpret_cast<const char*>(node
->name
));
53 // Returns child nodes of |root| with name |name|.
54 static std::vector
<xmlNode
*> GetChildren(xmlNode
* root
, const char* name
) {
55 std::vector
<xmlNode
*> result
;
56 for (xmlNode
* child
= root
->children
; child
!= NULL
; child
= child
->next
) {
57 if (!TagNameEquals(child
, name
)) {
60 result
.push_back(child
);
65 // Returns the value of a named attribute, or the empty string.
66 static std::string
GetAttribute(xmlNode
* node
, const char* attribute_name
) {
67 const xmlChar
* name
= reinterpret_cast<const xmlChar
*>(attribute_name
);
68 for (xmlAttr
* attr
= node
->properties
; attr
!= NULL
; attr
= attr
->next
) {
69 if (!xmlStrcmp(attr
->name
, name
) && attr
->children
&&
70 attr
->children
->content
) {
71 return std::string(reinterpret_cast<const char*>(
72 attr
->children
->content
));
78 // This is used for the xml parser to report errors. This assumes the context
79 // is a pointer to a std::string where the error message should be appended.
80 static void XmlErrorFunc(void *context
, const char *message
, ...) {
82 va_start(args
, message
);
83 std::string
* error
= static_cast<std::string
*>(context
);
84 base::StringAppendV(error
, message
, args
);
88 // Utility class for cleaning up the xml document when leaving a scope.
89 class ScopedXmlDocument
{
91 explicit ScopedXmlDocument(xmlDocPtr document
) : document_(document
) {}
92 ~ScopedXmlDocument() {
94 xmlFreeDoc(document_
);
105 // Parses the <package> tag.
106 bool ParsePackageTag(xmlNode
* package
,
107 UpdateResponse::Result
* result
,
108 std::string
* error
) {
109 UpdateResponse::Result::Manifest::Package p
;
110 p
.name
= GetAttribute(package
, "name");
111 if (p
.name
.empty()) {
112 *error
= "Missing name for package.";
116 p
.namediff
= GetAttribute(package
, "namediff");
118 // package_fingerprint is optional. It identifies the package, preferably
119 // with a modified sha256 hash of the package in hex format.
120 p
.fingerprint
= GetAttribute(package
, "fp");
122 p
.hash_sha256
= GetAttribute(package
, "hash_sha256");
124 if (base::StringToInt(GetAttribute(package
, "size"), &size
)) {
128 p
.hashdiff_sha256
= GetAttribute(package
, "hashdiff_sha256");
130 if (base::StringToInt(GetAttribute(package
, "sizediff"), &sizediff
)) {
131 p
.sizediff
= sizediff
;
134 result
->manifest
.packages
.push_back(p
);
139 // Parses the <manifest> tag.
140 bool ParseManifestTag(xmlNode
* manifest
,
141 UpdateResponse::Result
* result
,
142 std::string
* error
) {
144 result
->manifest
.version
= GetAttribute(manifest
, "version");
145 if (result
->manifest
.version
.empty()) {
146 *error
= "Missing version for manifest.";
149 Version
version(result
->manifest
.version
);
150 if (!version
.IsValid()) {
151 *error
= "Invalid version: '";
152 *error
+= result
->manifest
.version
;
157 // Get the minimum browser version (not required).
158 result
->manifest
.browser_min_version
=
159 GetAttribute(manifest
, "prodversionmin");
160 if (result
->manifest
.browser_min_version
.length()) {
161 Version
browser_min_version(result
->manifest
.browser_min_version
);
162 if (!browser_min_version
.IsValid()) {
163 *error
= "Invalid prodversionmin: '";
164 *error
+= result
->manifest
.browser_min_version
;
170 // Get the <packages> node.
171 std::vector
<xmlNode
*> packages
= GetChildren(manifest
, "packages");
172 if (packages
.empty()) {
173 *error
= "Missing packages tag on manifest.";
177 // Parse each of the <package> tags.
178 std::vector
<xmlNode
*> package
= GetChildren(packages
[0], "package");
179 for (size_t i
= 0; i
!= package
.size(); ++i
) {
180 if (!ParsePackageTag(package
[i
], result
, error
))
187 // Parses the <urls> tag and its children in the <updatecheck>.
188 bool ParseUrlsTag(xmlNode
* urls
,
189 UpdateResponse::Result
* result
,
190 std::string
* error
) {
191 // Get the url nodes.
192 std::vector
<xmlNode
*> url
= GetChildren(urls
, "url");
194 *error
= "Missing url tags on urls.";
198 // Get the list of urls for full and optionally, for diff updates.
199 // There can only be either a codebase or a codebasediff attribute in a tag.
200 for (size_t i
= 0; i
!= url
.size(); ++i
) {
201 // Find the url to the crx file.
202 const GURL
crx_url(GetAttribute(url
[i
], "codebase"));
203 if (crx_url
.is_valid()) {
204 result
->crx_urls
.push_back(crx_url
);
207 const GURL
crx_diffurl(GetAttribute(url
[i
], "codebasediff"));
208 if (crx_diffurl
.is_valid()) {
209 result
->crx_diffurls
.push_back(crx_diffurl
);
214 // Expect at least one url for full update.
215 if (result
->crx_urls
.empty()) {
216 *error
= "Missing valid url for full update.";
223 // Parses the <updatecheck> tag.
224 bool ParseUpdateCheckTag(xmlNode
* updatecheck
,
225 UpdateResponse::Result
* result
,
226 std::string
* error
) {
227 if (GetAttribute(updatecheck
, "status") == "noupdate") {
231 // Get the <urls> tag.
232 std::vector
<xmlNode
*> urls
= GetChildren(updatecheck
, "urls");
234 *error
= "Missing urls on updatecheck.";
238 if (!ParseUrlsTag(urls
[0], result
, error
)) {
242 std::vector
<xmlNode
*> manifests
= GetChildren(updatecheck
, "manifest");
244 *error
= "Missing urls on updatecheck.";
248 return ParseManifestTag(manifests
[0], result
, error
);
251 // Parses a single <app> tag.
252 bool ParseAppTag(xmlNode
* app
,
253 UpdateResponse::Result
* result
,
254 std::string
* error
) {
256 result
->extension_id
= GetAttribute(app
, "appid");
257 if (result
->extension_id
.empty()) {
258 *error
= "Missing appid on app node";
262 // Get the <updatecheck> tag.
263 std::vector
<xmlNode
*> updates
= GetChildren(app
, "updatecheck");
264 if (updates
.empty()) {
265 *error
= "Missing updatecheck on app.";
269 return ParseUpdateCheckTag(updates
[0], result
, error
);
272 bool UpdateResponse::Parse(const std::string
& response_xml
) {
273 results_
.daystart_elapsed_seconds
= kNoDaystart
;
274 results_
.list
.clear();
277 if (response_xml
.length() < 1) {
278 ParseError("Empty xml");
282 std::string xml_errors
;
283 ScopedXmlErrorFunc
error_func(&xml_errors
, &XmlErrorFunc
);
285 // Start up the xml parser with the manifest_xml contents.
286 ScopedXmlDocument
document(xmlParseDoc(
287 reinterpret_cast<const xmlChar
*>(response_xml
.c_str())));
288 if (!document
.get()) {
289 ParseError("%s", xml_errors
.c_str());
293 xmlNode
* root
= xmlDocGetRootElement(document
.get());
295 ParseError("Missing root node");
299 if (!TagNameEquals(root
, "response")) {
300 ParseError("Missing response tag");
304 // Check for the response "protocol" attribute.
305 if (GetAttribute(root
, "protocol") != kExpectedResponseProtocol
) {
306 ParseError("Missing/incorrect protocol on response tag "
307 "(expected '%s')", kExpectedResponseProtocol
);
311 // Parse the first <daystart> if it is present.
312 std::vector
<xmlNode
*> daystarts
= GetChildren(root
, "daystart");
313 if (!daystarts
.empty()) {
314 xmlNode
* first
= daystarts
[0];
315 std::string elapsed_seconds
= GetAttribute(first
, "elapsed_seconds");
316 int parsed_elapsed
= kNoDaystart
;
317 if (base::StringToInt(elapsed_seconds
, &parsed_elapsed
)) {
318 results_
.daystart_elapsed_seconds
= parsed_elapsed
;
322 // Parse each of the <app> tags.
323 std::vector
<xmlNode
*> apps
= GetChildren(root
, "app");
324 for (size_t i
= 0; i
!= apps
.size(); ++i
) {
327 if (ParseAppTag(apps
[i
], &result
, &error
)) {
328 results_
.list
.push_back(result
);
330 ParseError("%s", error
.c_str());
337 } // namespace component_updater