blob: 3a7dfe824d2284cd3eca1931fcbac830da39c30b [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// Copyright (c) 2009 The Chromium OS 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.
4
adlr@google.comc98a7ed2009-12-04 18:54:03 +00005#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_DOWNLOAD_ACTION_H__
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_DOWNLOAD_ACTION_H__
rspangler@google.com49fdf182009-10-10 00:57:34 +00007
8#include <sys/types.h>
9#include <sys/stat.h>
10#include <fcntl.h>
11
rspangler@google.com49fdf182009-10-10 00:57:34 +000012#include <string>
13
Darin Petkove971f332010-09-22 16:57:25 -070014#include <base/scoped_ptr.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +000015#include <curl/curl.h>
Andrew de los Reyes21816e12011-04-07 14:18:56 -070016#include <google/protobuf/stubs/common.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +000017
rspangler@google.com49fdf182009-10-10 00:57:34 +000018#include "update_engine/action.h"
19#include "update_engine/decompressing_file_writer.h"
Andrew de los Reyesf9185172010-05-03 11:07:05 -070020#include "update_engine/delta_performer.h"
Darin Petkove971f332010-09-22 16:57:25 -070021#include "update_engine/buffered_file_writer.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000022#include "update_engine/http_fetcher.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +000023#include "update_engine/install_plan.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000024#include "update_engine/omaha_hash_calculator.h"
Andrew de los Reyesf9185172010-05-03 11:07:05 -070025#include "update_engine/split_file_writer.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000026
Andrew de los Reyesf9185172010-05-03 11:07:05 -070027// The Download Action downloads a specified url to disk. The url should
28// point to either a full or delta update. If a full update, the file will
29// be piped into a SplitFileWriter, which will direct it to the kernel
30// and rootfs partitions. If it's a delta update, the destination kernel
31// and rootfs should already contain the source-version that this delta
32// update goes from. In this case, the update will be piped into a
33// DeltaPerformer that will apply the delta to the disk.
rspangler@google.com49fdf182009-10-10 00:57:34 +000034
rspangler@google.com49fdf182009-10-10 00:57:34 +000035namespace chromeos_update_engine {
36
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070037class DownloadActionDelegate {
38 public:
Darin Petkov9d911fa2010-08-19 09:36:08 -070039 // Called right before starting the download with |active| set to
40 // true. Called after completing the download with |active| set to
41 // false.
42 virtual void SetDownloadStatus(bool active) = 0;
43
44 // Called periodically after bytes are received. This method will be
45 // invoked only if the download is active. |bytes_received| is the
46 // number of bytes downloaded thus far. |total| is the number of
47 // bytes expected.
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070048 virtual void BytesReceived(uint64_t bytes_received, uint64_t total) = 0;
49};
50
rspangler@google.com49fdf182009-10-10 00:57:34 +000051class DownloadAction;
52class NoneType;
Darin Petkov73058b42010-10-06 16:32:19 -070053class PrefsInterface;
rspangler@google.com49fdf182009-10-10 00:57:34 +000054
55template<>
56class ActionTraits<DownloadAction> {
57 public:
adlr@google.comc98a7ed2009-12-04 18:54:03 +000058 // Takes and returns an InstallPlan
59 typedef InstallPlan InputObjectType;
60 typedef InstallPlan OutputObjectType;
rspangler@google.com49fdf182009-10-10 00:57:34 +000061};
62
63class DownloadAction : public Action<DownloadAction>,
64 public HttpFetcherDelegate {
65 public:
66 // Takes ownership of the passed in HttpFetcher. Useful for testing.
67 // A good calling pattern is:
adlr@google.comc98a7ed2009-12-04 18:54:03 +000068 // DownloadAction(new WhateverHttpFetcher);
Darin Petkov73058b42010-10-06 16:32:19 -070069 DownloadAction(PrefsInterface* prefs, HttpFetcher* http_fetcher);
rspangler@google.com49fdf182009-10-10 00:57:34 +000070 virtual ~DownloadAction();
71 typedef ActionTraits<DownloadAction>::InputObjectType InputObjectType;
72 typedef ActionTraits<DownloadAction>::OutputObjectType OutputObjectType;
73 void PerformAction();
74 void TerminateProcessing();
75
Andrew de los Reyesf9185172010-05-03 11:07:05 -070076 // Testing
77 void SetTestFileWriter(FileWriter* writer) {
78 writer_ = writer;
79 }
80
Darin Petkov1023a602010-08-30 13:47:51 -070081 int GetHTTPResponseCode() { return http_fetcher_->http_response_code(); }
82
rspangler@google.com49fdf182009-10-10 00:57:34 +000083 // Debugging/logging
adlr@google.comc98a7ed2009-12-04 18:54:03 +000084 static std::string StaticType() { return "DownloadAction"; }
85 std::string Type() const { return StaticType(); }
rspangler@google.com49fdf182009-10-10 00:57:34 +000086
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070087 // HttpFetcherDelegate methods (see http_fetcher.h)
rspangler@google.com49fdf182009-10-10 00:57:34 +000088 virtual void ReceivedBytes(HttpFetcher *fetcher,
89 const char* bytes, int length);
Andrew de los Reyes34e41a12010-10-26 20:07:58 -070090 virtual void SeekToOffset(off_t offset);
rspangler@google.com49fdf182009-10-10 00:57:34 +000091 virtual void TransferComplete(HttpFetcher *fetcher, bool successful);
Darin Petkov9ce452b2010-11-17 14:33:28 -080092 virtual void TransferTerminated(HttpFetcher *fetcher);
rspangler@google.com49fdf182009-10-10 00:57:34 +000093
Darin Petkovf42cc1c2010-09-01 09:03:02 -070094 DownloadActionDelegate* delegate() const { return delegate_; }
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070095 void set_delegate(DownloadActionDelegate* delegate) {
96 delegate_ = delegate;
97 }
98
Darin Petkov9b230572010-10-08 10:20:09 -070099 HttpFetcher* http_fetcher() { return http_fetcher_.get(); }
100
Andrew de los Reyes21816e12011-04-07 14:18:56 -0700101 void set_skip_reporting_signature_fail(google::protobuf::Closure* callback) {
102 skip_reporting_signature_fail_.reset(callback);
103 }
104
rspangler@google.com49fdf182009-10-10 00:57:34 +0000105 private:
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700106 // The InstallPlan passed in
107 InstallPlan install_plan_;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000108
Darin Petkov73058b42010-10-06 16:32:19 -0700109 // Update Engine preference store.
110 PrefsInterface* prefs_;
111
rspangler@google.com49fdf182009-10-10 00:57:34 +0000112 // The FileWriter that downloaded data should be written to. It will
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700113 // either point to *decompressing_file_writer_ or *delta_performer_.
rspangler@google.com49fdf182009-10-10 00:57:34 +0000114 FileWriter* writer_;
115
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700116 // These are used for full updates:
rspangler@google.com49fdf182009-10-10 00:57:34 +0000117 scoped_ptr<GzipDecompressingFileWriter> decompressing_file_writer_;
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700118 scoped_ptr<SplitFileWriter> split_file_writer_;
119 scoped_ptr<DirectFileWriter> kernel_file_writer_;
120 scoped_ptr<DirectFileWriter> rootfs_file_writer_;
Darin Petkove971f332010-09-22 16:57:25 -0700121 scoped_ptr<BufferedFileWriter> kernel_buffered_file_writer_;
122 scoped_ptr<BufferedFileWriter> rootfs_buffered_file_writer_;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000123
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700124 // Used to apply a delta update:
125 scoped_ptr<DeltaPerformer> delta_performer_;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000126
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700127 // Pointer to the HttpFetcher that does the http work.
rspangler@google.com49fdf182009-10-10 00:57:34 +0000128 scoped_ptr<HttpFetcher> http_fetcher_;
129
130 // Used to find the hash of the bytes downloaded
131 OmahaHashCalculator omaha_hash_calculator_;
Darin Petkov9d911fa2010-08-19 09:36:08 -0700132
Darin Petkov9ce452b2010-11-17 14:33:28 -0800133 // Used by TransferTerminated to figure if this action terminated itself or
134 // was terminated by the action processor.
135 ActionExitCode code_;
136
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700137 // For reporting status to outsiders
138 DownloadActionDelegate* delegate_;
139 uint64_t bytes_received_;
Darin Petkov9d911fa2010-08-19 09:36:08 -0700140
Andrew de los Reyes21816e12011-04-07 14:18:56 -0700141 // Called if the download fails OR (download success AND signature verifies)
142 scoped_ptr<google::protobuf::Closure> skip_reporting_signature_fail_;
143
rspangler@google.com49fdf182009-10-10 00:57:34 +0000144 DISALLOW_COPY_AND_ASSIGN(DownloadAction);
145};
146
147// We want to be sure that we're compiled with large file support on linux,
148// just in case we find ourselves downloading large images.
149COMPILE_ASSERT(8 == sizeof(off_t), off_t_not_64_bit);
150
151} // namespace chromeos_update_engine
152
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000153#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DOWNLOAD_ACTION_H__