summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrago <rago@google.com>2016-11-30 19:55:25 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-11-30 19:55:25 +0000
commit21c9c6dc690bc22da6c07d6240810ff6c17120d9 (patch)
treef93c412bdbcf57c1e2bec100fd7b4d4d8ca160f0
parentdf20006a1089a4b78336448a52f90ee017302d72 (diff)
parentcd6ebe9b271aaf6a76cd73415297bd274e6c2681 (diff)
downloadlibhardware-21c9c6dc690bc22da6c07d6240810ff6c17120d9.tar.gz
Fix security vulnerability: potential OOB write in audioserver am: 3f9a6d3bd9 am: 28d8817df3 am: 750a6a4ed8 am: 559dbde531 am: 4654f9ab8b am: 4154f08e79 am: 2ebeab8c6b am: c196433170
am: cd6ebe9b27 Change-Id: Ia1c55db37373474552543c3a0f4fad7b6305a2a0
-rw-r--r--include/hardware/audio_effect.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hardware/audio_effect.h b/include/hardware/audio_effect.h
index 41cd2e61..854f0c15 100644
--- a/include/hardware/audio_effect.h
+++ b/include/hardware/audio_effect.h
@@ -896,6 +896,9 @@ typedef struct effect_param_s {
char data[]; // Start of Parameter + Value data
} effect_param_t;
+// Maximum effect_param_t size
+#define EFFECT_PARAM_SIZE_MAX 65536
+
// structure used by EFFECT_CMD_OFFLOAD command
typedef struct effect_offload_param_s {
bool isOffload; // true if the playback thread the effect is attached to is offloaded