More secure way to use strncat and strncpy
authorRomain Forlot <romain.forlot@iot.bzh>
Thu, 17 May 2018 00:28:48 +0000 (02:28 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Thu, 17 May 2018 00:28:48 +0000 (02:28 +0200)
This ensure not data will be written out of bound
of the destination variable buffer

Change-Id: I4d736855f085fc5f728258c5928fed7191df46b4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
filescan-utils.c

index 8a64e58..8a155cf 100644 (file)
@@ -58,8 +58,8 @@ json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const
                 if (dirEnt->d_name[0]=='.' || dirEnt->d_name[0]=='_') continue;
 
                 strncpy(newpath, searchPath, sizeof(newpath));
-                strncat(newpath, "/", sizeof(newpath)-strlen(newpath)-1);
-                strncat(newpath, dirEnt->d_name, sizeof(newpath)-strlen(newpath)-1);
+                strncat(newpath, "/", sizeof(newpath) - strlen(newpath) - 1);
+                strncat(newpath, dirEnt->d_name, sizeof(newpath) - strlen(newpath) - 1);
                 found += ScanDir(newpath);
                 continue;
             }
@@ -153,7 +153,7 @@ char *GetBindingDirPath(struct afb_dynapi *dynapi)
     if((len = readlink(fd_link, retdir, sizeof(retdir)-1)) == -1)
     {
         perror("lstat");
-        strncpy(retdir, "/tmp", 4);
+        strncpy(retdir, "/tmp", CONTROL_MAXPATH_LEN - 1);
     }
     else
     {