lkml.org 
[lkml]   [2014]   [Sep]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subjectre: target: target_core_transport.c: Cleaning up missing null-terminate in conjunction with strncpy
The patch 6cfa853ceee4: "target: target_core_transport.c: Cleaning up
missing null-terminate in conjunction with strncpy" from Aug 3, 2014,
leads to the following static checker warning:

drivers/target/target_core_transport.c:956 transport_dump_vpd_ident_type()
error: potentially dereferencing uninitialized 'len'.

drivers/target/target_core_transport.c
955 default:
956 len = strlen(len);
^^^^^^^^^^^^^^^^^

This was obviously supposed to be strlen(buf) and no one compile tested
it... But the patch is called "missing null-terminate" when actually
the original code was fine as far as I can see.

Apparently, as a safety measure we're trying to replace every strncpy()
with:

strncpy(foo, bar, sizeof(foo));
foo[sizeof(foo) - 1] = '\0';

We should have a function for this. We used to use strlcpy() but people
complained that it could read beyond the end of the src string. Also it
doesn't pad the string with zeros. So now we're open coding NUL
terminators everywhere so the code is easier to audit.

That sucks and makes the code messier.

Rickard, please, let's find a cleaner way to do this.

regards,
dan carpenter


\
 
 \ /
  Last update: 2014-09-03 12:41    [W:0.273 / U:0.092 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site