Blame SOURCES/kvm-virtiofsd-rename-inode-refcount-to-inode-nlookup.patch

22c213
From e01a6e68d799ed2af0ca3b04d75818ba62b18682 Mon Sep 17 00:00:00 2001
22c213
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
Date: Mon, 27 Jan 2020 19:02:08 +0100
22c213
Subject: [PATCH 097/116] virtiofsd: rename inode->refcount to inode->nlookup
22c213
MIME-Version: 1.0
22c213
Content-Type: text/plain; charset=UTF-8
22c213
Content-Transfer-Encoding: 8bit
22c213
22c213
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
Message-id: <20200127190227.40942-94-dgilbert@redhat.com>
22c213
Patchwork-id: 93547
22c213
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 093/112] virtiofsd: rename inode->refcount to inode->nlookup
22c213
Bugzilla: 1694164
22c213
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
22c213
22c213
From: Stefan Hajnoczi <stefanha@redhat.com>
22c213
22c213
This reference counter plays a specific role in the FUSE protocol.  It's
22c213
not a generic object reference counter and the FUSE kernel code calls it
22c213
"nlookup".
22c213
22c213
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
(cherry picked from commit 1222f015558fc34cea02aa3a5a92de608c82cec8)
22c213
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
22c213
---
22c213
 tools/virtiofsd/passthrough_ll.c | 37 +++++++++++++++++++++++++------------
22c213
 1 file changed, 25 insertions(+), 12 deletions(-)
22c213
22c213
diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
22c213
index 2d703b5..c819b5f 100644
22c213
--- a/tools/virtiofsd/passthrough_ll.c
22c213
+++ b/tools/virtiofsd/passthrough_ll.c
22c213
@@ -99,7 +99,20 @@ struct lo_inode {
22c213
     int fd;
22c213
     bool is_symlink;
22c213
     struct lo_key key;
22c213
-    uint64_t refcount; /* protected by lo->mutex */
22c213
+
22c213
+    /*
22c213
+     * This counter keeps the inode alive during the FUSE session.
22c213
+     * Incremented when the FUSE inode number is sent in a reply
22c213
+     * (FUSE_LOOKUP, FUSE_READDIRPLUS, etc).  Decremented when an inode is
22c213
+     * released by requests like FUSE_FORGET, FUSE_RMDIR, FUSE_RENAME, etc.
22c213
+     *
22c213
+     * Note that this value is untrusted because the client can manipulate
22c213
+     * it arbitrarily using FUSE_FORGET requests.
22c213
+     *
22c213
+     * Protected by lo->mutex.
22c213
+     */
22c213
+    uint64_t nlookup;
22c213
+
22c213
     fuse_ino_t fuse_ino;
22c213
     pthread_mutex_t plock_mutex;
22c213
     GHashTable *posix_locks; /* protected by lo_inode->plock_mutex */
22c213
@@ -568,7 +581,7 @@ retry:
22c213
     if (last == path) {
22c213
         p = &lo->root;
22c213
         pthread_mutex_lock(&lo->mutex);
22c213
-        p->refcount++;
22c213
+        p->nlookup++;
22c213
         pthread_mutex_unlock(&lo->mutex);
22c213
     } else {
22c213
         *last = '\0';
22c213
@@ -786,8 +799,8 @@ static struct lo_inode *lo_find(struct lo_data *lo, struct stat *st)
22c213
     pthread_mutex_lock(&lo->mutex);
22c213
     p = g_hash_table_lookup(lo->inodes, &key);
22c213
     if (p) {
22c213
-        assert(p->refcount > 0);
22c213
-        p->refcount++;
22c213
+        assert(p->nlookup > 0);
22c213
+        p->nlookup++;
22c213
     }
22c213
     pthread_mutex_unlock(&lo->mutex);
22c213
 
22c213
@@ -855,7 +868,7 @@ static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name,
22c213
         }
22c213
 
22c213
         inode->is_symlink = S_ISLNK(e->attr.st_mode);
22c213
-        inode->refcount = 1;
22c213
+        inode->nlookup = 1;
22c213
         inode->fd = newfd;
22c213
         newfd = -1;
22c213
         inode->key.ino = e->attr.st_ino;
22c213
@@ -1112,7 +1125,7 @@ static void lo_link(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent,
22c213
     }
22c213
 
22c213
     pthread_mutex_lock(&lo->mutex);
22c213
-    inode->refcount++;
22c213
+    inode->nlookup++;
22c213
     pthread_mutex_unlock(&lo->mutex);
22c213
     e.ino = inode->fuse_ino;
22c213
 
22c213
@@ -1193,9 +1206,9 @@ static void unref_inode_lolocked(struct lo_data *lo, struct lo_inode *inode,
22c213
     }
22c213
 
22c213
     pthread_mutex_lock(&lo->mutex);
22c213
-    assert(inode->refcount >= n);
22c213
-    inode->refcount -= n;
22c213
-    if (!inode->refcount) {
22c213
+    assert(inode->nlookup >= n);
22c213
+    inode->nlookup -= n;
22c213
+    if (!inode->nlookup) {
22c213
         lo_map_remove(&lo->ino_map, inode->fuse_ino);
22c213
         g_hash_table_remove(lo->inodes, &inode->key);
22c213
         if (g_hash_table_size(inode->posix_locks)) {
22c213
@@ -1216,7 +1229,7 @@ static int unref_all_inodes_cb(gpointer key, gpointer value, gpointer user_data)
22c213
     struct lo_inode *inode = value;
22c213
     struct lo_data *lo = user_data;
22c213
 
22c213
-    inode->refcount = 0;
22c213
+    inode->nlookup = 0;
22c213
     lo_map_remove(&lo->ino_map, inode->fuse_ino);
22c213
     close(inode->fd);
22c213
 
22c213
@@ -1241,7 +1254,7 @@ static void lo_forget_one(fuse_req_t req, fuse_ino_t ino, uint64_t nlookup)
22c213
     }
22c213
 
22c213
     fuse_log(FUSE_LOG_DEBUG, "  forget %lli %lli -%lli\n",
22c213
-             (unsigned long long)ino, (unsigned long long)inode->refcount,
22c213
+             (unsigned long long)ino, (unsigned long long)inode->nlookup,
22c213
              (unsigned long long)nlookup);
22c213
 
22c213
     unref_inode_lolocked(lo, inode, nlookup);
22c213
@@ -2609,7 +2622,7 @@ static void setup_root(struct lo_data *lo, struct lo_inode *root)
22c213
     root->fd = fd;
22c213
     root->key.ino = stat.st_ino;
22c213
     root->key.dev = stat.st_dev;
22c213
-    root->refcount = 2;
22c213
+    root->nlookup = 2;
22c213
 }
22c213
 
22c213
 static guint lo_key_hash(gconstpointer key)
22c213
-- 
22c213
1.8.3.1
22c213