lkml.org 
[lkml]   [2021]   [Feb]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 09/20] m68k/atari: Manual replacement of the deprecated strlcpy() with return values
    Date
    The strlcpy() reads the entire source buffer first, it is dangerous if
    the source buffer lenght is unbounded or possibility non NULL-terminated.
    It can lead to linear read overflows, crashes, etc...

    As recommended in the deprecated interfaces [1], it should be replaced
    by strscpy.

    This commit replaces all calls to strlcpy that handle the return values
    by the corresponding strscpy calls with new handling of the return
    values (as it is quite different between the two functions).

    [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy

    Signed-off-by: Romain Perier <romain.perier@gmail.com>
    ---
    arch/m68k/emu/natfeat.c | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/arch/m68k/emu/natfeat.c b/arch/m68k/emu/natfeat.c
    index 71b78ecee75c..fbb3454d3c6a 100644
    --- a/arch/m68k/emu/natfeat.c
    +++ b/arch/m68k/emu/natfeat.c
    @@ -41,10 +41,10 @@ long nf_get_id(const char *feature_name)
    {
    /* feature_name may be in vmalloc()ed memory, so make a copy */
    char name_copy[32];
    - size_t n;
    + ssize_t n;

    - n = strlcpy(name_copy, feature_name, sizeof(name_copy));
    - if (n >= sizeof(name_copy))
    + n = strscpy(name_copy, feature_name, sizeof(name_copy));
    + if (n == -E2BIG)
    return 0;

    return nf_get_id_phys(virt_to_phys(name_copy));
    \
     
     \ /
      Last update: 2021-02-22 16:21    [W:3.033 / U:0.052 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site