aboutsummaryrefslogtreecommitdiffstats
path: root/applypatch
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2014-05-16 15:03:24 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-05-16 15:03:24 +0000
commitd4592694b41d5f8309d98cd3312b5486216cc685 (patch)
tree65f33edad5871413e4c6aba9dd129de96cf9ae77 /applypatch
parentd2fb4ed58997afd18bd2b5274bf1835644d454fb (diff)
parent3ca99f6cb8ffbe19c7ef5409f3dac18ea0c254bd (diff)
downloadbootable_recovery-d4592694b41d5f8309d98cd3312b5486216cc685.zip
bootable_recovery-d4592694b41d5f8309d98cd3312b5486216cc685.tar.gz
bootable_recovery-d4592694b41d5f8309d98cd3312b5486216cc685.tar.bz2
am 3ca99f6c: Merge "fix vulnerability in bspatch"
* commit '3ca99f6cb8ffbe19c7ef5409f3dac18ea0c254bd': fix vulnerability in bspatch
Diffstat (limited to 'applypatch')
-rw-r--r--applypatch/bspatch.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/applypatch/bspatch.c b/applypatch/bspatch.c
index 2e80f81..1dc7ab1 100644
--- a/applypatch/bspatch.c
+++ b/applypatch/bspatch.c
@@ -205,6 +205,11 @@ int ApplyBSDiffPatchMem(const unsigned char* old_data, ssize_t old_size,
ctrl[1] = offtin(buf+8);
ctrl[2] = offtin(buf+16);
+ if (ctrl[0] < 0 || ctrl[1] < 0) {
+ printf("corrupt patch (negative byte counts)\n");
+ return 1;
+ }
+
// Sanity check
if (newpos + ctrl[0] > *new_size) {
printf("corrupt patch (new file overrun)\n");