aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzung-Bi Shih <[email protected]>2022-06-09 08:49:54 +0000
committerTzung-Bi Shih <[email protected]>2022-06-10 02:31:44 +0000
commitaac29b04dc3fdc5b95bca31413d90dbe8c1ae33d (patch)
tree66eae50fc52e1d7b72d6470bc413ae223d1d4aa8
parent8120febafccb01eeea8c077130be6f6c1e46bb2f (diff)
platform/chrome: cros_ec_proto: handle empty payload in getting cmd mask
cros_ec_get_host_command_version_mask() expects to receive sizeof(struct ec_response_get_cmd_versions) from send_command(). The payload is valid only if the return value is positive. Return -EPROTO if send_command() returns 0 in cros_ec_get_host_command_version_mask(). Reviewed-by: Guenter Roeck <[email protected]> Signed-off-by: Tzung-Bi Shih <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--drivers/platform/chrome/cros_ec_proto.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/platform/chrome/cros_ec_proto.c b/drivers/platform/chrome/cros_ec_proto.c
index b152f2902b32..0b0bc3717cbb 100644
--- a/drivers/platform/chrome/cros_ec_proto.c
+++ b/drivers/platform/chrome/cros_ec_proto.c
@@ -458,6 +458,11 @@ static int cros_ec_get_host_command_version_mask(struct cros_ec_device *ec_dev,
goto exit;
}
+ if (ret == 0) {
+ ret = -EPROTO;
+ goto exit;
+ }
+
rver = (struct ec_response_get_cmd_versions *)msg->data;
*mask = rver->version_mask;
ret = 0;