blob: 1f72025b3656cdac3f389cbbec65578280def0d5 [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#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
Darin Petkov85ced132010-09-01 10:20:56 -070014#include <base/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;
49 off_t size;
50 bool needs_admin;
51 bool prompt;
Andrew de los Reyes3270f742010-07-15 22:28:14 -070052 bool is_delta;
rspangler@google.com49fdf182009-10-10 00:57:34 +000053};
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 {
60 enum Type {
61 kTypeUnknown = 0,
62 kTypeDownloadComplete = 1,
63 kTypeInstallComplete = 2,
64 kTypeUpdateComplete = 3,
Darin Petkov8c2980e2010-07-16 15:16:49 -070065 kTypeUpdateDownloadStarted = 13,
66 kTypeUpdateDownloadFinished = 14,
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070067 };
68
69 enum Result {
70 kResultError = 0,
71 kResultSuccess = 1,
72 };
73
74 OmahaEvent()
75 : type(kTypeUnknown),
76 result(kResultError),
Darin Petkove17f86b2010-07-20 09:12:01 -070077 error_code(kActionCodeError) {}
78 explicit OmahaEvent(Type in_type)
79 : type(in_type),
80 result(kResultSuccess),
81 error_code(kActionCodeSuccess) {}
82 OmahaEvent(Type in_type, Result in_result, ActionExitCode in_error_code)
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070083 : type(in_type),
84 result(in_result),
85 error_code(in_error_code) {}
86
87 Type type;
88 Result result;
Darin Petkove17f86b2010-07-20 09:12:01 -070089 ActionExitCode error_code;
Darin Petkov0dc8e9a2010-07-14 14:51:57 -070090};
91
rspangler@google.com49fdf182009-10-10 00:57:34 +000092class NoneType;
Darin Petkova4a8a8c2010-07-15 22:21:12 -070093class OmahaRequestAction;
94struct OmahaRequestParams;
Darin Petkov1cbd78f2010-07-29 12:38:34 -070095class PrefsInterface;
rspangler@google.com49fdf182009-10-10 00:57:34 +000096
97template<>
Darin Petkov6a5b3222010-07-13 14:55:28 -070098class ActionTraits<OmahaRequestAction> {
rspangler@google.com49fdf182009-10-10 00:57:34 +000099 public:
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700100 // Takes parameters on the input pipe.
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700101 typedef NoneType InputObjectType;
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700102 // On UpdateCheck success, puts the Omaha response on output. Event
103 // requests do not have an output pipe.
Darin Petkov6a5b3222010-07-13 14:55:28 -0700104 typedef OmahaResponse OutputObjectType;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000105};
106
Darin Petkov6a5b3222010-07-13 14:55:28 -0700107class OmahaRequestAction : public Action<OmahaRequestAction>,
108 public HttpFetcherDelegate {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000109 public:
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700110 static const int kNeverPinged = -1;
111 static const int kPingTimeJump = -2;
112
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700113 // The ctor takes in all the parameters that will be used for making
114 // the request to Omaha. For some of them we have constants that
115 // should be used.
116 //
rspangler@google.com49fdf182009-10-10 00:57:34 +0000117 // Takes ownership of the passed in HttpFetcher. Useful for testing.
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700118 //
119 // Takes ownership of the passed in OmahaEvent. If |event| is NULL,
120 // this is an UpdateCheck request, otherwise it's an Event request.
121 // Event requests always succeed.
122 //
rspangler@google.com49fdf182009-10-10 00:57:34 +0000123 // A good calling pattern is:
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700124 // OmahaRequestAction(..., new OmahaEvent(...), new WhateverHttpFetcher);
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700125 // or
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700126 // OmahaRequestAction(..., NULL, new WhateverHttpFetcher);
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700127 OmahaRequestAction(PrefsInterface* prefs,
128 const OmahaRequestParams& params,
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700129 OmahaEvent* event,
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700130 HttpFetcher* http_fetcher);
Darin Petkov6a5b3222010-07-13 14:55:28 -0700131 virtual ~OmahaRequestAction();
132 typedef ActionTraits<OmahaRequestAction>::InputObjectType InputObjectType;
133 typedef ActionTraits<OmahaRequestAction>::OutputObjectType OutputObjectType;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000134 void PerformAction();
135 void TerminateProcessing();
136
Darin Petkov1023a602010-08-30 13:47:51 -0700137 int GetHTTPResponseCode() { return http_fetcher_->http_response_code(); }
138
rspangler@google.com49fdf182009-10-10 00:57:34 +0000139 // Debugging/logging
Darin Petkov6a5b3222010-07-13 14:55:28 -0700140 static std::string StaticType() { return "OmahaRequestAction"; }
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000141 std::string Type() const { return StaticType(); }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000142
143 // Delegate methods (see http_fetcher.h)
144 virtual void ReceivedBytes(HttpFetcher *fetcher,
145 const char* bytes, int length);
146 virtual void TransferComplete(HttpFetcher *fetcher, bool successful);
147
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700148 // Returns true if this is an Event request, false if it's an UpdateCheck.
149 bool IsEvent() const { return event_.get() != NULL; }
150
rspangler@google.com49fdf182009-10-10 00:57:34 +0000151 private:
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700152 // If this is an update check request, initializes
153 // |ping_active_days_| and |ping_roll_call_days_| to values that may
154 // be sent as pings to Omaha.
155 void InitPingDays();
156
Darin Petkov84c763c2010-07-29 16:27:58 -0700157 // Based on the persistent preference store values, calculates the
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700158 // number of days since the last ping sent for |key|.
159 int CalculatePingDays(const std::string& key);
160
161 // Access to the preferences store.
162 PrefsInterface* prefs_;
163
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700164 // These are data that are passed in the request to the Omaha server.
165 const OmahaRequestParams& params_;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000166
Darin Petkov0dc8e9a2010-07-14 14:51:57 -0700167 // Pointer to the OmahaEvent info. This is an UpdateCheck request if NULL.
168 scoped_ptr<OmahaEvent> event_;
169
rspangler@google.com49fdf182009-10-10 00:57:34 +0000170 // pointer to the HttpFetcher that does the http work
171 scoped_ptr<HttpFetcher> http_fetcher_;
172
173 // Stores the response from the omaha server
174 std::vector<char> response_buffer_;
175
Darin Petkov1cbd78f2010-07-29 12:38:34 -0700176 // Initialized by InitPingDays to values that may be sent to Omaha
177 // as part of a ping message. Note that only positive values and -1
178 // are sent to Omaha.
179 int ping_active_days_;
180 int ping_roll_call_days_;
181
Darin Petkov6a5b3222010-07-13 14:55:28 -0700182 DISALLOW_COPY_AND_ASSIGN(OmahaRequestAction);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000183};
184
185} // namespace chromeos_update_engine
186
Darin Petkov6a5b3222010-07-13 14:55:28 -0700187#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_OMAHA_REQUEST_ACTION_H__