diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2017-03-23 06:40:00 -0400 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2017-03-24 11:15:25 -0400 |
commit | 251fe09f13bfb54c1ede66ee8bf8ddd0061c4f7c (patch) | |
tree | 60b08dcc4a18caeec4c72c9fae59307c2fe2d579 | |
parent | a95600294157ca7527ee7c70249fb53e09d8c566 (diff) |
iwlwifi: mvm: writing zero bytes to debugfs causes a crash
This is a static analysis fix. The warning is:
drivers/net/wireless/intel/iwlwifi/mvm/fw-dbg.c:912 iwl_mvm_fw_dbg_collect()
warn: integer overflows 'sizeof(*desc) + len'
I guess this code is supposed to take a NUL character, but if we write
zero bytes then it tries to write -1 characters and crashes.
Fixes: c91b865cb14d ("iwlwifi: mvm: support description for user triggered fw dbg collection")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c b/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c index a260cd503200..077bfd8f4c0c 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c | |||
@@ -1056,6 +1056,8 @@ static ssize_t iwl_dbgfs_fw_dbg_collect_write(struct iwl_mvm *mvm, | |||
1056 | 1056 | ||
1057 | if (ret) | 1057 | if (ret) |
1058 | return ret; | 1058 | return ret; |
1059 | if (count == 0) | ||
1060 | return 0; | ||
1059 | 1061 | ||
1060 | iwl_mvm_fw_dbg_collect(mvm, FW_DBG_TRIGGER_USER, buf, | 1062 | iwl_mvm_fw_dbg_collect(mvm, FW_DBG_TRIGGER_USER, buf, |
1061 | (count - 1), NULL); | 1063 | (count - 1), NULL); |