Misra rule 20.3 - Printable Version +- MISRA Discussion Forums (https://forum.misra.org.uk) +-- Forum: MISRA C (https://forum.misra.org.uk/forumdisplay.php?fid=4) +--- Forum: MISRA-C: 2004 rules (https://forum.misra.org.uk/forumdisplay.php?fid=17) +---- Forum: 6.20 Standard Libraries (https://forum.misra.org.uk/forumdisplay.php?fid=42) +---- Thread: Misra rule 20.3 (/showthread.php?tid=1320) |
Misra rule 20.3 - dvnarendra - 01-03-2017 Code: #define MAX_BUF_LEN 20 I am using parasoft tool for checking misra compliance. for the above memcpy line I am getting the following misra non compliance Values is "ID" passed to library function "memcpy" without being checked I am using statically declared array. Why is it throwing this misra compliance? Can any one point how to make thsi line compliant TIA Narendra Re: Misra rule 20.3 - dg1980 - 02-03-2017 Rule 20.3 requires parameter checking for library functions, although memcpy is not explicitly mentioned. The behaviour of memcpy is undefined, if the memory regions overlap. However, in your example it is provable by static analysis that this can never be the case. Excerpt from Rule 20.3: Quote:Demonstrate statically that the input parameters never can take invalid valuesSo, long story short: false positive, contact tool vendor. Re: Misra rule 20.3 - misra-c - 30-03-2017 dg1980 has correctly pointed out that there are various ways to satisfy this rule. In MISRA-C:2012 this rule has become a directive (4.11), which highlights that the MISRA-C team is not mandating exactly what a tool should be checking for. Therefore tools will vary in how they perform this check. In this particular case it CAN BE statically demonstrated that there are no issues of undefined behaviour since the input parameters are valid. |