mount.cifs: fix bad free() of string returned by dirname()
authorJeff Layton <jlayton@samba.org>
Fri, 11 Oct 2013 02:05:05 +0000 (22:05 -0400)
committerJeff Layton <jlayton@samba.org>
Fri, 11 Oct 2013 15:02:11 +0000 (11:02 -0400)
Coverity says:

  Error: CPPCHECK_WARNING: [#def10]
  cifs-utils-6.2/mount.cifs.c:1518: error[memleakOnRealloc]: Common realloc mistake: 'mtabdir' nulled but not freed upon failure

del_mtab has a number of bugs in handling of allocated memory:

a) the return value of strdup() is not checked

b) It calls realloc() on a pointer that wasn't returned by an allocation
   function (e.g. malloc, calloc, etc.)

c) If realloc() fails, it doesn't call free() on the original memory
   returned by strdup()

Fix all of these bugs and add newlines to the end of the error messages
in del_mtab.

Signed-off-by: Jeff Layton <jlayton@samba.org>
mount.cifs.c

index 7206dcb8a5cfdf3dc8a6b1cc8ea8e71543b3aca5..497665dcd48086d52ae242e396fe06d77039cd66 100644 (file)
@@ -1508,23 +1508,29 @@ add_mtab_exit:
 static int
 del_mtab(char *mountpoint)
 {
-       int tmprc, rc = 0;
+       int len, tmprc, rc = 0;
        FILE *mnttmp, *mntmtab;
        struct mntent *mountent;
-       char *mtabfile, *mtabdir, *mtabtmpfile;
+       char *mtabfile, *mtabdir, *mtabtmpfile = NULL;
 
        mtabfile = strdup(MOUNTED);
-       mtabdir = dirname(mtabfile);
-       mtabdir = realloc(mtabdir, strlen(mtabdir) + strlen(MNT_TMP_FILE) + 2);
-       if (!mtabdir) {
-               fprintf(stderr, "del_mtab: cannot determine current mtab path");
+       if (!mtabfile) {
+               fprintf(stderr, "del_mtab: cannot strdup MOUNTED\n");
                rc = EX_FILEIO;
                goto del_mtab_exit;
        }
 
-       mtabtmpfile = strcat(mtabdir, MNT_TMP_FILE);
+       mtabdir = dirname(mtabfile);
+       len = strlen(mtabdir) + strlen(MNT_TMP_FILE);
+       mtabtmpfile = malloc(len + 1);
        if (!mtabtmpfile) {
-               fprintf(stderr, "del_mtab: cannot allocate memory to tmp file");
+               fprintf(stderr, "del_mtab: cannot allocate memory to tmp file\n");
+               rc = EX_FILEIO;
+               goto del_mtab_exit;
+       }
+
+       if (sprintf(mtabtmpfile, "%s%s", mtabdir, MNT_TMP_FILE) != len) {
+               fprintf(stderr, "del_mtab: error writing new string\n");
                rc = EX_FILEIO;
                goto del_mtab_exit;
        }
@@ -1532,14 +1538,14 @@ del_mtab(char *mountpoint)
        atexit(unlock_mtab);
        rc = lock_mtab();
        if (rc) {
-               fprintf(stderr, "del_mtab: cannot lock mtab");
+               fprintf(stderr, "del_mtab: cannot lock mtab\n");
                rc = EX_FILEIO;
                goto del_mtab_exit;
        }
 
        mtabtmpfile = mktemp(mtabtmpfile);
        if (!mtabtmpfile) {
-               fprintf(stderr, "del_mtab: cannot setup tmp file destination");
+               fprintf(stderr, "del_mtab: cannot setup tmp file destination\n");
                rc = EX_FILEIO;
                goto del_mtab_exit;
        }
@@ -1587,7 +1593,8 @@ del_mtab(char *mountpoint)
 
 del_mtab_exit:
        unlock_mtab();
-       free(mtabdir);
+       free(mtabtmpfile);
+       free(mtabfile);
        return rc;
 
 del_mtab_error: