9pfs: fix potential segfault during walk
authorGreg Kurz <groug@kaod.org>
Fri, 16 Sep 2016 09:44:49 +0000 (11:44 +0200)
committerGreg Kurz <groug@kaod.org>
Mon, 19 Sep 2016 09:39:48 +0000 (11:39 +0200)
If the call to fid_to_qid() returns an error, we will call v9fs_path_free()
on uninitialized paths.

It is a regression introduced by the following commit:

56f101ecce0e 9pfs: handle walk of ".." in the root directory

Let's fix this by initializing dpath and path before calling fid_to_qid().

Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
[groug: updated the changelog to indicate this is regression and to provide
        the offending commit SHA1]
Signed-off-by: Greg Kurz <groug@kaod.org>
hw/9pfs/9p.c

index 639f93930285cc3ac46b5768ea3294c55a4332b5..119ee584969bf9bf3f5b9370edf39cdfa4b5fa66 100644 (file)
@@ -1333,13 +1333,14 @@ static void v9fs_walk(void *opaque)
         goto out_nofid;
     }
 
+    v9fs_path_init(&dpath);
+    v9fs_path_init(&path);
+
     err = fid_to_qid(pdu, fidp, &qid);
     if (err < 0) {
         goto out;
     }
 
-    v9fs_path_init(&dpath);
-    v9fs_path_init(&path);
     /*
      * Both dpath and path initially poin to fidp.
      * Needed to handle request with nwnames == 0