|
Message-ID: <201906280739.9CD1E4B@keescook> Date: Fri, 28 Jun 2019 07:46:23 -0700 From: Kees Cook <keescook@...omium.org> To: Nitin Gote <nitin.r.gote@...el.com> Cc: jannh@...gle.com, kernel-hardening@...ts.openwall.com Subject: Re: [PATCH] checkpatch: Added warnings in favor of strscpy(). On Fri, Jun 28, 2019 at 05:25:48PM +0530, Nitin Gote wrote: > Added warnings in checkpatch.pl script to : > > 1. Deprecate strcpy() in favor of strscpy(). > 2. Deprecate strlcpy() in favor of strscpy(). > 3. Deprecate strncpy() in favor of strscpy() or strscpy_pad(). > > Signed-off-by: Nitin Gote <nitin.r.gote@...el.com> Excellent, yes. Can you also add a bit to the strncpy() section in Documentation/process/deprecated.rst so that all three cases of strncpy() are explained: - strncpy() into NUL-terminated target should use strscpy() - strncpy() into NUL-terminated target needing trailing NUL: strscpy_pad() - strncpy() into non-NUL-terminated target should have target marked with __nonstring. (and probably mention the __nonstring case in checkpatch too) -Kees > --- > scripts/checkpatch.pl | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl > index 342c7c7..bb0fa11 100755 > --- a/scripts/checkpatch.pl > +++ b/scripts/checkpatch.pl > @@ -595,6 +595,9 @@ our %deprecated_apis = ( > "rcu_barrier_sched" => "rcu_barrier", > "get_state_synchronize_sched" => "get_state_synchronize_rcu", > "cond_synchronize_sched" => "cond_synchronize_rcu", > + "strcpy" => "strscpy", > + "strlcpy" => "strscpy", > + "strncpy" => "strscpy or strscpy_pad", > ); > > #Create a search pattern for all these strings to speed up a loop below > -- > 2.7.4 > -- Kees Cook
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.