Skip to content

Commit

Permalink
r8169: improve rtl_fw_format_ok
Browse files Browse the repository at this point in the history
Simplify the function a little bit and use strscpy() where appropriate.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Heiner Kallweit authored and David S. Miller committed May 30, 2019
1 parent 25e9411 commit e95a7f3
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions drivers/net/ethernet/realtek/r8169.c
Original file line number Diff line number Diff line change
Expand Up @@ -2314,50 +2314,45 @@ static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
const struct firmware *fw = rtl_fw->fw;
struct fw_info *fw_info = (struct fw_info *)fw->data;
struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
char *version = rtl_fw->version;
bool rc = false;

if (fw->size < FW_OPCODE_SIZE)
goto out;
return false;

if (!fw_info->magic) {
size_t i, size, start;
u8 checksum = 0;

if (fw->size < sizeof(*fw_info))
goto out;
return false;

for (i = 0; i < fw->size; i++)
checksum += fw->data[i];
if (checksum != 0)
goto out;
return false;

start = le32_to_cpu(fw_info->fw_start);
if (start > fw->size)
goto out;
return false;

size = le32_to_cpu(fw_info->fw_len);
if (size > (fw->size - start) / FW_OPCODE_SIZE)
goto out;
return false;

memcpy(version, fw_info->version, RTL_VER_SIZE);
strscpy(rtl_fw->version, fw_info->version, RTL_VER_SIZE);

pa->code = (__le32 *)(fw->data + start);
pa->size = size;
} else {
if (fw->size % FW_OPCODE_SIZE)
goto out;
return false;

strlcpy(version, tp->fw_name, RTL_VER_SIZE);
strscpy(rtl_fw->version, tp->fw_name, RTL_VER_SIZE);

pa->code = (__le32 *)fw->data;
pa->size = fw->size / FW_OPCODE_SIZE;
}
version[RTL_VER_SIZE - 1] = 0;

rc = true;
out:
return rc;
return true;
}

static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
Expand Down

0 comments on commit e95a7f3

Please sign in to comment.