Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern We computed the length of the string already, so us...



details:   https://anonhg.NetBSD.org/src/rev/870b6d604217
branches:  trunk
changeset: 827666:870b6d604217
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Nov 07 15:57:38 2017 +0000

description:
We computed the length of the string already, so use it...

diffstat:

 sys/kern/vfs_syscalls.c |  14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diffs (52 lines):

diff -r d0043cb49176 -r 870b6d604217 sys/kern/vfs_syscalls.c
--- a/sys/kern/vfs_syscalls.c   Tue Nov 07 14:55:30 2017 +0000
+++ b/sys/kern/vfs_syscalls.c   Tue Nov 07 15:57:38 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vfs_syscalls.c,v 1.516 2017/06/01 02:45:13 chs Exp $   */
+/*     $NetBSD: vfs_syscalls.c,v 1.517 2017/11/07 15:57:38 christos Exp $      */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.516 2017/06/01 02:45:13 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.517 2017/11/07 15:57:38 christos Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_fileassoc.h"
@@ -2466,6 +2466,7 @@
        struct vattr vattr;
        char *path;
        int error;
+       size_t len;
        struct pathbuf *linkpb;
        struct nameidata nd;
 
@@ -2473,20 +2474,21 @@
 
        path = PNBUF_GET();
        if (seg == UIO_USERSPACE) {
-               if ((error = copyinstr(patharg, path, MAXPATHLEN, NULL)) != 0)
+               if ((error = copyinstr(patharg, path, MAXPATHLEN, &len)) != 0)
                        goto out1;
                if ((error = pathbuf_copyin(link, &linkpb)) != 0)
                        goto out1;
        } else {
-               KASSERT(strlen(patharg) < MAXPATHLEN);
-               strcpy(path, patharg);
+               len = strlen(patharg) + 1;
+               KASSERT(len <= MAXPATHLEN);
+               memcpy(path, patharg, len);
                linkpb = pathbuf_create(link);
                if (linkpb == NULL) {
                        error = ENOMEM;
                        goto out1;
                }
        }
-       ktrkuser("symlink-target", path, strlen(path));
+       ktrkuser("symlink-target", path, len - 1);
 
        NDINIT(&nd, CREATE, LOCKPARENT | TRYEMULROOT, linkpb);
        if ((error = fd_nameiat(l, fdat, &nd)) != 0)



Home | Main Index | Thread Index | Old Index