summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJed Estep <jestep@google.com>2016-03-24 00:08:13 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-03-24 00:08:13 +0100
commit7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e (patch)
tree83eb39fa7166d05028690a4f5101cb554283dc81
parentMerge "Remove dead tools." (diff)
parentCorrect caching behavior for should_inject_cache (diff)
downloadandroid_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.tar
android_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.tar.gz
android_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.tar.bz2
android_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.tar.lz
android_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.tar.xz
android_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.tar.zst
android_bootable_recovery-7a9da521e1ecdba7a51fc15c0fc921123d1d5c4e.zip
-rw-r--r--otafault/Android.mk3
-rw-r--r--otafault/config.cpp31
2 files changed, 17 insertions, 17 deletions
diff --git a/otafault/Android.mk b/otafault/Android.mk
index 33308c76e..d0b1174a4 100644
--- a/otafault/Android.mk
+++ b/otafault/Android.mk
@@ -17,9 +17,10 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
otafault_static_libs := \
+ libbase \
libminzip \
libz \
- libselinux \
+ libselinux
LOCAL_SRC_FILES := config.cpp ota_io.cpp
LOCAL_MODULE_TAGS := eng
diff --git a/otafault/config.cpp b/otafault/config.cpp
index aa4b4d5ce..b4567392d 100644
--- a/otafault/config.cpp
+++ b/otafault/config.cpp
@@ -20,6 +20,8 @@
#include <stdio.h>
#include <unistd.h>
+#include <android-base/stringprintf.h>
+
#include "minzip/Zip.h"
#include "config.h"
#include "ota_io.h"
@@ -27,12 +29,10 @@
#define OTAIO_MAX_FNAME_SIZE 128
static ZipArchive* archive;
-static std::map<const char*, bool> should_inject_cache;
+static std::map<std::string, bool> should_inject_cache;
-static const char* get_type_path(const char* io_type) {
- char* path = (char*)calloc(strlen(io_type) + strlen(OTAIO_BASE_DIR) + 2, sizeof(char));
- sprintf(path, "%s/%s", OTAIO_BASE_DIR, io_type);
- return path;
+static std::string get_type_path(const char* io_type) {
+ return android::base::StringPrintf("%s/%s", OTAIO_BASE_DIR, io_type);
}
void ota_io_init(ZipArchive* za) {
@@ -46,13 +46,12 @@ bool should_fault_inject(const char* io_type) {
if (archive == NULL) {
return false;
}
- if (should_inject_cache.find(io_type) != should_inject_cache.end()) {
- return should_inject_cache[io_type];
+ const std::string type_path = get_type_path(io_type);
+ if (should_inject_cache.find(type_path) != should_inject_cache.end()) {
+ return should_inject_cache[type_path];
}
- const char* type_path = get_type_path(io_type);
- const ZipEntry* entry = mzFindZipEntry(archive, type_path);
+ const ZipEntry* entry = mzFindZipEntry(archive, type_path.c_str());
should_inject_cache[type_path] = entry != nullptr;
- free((void*)type_path);
return entry != NULL;
}
@@ -61,10 +60,10 @@ bool should_hit_cache() {
}
std::string fault_fname(const char* io_type) {
- const char* type_path = get_type_path(io_type);
- char* fname = (char*) calloc(OTAIO_MAX_FNAME_SIZE, sizeof(char));
- const ZipEntry* entry = mzFindZipEntry(archive, type_path);
- mzReadZipEntry(archive, entry, fname, OTAIO_MAX_FNAME_SIZE);
- free((void*)type_path);
- return std::string(fname);
+ std::string type_path = get_type_path(io_type);
+ std::string fname;
+ fname.resize(OTAIO_MAX_FNAME_SIZE);
+ const ZipEntry* entry = mzFindZipEntry(archive, type_path.c_str());
+ mzReadZipEntry(archive, entry, &fname[0], OTAIO_MAX_FNAME_SIZE);
+ return fname;
}