blob: b3df2073cc44eecc6142e6ff1a21b652d664e9ce [file] [log] [blame]
Darin Petkov7ed561b2011-10-04 02:59:03 -07001// Copyright (c) 2011 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#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_OMAHA_REQUEST_ACTION_H__
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_OMAHA_REQUEST_ACTION_H__
rspangler@google.com49fdf182009-10-10 00:57:34 +00007
rspangler@google.com49fdf182009-10-10 00:57:34 +00008#include <sys/stat.h>
Andrew de los Reyes09e56d62010-04-23 13:45:53 -07009#include <sys/types.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +000010#include <fcntl.h>
11
12#include <string>
13
Chris Masoned903c3b2011-05-12 15:35:46 -070014#include <base/memory/scoped_ptr.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +000015#include <curl/curl.h>
16
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070017#include "update_engine/action.h"
18#include "update_engine/http_fetcher.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000019
Darin Petkov6a5b3222010-07-13 14:55:28 -070020// The Omaha Request action makes a request to Omaha and can output
21// the response on the output ActionPipe.
rspangler@google.com49fdf182009-10-10 00:57:34 +000022
rspangler@google.com49fdf182009-10-10 00:57:34 +000023namespace chromeos_update_engine {
24
25// Encodes XML entities in a given string with libxml2. input must be
26// UTF-8 formatted. Output will be UTF-8 formatted.
27std::string XmlEncode(const std::string& input);
28
Darin Petkov6a5b3222010-07-13 14:55:28 -070029// This struct encapsulates the data Omaha's response for the request.
rspangler@google.com49fdf182009-10-10 00:57:34 +000030// These strings in this struct are not XML escaped.
Darin Petkov6a5b3222010-07-13 14:55:28 -070031struct OmahaResponse {
32 OmahaResponse()
Darin Petkov85ced132010-09-01 10:20:56 -070033 : update_exists(false),
34 poll_interval(0),
35 size(0),
36 needs_admin(false),
37 prompt(false) {}
rspangler@google.com49fdf182009-10-10 00:57:34 +000038 // True iff there is an update to be downloaded.
39 bool update_exists;
40
Darin Petkov85ced132010-09-01 10:20:56 -070041 // If non-zero, server-dictated poll frequency in seconds.
42 int poll_interval;
43
rspangler@google.com49fdf182009-10-10 00:57:34 +000044 // These are only valid if update_exists is true:
45 std::string display_version;
46 std::string codebase;
47 std::string more_info_url;
48 std::string hash;
Darin Petkov6c118642010-10-21 12:06:30 -070049 std::string deadline;
rspangler@google.com49fdf182009-10-10 00:57:34 +000050 off_t size;
51 bool needs_admin;
52 bool prompt;
53};
54COMPILE_ASSERT(sizeof(off_t) == 8, off_t_not_64bit);
55
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070056// This struct encapsulates the Omaha event information. For a
57// complete list of defined event types and results, see
58// http://code.google.com/p/omaha/wiki/ServerProtocol#event
59struct OmahaEvent {
Jay Srinivasan56d5aa42012-03-26 14:27:59 -070060 // The Type values correspond to EVENT_TYPE values of Omaha.
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070061 enum Type {
62 kTypeUnknown = 0,
63 kTypeDownloadComplete = 1,
64 kTypeInstallComplete = 2,
65 kTypeUpdateComplete = 3,
Darin Petkov8c2980e2010-07-16 15:16:49 -070066 kTypeUpdateDownloadStarted = 13,
67 kTypeUpdateDownloadFinished = 14,
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070068 };
69
Jay Srinivasan56d5aa42012-03-26 14:27:59 -070070 // The Result values correspond to EVENT_RESULT values of Omaha.
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070071 enum Result {
72 kResultError = 0,
73 kResultSuccess = 1,
Darin Petkov95508da2011-01-05 12:42:29 -080074 kResultSuccessReboot = 2,
Jay Srinivasan56d5aa42012-03-26 14:27:59 -070075 kResultUpdateDeferred = 9, // When we ignore/defer updates due to policy.
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070076 };
77
78 OmahaEvent()
79 : type(kTypeUnknown),
80 result(kResultError),
Darin Petkove17f86b2010-07-20 09:12:01 -070081 error_code(kActionCodeError) {}
82 explicit OmahaEvent(Type in_type)
83 : type(in_type),
84 result(kResultSuccess),
85 error_code(kActionCodeSuccess) {}
86 OmahaEvent(Type in_type, Result in_result, ActionExitCode in_error_code)
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070087 : type(in_type),
88 result(in_result),
89 error_code(in_error_code) {}
90
91 Type type;
92 Result result;
Darin Petkove17f86b2010-07-20 09:12:01 -070093 ActionExitCode error_code;
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070094};
95
rspangler@google.com49fdf182009-10-10 00:57:34 +000096class NoneType;
Darin Petkova4a8a8c2010-07-15 22:21:12 -070097class OmahaRequestAction;
98struct OmahaRequestParams;
Darin Petkov1cbd78f2010-07-29 12:38:34 -070099class PrefsInterface;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000100
101template<>
Darin Petkov6a5b3222010-07-13 14:55:28 -0700102class ActionTraits<OmahaRequestAction> {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000103 public:
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700104 // Takes parameters on the input pipe.
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700105 typedef NoneType InputObjectType;
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700106 // On UpdateCheck success, puts the Omaha response on output. Event
107 // requests do not have an output pipe.
Darin Petkov6a5b3222010-07-13 14:55:28 -0700108 typedef OmahaResponse OutputObjectType;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000109};
110
Darin Petkov6a5b3222010-07-13 14:55:28 -0700111class OmahaRequestAction : public Action<OmahaRequestAction>,
112 public HttpFetcherDelegate {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000113 public:
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700114 static const int kNeverPinged = -1;
115 static const int kPingTimeJump = -2;
116
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700117 // The ctor takes in all the parameters that will be used for making
118 // the request to Omaha. For some of them we have constants that
119 // should be used.
120 //
rspangler@google.com49fdf182009-10-10 00:57:34 +0000121 // Takes ownership of the passed in HttpFetcher. Useful for testing.
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700122 //
123 // Takes ownership of the passed in OmahaEvent. If |event| is NULL,
124 // this is an UpdateCheck request, otherwise it's an Event request.
125 // Event requests always succeed.
126 //
rspangler@google.com49fdf182009-10-10 00:57:34 +0000127 // A good calling pattern is:
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700128 // OmahaRequestAction(..., new OmahaEvent(...), new WhateverHttpFetcher);
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700129 // or
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700130 // OmahaRequestAction(..., NULL, new WhateverHttpFetcher);
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700131 OmahaRequestAction(PrefsInterface* prefs,
132 const OmahaRequestParams& params,
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700133 OmahaEvent* event,
Thieu Le116fda32011-04-19 11:01:54 -0700134 HttpFetcher* http_fetcher,
135 bool ping_only);
Darin Petkov6a5b3222010-07-13 14:55:28 -0700136 virtual ~OmahaRequestAction();
137 typedef ActionTraits<OmahaRequestAction>::InputObjectType InputObjectType;
138 typedef ActionTraits<OmahaRequestAction>::OutputObjectType OutputObjectType;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000139 void PerformAction();
140 void TerminateProcessing();
141
Darin Petkov1023a602010-08-30 13:47:51 -0700142 int GetHTTPResponseCode() { return http_fetcher_->http_response_code(); }
143
rspangler@google.com49fdf182009-10-10 00:57:34 +0000144 // Debugging/logging
Darin Petkov6a5b3222010-07-13 14:55:28 -0700145 static std::string StaticType() { return "OmahaRequestAction"; }
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000146 std::string Type() const { return StaticType(); }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000147
148 // Delegate methods (see http_fetcher.h)
149 virtual void ReceivedBytes(HttpFetcher *fetcher,
150 const char* bytes, int length);
151 virtual void TransferComplete(HttpFetcher *fetcher, bool successful);
152
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700153 // Returns true if this is an Event request, false if it's an UpdateCheck.
154 bool IsEvent() const { return event_.get() != NULL; }
155
rspangler@google.com49fdf182009-10-10 00:57:34 +0000156 private:
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700157 // If this is an update check request, initializes
158 // |ping_active_days_| and |ping_roll_call_days_| to values that may
159 // be sent as pings to Omaha.
160 void InitPingDays();
161
Darin Petkov84c763c2010-07-29 16:27:58 -0700162 // Based on the persistent preference store values, calculates the
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700163 // number of days since the last ping sent for |key|.
164 int CalculatePingDays(const std::string& key);
165
166 // Access to the preferences store.
167 PrefsInterface* prefs_;
168
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700169 // These are data that are passed in the request to the Omaha server.
170 const OmahaRequestParams& params_;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000171
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700172 // Pointer to the OmahaEvent info. This is an UpdateCheck request if NULL.
173 scoped_ptr<OmahaEvent> event_;
174
rspangler@google.com49fdf182009-10-10 00:57:34 +0000175 // pointer to the HttpFetcher that does the http work
176 scoped_ptr<HttpFetcher> http_fetcher_;
177
Thieu Le116fda32011-04-19 11:01:54 -0700178 // If true, only include the <ping> element in the request.
179 bool ping_only_;
180
rspangler@google.com49fdf182009-10-10 00:57:34 +0000181 // Stores the response from the omaha server
182 std::vector<char> response_buffer_;
183
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700184 // Initialized by InitPingDays to values that may be sent to Omaha
185 // as part of a ping message. Note that only positive values and -1
186 // are sent to Omaha.
187 int ping_active_days_;
188 int ping_roll_call_days_;
189
Darin Petkov6a5b3222010-07-13 14:55:28 -0700190 DISALLOW_COPY_AND_ASSIGN(OmahaRequestAction);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000191};
192
193} // namespace chromeos_update_engine
194
Darin Petkov6a5b3222010-07-13 14:55:28 -0700195#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_OMAHA_REQUEST_ACTION_H__