Skip to content

Commit

Permalink
tools: mtk_image: replace strncpy(d, s, sizeof(d)) with snprintf()
Browse files Browse the repository at this point in the history
Starting from version 8 the GCC, i.e. C compiler, starts complaining about
possible '\0' terminator loss or, as in this case, garbage copy.

In function ‘mtk_image_set_gen_header’,
    inlined from ‘mtk_image_set_header’ at tools/mtk_image.c:733:3:
tools/mtk_image.c:659:2: warning: ‘strncpy’ specified bound 12 equals destination size [-Wstringop-truncation]
  strncpy(hdr->boot.name, bootname, sizeof(hdr->boot.name));
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In function ‘mtk_brom_parse_imagename’,
    inlined from ‘mtk_image_check_params’ at tools/mtk_image.c:388:9:
tools/mtk_image.c:325:5: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation]
     strncpy(lk_name, val, sizeof(lk_name));
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Replace it with snprintf() to tell compiler how much room we have in the
destination buffer for source string.

Fixes: 3b975a1 ("tools: MediaTek: add MTK boot header generation to mkimage")
Cc: Ryder Lee <[email protected]>
Cc: Weijie Gao <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Weijie Gao <[email protected]>
  • Loading branch information
andy-shev authored and trini committed Dec 15, 2018
1 parent f828fa4 commit 74473ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/mtk_image.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ static int mtk_brom_parse_imagename(const char *imagename)
lk = val;

if (!strcmp(key, "lkname"))
strncpy(lk_name, val, sizeof(lk_name));
snprintf(lk_name, sizeof(lk_name), "%s", val);
}

if (next)
Expand Down Expand Up @@ -656,7 +656,7 @@ static void mtk_image_set_gen_header(void *ptr, off_t filesize,
bootname = SDMMC_BOOT_NAME;

/* Generic device header */
strncpy(hdr->boot.name, bootname, sizeof(hdr->boot.name));
snprintf(hdr->boot.name, sizeof(hdr->boot.name), "%s", bootname);
hdr->boot.version = cpu_to_le32(1);
hdr->boot.size = cpu_to_le32(sizeof(hdr->boot));

Expand Down

0 comments on commit 74473ed

Please sign in to comment.