blob: cca2094dfa5188d45e4e89151fa828f0110074c2 [file] [log] [blame]
Darin Petkova4a8a8c2010-07-15 22:21:12 -07001// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
rspangler@google.com49fdf182009-10-10 00:57:34 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Darin Petkov6a5b3222010-07-13 14:55:28 -07005#include "update_engine/omaha_request_action.h"
Andrew de los Reyes08c4e272010-04-15 14:02:17 -07006#include <inttypes.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +00007#include <sstream>
8
9#include <libxml/parser.h>
10#include <libxml/xpath.h>
11#include <libxml/xpathInternals.h>
12
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070013#include "base/string_util.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +000014#include "chromeos/obsolete_logging.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000015#include "update_engine/action_pipe.h"
Darin Petkova4a8a8c2010-07-15 22:21:12 -070016#include "update_engine/omaha_request_params.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +000017#include "update_engine/utils.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000018
19using std::string;
20
21namespace chromeos_update_engine {
22
rspangler@google.com49fdf182009-10-10 00:57:34 +000023namespace {
24
25const string kGupdateVersion("ChromeOSUpdateEngine-0.1.0.0");
26
27// This is handy for passing strings into libxml2
28#define ConstXMLStr(x) (reinterpret_cast<const xmlChar*>(x))
29
30// These are for scoped_ptr_malloc, which is like scoped_ptr, but allows
31// a custom free() function to be specified.
32class ScopedPtrXmlDocFree {
33 public:
34 inline void operator()(void* x) const {
35 xmlFreeDoc(reinterpret_cast<xmlDoc*>(x));
36 }
37};
38class ScopedPtrXmlFree {
39 public:
40 inline void operator()(void* x) const {
41 xmlFree(x);
42 }
43};
44class ScopedPtrXmlXPathObjectFree {
45 public:
46 inline void operator()(void* x) const {
47 xmlXPathFreeObject(reinterpret_cast<xmlXPathObject*>(x));
48 }
49};
50class ScopedPtrXmlXPathContextFree {
51 public:
52 inline void operator()(void* x) const {
53 xmlXPathFreeContext(reinterpret_cast<xmlXPathContext*>(x));
54 }
55};
56
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070057string FormatRequest(const OmahaEvent* event,
58 const OmahaRequestParams& params) {
59 string body;
60 if (event == NULL) {
61 body = string(
62 " <o:ping active=\"0\"></o:ping>\n"
63 " <o:updatecheck></o:updatecheck>\n");
64 } else {
Darin Petkove17f86b2010-07-20 09:12:01 -070065 // The error code is an optional attribute so append it only if
66 // the result is not success.
67 string error_code;
68 if (event->result != OmahaEvent::kResultSuccess) {
69 error_code = StringPrintf(" errorcode=\"%d\"", event->error_code);
70 }
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070071 body = StringPrintf(
Darin Petkove17f86b2010-07-20 09:12:01 -070072 " <o:event eventtype=\"%d\" eventresult=\"%d\"%s></o:event>\n",
73 event->type, event->result, error_code.c_str());
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070074 }
rspangler@google.com49fdf182009-10-10 00:57:34 +000075 return string("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
Darin Petkov6a5b3222010-07-13 14:55:28 -070076 "<o:gupdate xmlns:o=\"http://www.google.com/update2/request\" "
77 "version=\"" + XmlEncode(kGupdateVersion) + "\" "
78 "updaterversion=\"" + XmlEncode(kGupdateVersion) + "\" "
79 "protocol=\"2.0\" "
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070080 "machineid=\"") + XmlEncode(params.machine_id) +
81 "\" ismachine=\"1\" userid=\"" + XmlEncode(params.user_id) + "\">\n"
rspangler@google.com49fdf182009-10-10 00:57:34 +000082 " <o:os version=\"" + XmlEncode(params.os_version) + "\" platform=\"" +
83 XmlEncode(params.os_platform) + "\" sp=\"" +
84 XmlEncode(params.os_sp) + "\"></o:os>\n"
85 " <o:app appid=\"" + XmlEncode(params.app_id) + "\" version=\"" +
86 XmlEncode(params.app_version) + "\" "
87 "lang=\"" + XmlEncode(params.app_lang) + "\" track=\"" +
Andrew de los Reyes37c20322010-06-30 13:27:19 -070088 XmlEncode(params.app_track) + "\" board=\"" +
Andrew de los Reyes3f0303a2010-07-15 22:35:35 -070089 XmlEncode(params.os_board) + "\" delta_okay=\"" +
90 (params.delta_okay ? "true" : "false") + "\">\n" + body +
rspangler@google.com49fdf182009-10-10 00:57:34 +000091 " </o:app>\n"
92 "</o:gupdate>\n";
93}
94} // namespace {}
95
96// Encodes XML entities in a given string with libxml2. input must be
97// UTF-8 formatted. Output will be UTF-8 formatted.
98string XmlEncode(const string& input) {
Darin Petkov6a5b3222010-07-13 14:55:28 -070099 // // TODO(adlr): if allocating a new xmlDoc each time is taking up too much
100 // // cpu, considering creating one and caching it.
101 // scoped_ptr_malloc<xmlDoc, ScopedPtrXmlDocFree> xml_doc(
102 // xmlNewDoc(ConstXMLStr("1.0")));
103 // if (!xml_doc.get()) {
104 // LOG(ERROR) << "Unable to create xmlDoc";
105 // return "";
106 // }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000107 scoped_ptr_malloc<xmlChar, ScopedPtrXmlFree> str(
108 xmlEncodeEntitiesReentrant(NULL, ConstXMLStr(input.c_str())));
109 return string(reinterpret_cast<const char *>(str.get()));
110}
111
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700112OmahaRequestAction::OmahaRequestAction(const OmahaRequestParams& params,
113 OmahaEvent* event,
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700114 HttpFetcher* http_fetcher)
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700115 : params_(params),
116 event_(event),
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700117 http_fetcher_(http_fetcher) {}
rspangler@google.com49fdf182009-10-10 00:57:34 +0000118
Darin Petkov6a5b3222010-07-13 14:55:28 -0700119OmahaRequestAction::~OmahaRequestAction() {}
rspangler@google.com49fdf182009-10-10 00:57:34 +0000120
Darin Petkov6a5b3222010-07-13 14:55:28 -0700121void OmahaRequestAction::PerformAction() {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000122 http_fetcher_->set_delegate(this);
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700123 string request_post(FormatRequest(event_.get(), params_));
rspangler@google.com49fdf182009-10-10 00:57:34 +0000124 http_fetcher_->SetPostData(request_post.data(), request_post.size());
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700125 LOG(INFO) << "Posting an Omaha request to " << params_.update_url;
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700126 LOG(INFO) << "Request: " << request_post;
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700127 http_fetcher_->BeginTransfer(params_.update_url);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000128}
129
Darin Petkov6a5b3222010-07-13 14:55:28 -0700130void OmahaRequestAction::TerminateProcessing() {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000131 http_fetcher_->TerminateTransfer();
132}
133
134// We just store the response in the buffer. Once we've received all bytes,
135// we'll look in the buffer and decide what to do.
Darin Petkov6a5b3222010-07-13 14:55:28 -0700136void OmahaRequestAction::ReceivedBytes(HttpFetcher *fetcher,
137 const char* bytes,
138 int length) {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000139 response_buffer_.reserve(response_buffer_.size() + length);
140 response_buffer_.insert(response_buffer_.end(), bytes, bytes + length);
141}
142
143namespace {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000144// If non-NULL response, caller is responsible for calling xmlXPathFreeObject()
145// on the returned object.
146// This code is roughly based on the libxml tutorial at:
147// http://xmlsoft.org/tutorial/apd.html
148xmlXPathObject* GetNodeSet(xmlDoc* doc, const xmlChar* xpath,
149 const xmlChar* ns, const xmlChar* ns_url) {
150 xmlXPathObject* result = NULL;
151
152 scoped_ptr_malloc<xmlXPathContext, ScopedPtrXmlXPathContextFree> context(
153 xmlXPathNewContext(doc));
154 if (!context.get()) {
155 LOG(ERROR) << "xmlXPathNewContext() returned NULL";
156 return NULL;
157 }
158 if (xmlXPathRegisterNs(context.get(), ns, ns_url) < 0) {
159 LOG(ERROR) << "xmlXPathRegisterNs() returned error";
160 return NULL;
161 }
162
163 result = xmlXPathEvalExpression(xpath, context.get());
164
165 if (result == NULL) {
166 LOG(ERROR) << "xmlXPathEvalExpression returned error";
167 return NULL;
168 }
169 if(xmlXPathNodeSetIsEmpty(result->nodesetval)){
170 LOG(INFO) << "xpath not found in doc";
171 xmlXPathFreeObject(result);
172 return NULL;
173 }
174 return result;
175}
176
177// Returns the string value of a named attribute on a node, or empty string
178// if no such node exists. If the attribute exists and has a value of
179// empty string, there's no way to distinguish that from the attribute
180// not existing.
181string XmlGetProperty(xmlNode* node, const char* name) {
182 if (!xmlHasProp(node, ConstXMLStr(name)))
183 return "";
184 scoped_ptr_malloc<xmlChar, ScopedPtrXmlFree> str(
185 xmlGetProp(node, ConstXMLStr(name)));
186 string ret(reinterpret_cast<const char *>(str.get()));
187 return ret;
188}
189
190// Parses a 64 bit base-10 int from a string and returns it. Returns 0
191// on error. If the string contains "0", that's indistinguishable from
192// error.
193off_t ParseInt(const string& str) {
194 off_t ret = 0;
Andrew de los Reyes08c4e272010-04-15 14:02:17 -0700195 int rc = sscanf(str.c_str(), "%" PRIi64, &ret);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000196 if (rc < 1) {
197 // failure
198 return 0;
199 }
200 return ret;
201}
202} // namespace {}
203
204// If the transfer was successful, this uses libxml2 to parse the response
205// and fill in the appropriate fields of the output object. Also, notifies
206// the processor that we're done.
Darin Petkov6a5b3222010-07-13 14:55:28 -0700207void OmahaRequestAction::TransferComplete(HttpFetcher *fetcher,
208 bool successful) {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000209 ScopedActionCompleter completer(processor_, this);
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700210 LOG(INFO) << "Omaha request response: " << string(response_buffer_.begin(),
211 response_buffer_.end());
212
213 // Events are best effort transactions -- assume they always succeed.
214 if (IsEvent()) {
215 CHECK(!HasOutputPipe()) << "No output pipe allowed for event requests.";
Darin Petkovc1a8b422010-07-19 11:34:49 -0700216 completer.set_code(kActionCodeSuccess);
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700217 return;
218 }
219
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700220 if (!successful) {
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700221 LOG(ERROR) << "Omaha request network transfer failed.";
rspangler@google.com49fdf182009-10-10 00:57:34 +0000222 return;
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700223 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000224 if (!HasOutputPipe()) {
225 // Just set success to whether or not the http transfer succeeded,
226 // which must be true at this point in the code.
Darin Petkovc1a8b422010-07-19 11:34:49 -0700227 completer.set_code(kActionCodeSuccess);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000228 return;
229 }
230
231 // parse our response and fill the fields in the output object
232 scoped_ptr_malloc<xmlDoc, ScopedPtrXmlDocFree> doc(
233 xmlParseMemory(&response_buffer_[0], response_buffer_.size()));
234 if (!doc.get()) {
235 LOG(ERROR) << "Omaha response not valid XML";
236 return;
237 }
238
239 static const char* kNamespace("x");
240 static const char* kUpdatecheckNodeXpath("/x:gupdate/x:app/x:updatecheck");
241 static const char* kNsUrl("http://www.google.com/update2/response");
242
243 scoped_ptr_malloc<xmlXPathObject, ScopedPtrXmlXPathObjectFree>
244 xpath_nodeset(GetNodeSet(doc.get(),
245 ConstXMLStr(kUpdatecheckNodeXpath),
246 ConstXMLStr(kNamespace),
247 ConstXMLStr(kNsUrl)));
248 if (!xpath_nodeset.get()) {
249 return;
250 }
251 xmlNodeSet* nodeset = xpath_nodeset->nodesetval;
252 CHECK(nodeset) << "XPath missing NodeSet";
253 CHECK_GE(nodeset->nodeNr, 1);
254
255 xmlNode* updatecheck_node = nodeset->nodeTab[0];
256 // get status
257 if (!xmlHasProp(updatecheck_node, ConstXMLStr("status"))) {
258 LOG(ERROR) << "Response missing status";
259 return;
260 }
261
262 const string status(XmlGetProperty(updatecheck_node, "status"));
Darin Petkov6a5b3222010-07-13 14:55:28 -0700263 OmahaResponse output_object;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000264 if (status == "noupdate") {
265 LOG(INFO) << "No update.";
266 output_object.update_exists = false;
267 SetOutputObject(output_object);
Darin Petkovc1a8b422010-07-19 11:34:49 -0700268 completer.set_code(kActionCodeSuccess);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000269 return;
270 }
271
272 if (status != "ok") {
273 LOG(ERROR) << "Unknown status: " << status;
274 return;
275 }
276
277 // In best-effort fashion, fetch the rest of the expected attributes
278 // from the updatecheck node, then return the object
279 output_object.update_exists = true;
Darin Petkovc1a8b422010-07-19 11:34:49 -0700280 completer.set_code(kActionCodeSuccess);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000281
282 output_object.display_version =
283 XmlGetProperty(updatecheck_node, "DisplayVersion");
284 output_object.codebase = XmlGetProperty(updatecheck_node, "codebase");
285 output_object.more_info_url = XmlGetProperty(updatecheck_node, "MoreInfo");
286 output_object.hash = XmlGetProperty(updatecheck_node, "hash");
287 output_object.size = ParseInt(XmlGetProperty(updatecheck_node, "size"));
288 output_object.needs_admin =
289 XmlGetProperty(updatecheck_node, "needsadmin") == "true";
290 output_object.prompt = XmlGetProperty(updatecheck_node, "Prompt") == "true";
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700291 output_object.is_delta =
292 XmlGetProperty(updatecheck_node, "IsDelta") == "true";
rspangler@google.com49fdf182009-10-10 00:57:34 +0000293 SetOutputObject(output_object);
294 return;
295}
296
297}; // namespace chromeos_update_engine