2010-02-18 01:11:44 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _APPLYPATCH_H
|
|
|
|
#define _APPLYPATCH_H
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
2016-02-04 02:08:52 +01:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2016-02-04 09:23:21 +01:00
|
|
|
#include "openssl/sha.h"
|
2010-02-22 23:46:32 +01:00
|
|
|
#include "edify/expr.h"
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2016-02-11 01:41:10 +01:00
|
|
|
struct FileContents {
|
2016-02-04 09:23:21 +01:00
|
|
|
uint8_t sha1[SHA_DIGEST_LENGTH];
|
2016-02-11 01:41:10 +01:00
|
|
|
std::vector<unsigned char> data;
|
2010-02-18 01:11:44 +01:00
|
|
|
struct stat st;
|
2016-02-11 01:41:10 +01:00
|
|
|
};
|
2010-02-18 01:11:44 +01:00
|
|
|
|
|
|
|
// When there isn't enough room on the target filesystem to hold the
|
|
|
|
// patched version of the file, we copy the original here and delete
|
|
|
|
// it to free up space. If the expected source file doesn't exist, or
|
|
|
|
// is corrupted, we look to see if this file contains the bits we want
|
|
|
|
// and use it as the source instead.
|
|
|
|
#define CACHE_TEMP_SOURCE "/cache/saved.file"
|
|
|
|
|
2014-08-15 23:31:52 +02:00
|
|
|
typedef ssize_t (*SinkFn)(const unsigned char*, ssize_t, void*);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
|
|
|
// applypatch.c
|
2010-02-22 23:46:32 +01:00
|
|
|
int ShowLicenses();
|
2010-02-18 01:11:44 +01:00
|
|
|
size_t FreeSpaceForFile(const char* filename);
|
2010-02-22 23:46:32 +01:00
|
|
|
int CacheSizeCheck(size_t bytes);
|
|
|
|
int ParseSha1(const char* str, uint8_t* digest);
|
|
|
|
|
2015-07-18 03:11:12 +02:00
|
|
|
int applypatch_flash(const char* source_filename, const char* target_filename,
|
|
|
|
const char* target_sha1_str, size_t target_size);
|
2010-02-22 23:46:32 +01:00
|
|
|
int applypatch(const char* source_filename,
|
|
|
|
const char* target_filename,
|
|
|
|
const char* target_sha1_str,
|
|
|
|
size_t target_size,
|
|
|
|
int num_patches,
|
|
|
|
char** const patch_sha1_str,
|
2012-08-21 00:28:02 +02:00
|
|
|
Value** patch_data,
|
|
|
|
Value* bonus_data);
|
2010-02-22 23:46:32 +01:00
|
|
|
int applypatch_check(const char* filename,
|
|
|
|
int num_patches,
|
|
|
|
char** const patch_sha1_str);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2014-02-14 00:18:19 +01:00
|
|
|
int LoadFileContents(const char* filename, FileContents* file);
|
2012-02-28 20:07:09 +01:00
|
|
|
int SaveFileContents(const char* filename, const FileContents* file);
|
2010-02-18 01:11:44 +01:00
|
|
|
void FreeFileContents(FileContents* file);
|
2013-07-08 18:42:54 +02:00
|
|
|
int FindMatchingPatch(uint8_t* sha1, char* const * const patch_sha1_str,
|
2010-08-02 19:29:49 +02:00
|
|
|
int num_patches);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2016-02-04 02:08:52 +01:00
|
|
|
// bsdiff.cpp
|
2010-02-18 01:11:44 +01:00
|
|
|
void ShowBSDiffLicense();
|
|
|
|
int ApplyBSDiffPatch(const unsigned char* old_data, ssize_t old_size,
|
2010-02-22 23:46:32 +01:00
|
|
|
const Value* patch, ssize_t patch_offset,
|
2010-02-18 01:11:44 +01:00
|
|
|
SinkFn sink, void* token, SHA_CTX* ctx);
|
|
|
|
int ApplyBSDiffPatchMem(const unsigned char* old_data, ssize_t old_size,
|
2010-02-22 23:46:32 +01:00
|
|
|
const Value* patch, ssize_t patch_offset,
|
2016-02-04 02:08:52 +01:00
|
|
|
std::vector<unsigned char>* new_data);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2016-02-04 02:08:52 +01:00
|
|
|
// imgpatch.cpp
|
2010-02-18 01:11:44 +01:00
|
|
|
int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
|
2010-02-22 23:46:32 +01:00
|
|
|
const Value* patch,
|
2012-08-21 00:28:02 +02:00
|
|
|
SinkFn sink, void* token, SHA_CTX* ctx,
|
|
|
|
const Value* bonus_data);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2016-02-04 02:08:52 +01:00
|
|
|
// freecache.cpp
|
2010-02-18 01:11:44 +01:00
|
|
|
int MakeFreeSpaceOnCache(size_t bytes_needed);
|
|
|
|
|
|
|
|
#endif
|