Blame SOURCES/kvm-block-file-posix-Pass-FD-to-locking-helpers.patch

1bdc94
From 4667112e87999632688621951ce8c2ec8a0ebb8d Mon Sep 17 00:00:00 2001
1bdc94
From: Max Reitz <mreitz@redhat.com>
1bdc94
Date: Mon, 18 Jun 2018 14:53:35 +0200
1bdc94
Subject: [PATCH 06/57] block/file-posix: Pass FD to locking helpers
1bdc94
1bdc94
RH-Author: Max Reitz <mreitz@redhat.com>
1bdc94
Message-id: <20180618145337.633-2-mreitz@redhat.com>
1bdc94
Patchwork-id: 80751
1bdc94
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 1/3] block/file-posix: Pass FD to locking helpers
1bdc94
Bugzilla: 1519144
1bdc94
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
1bdc94
RH-Acked-by: Fam Zheng <famz@redhat.com>
1bdc94
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
1bdc94
raw_apply_lock_bytes() and raw_check_lock_bytes() currently take a
1bdc94
BDRVRawState *, but they only use the lock_fd field.  During image
1bdc94
creation, we do not have a BDRVRawState, but we do have an FD; so if we
1bdc94
want to reuse the functions there, we should modify them to receive only
1bdc94
the FD.
1bdc94
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
Reviewed-by: Fam Zheng <famz@redhat.com>
1bdc94
Message-id: 20180509215336.31304-2-mreitz@redhat.com
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
(cherry picked from commit d0a96155de099d388f5e1f46277a54bdcfbb0bb2)
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 block/file-posix.c | 27 ++++++++++++++-------------
1bdc94
 1 file changed, 14 insertions(+), 13 deletions(-)
1bdc94
1bdc94
diff --git a/block/file-posix.c b/block/file-posix.c
1bdc94
index 3794c00..c98a4a1 100644
1bdc94
--- a/block/file-posix.c
1bdc94
+++ b/block/file-posix.c
1bdc94
@@ -630,7 +630,7 @@ typedef enum {
1bdc94
  * file; if @unlock == true, also unlock the unneeded bytes.
1bdc94
  * @shared_perm_lock_bits is the mask of all permissions that are NOT shared.
1bdc94
  */
1bdc94
-static int raw_apply_lock_bytes(BDRVRawState *s,
1bdc94
+static int raw_apply_lock_bytes(int fd,
1bdc94
                                 uint64_t perm_lock_bits,
1bdc94
                                 uint64_t shared_perm_lock_bits,
1bdc94
                                 bool unlock, Error **errp)
1bdc94
@@ -641,13 +641,13 @@ static int raw_apply_lock_bytes(BDRVRawState *s,
1bdc94
     PERM_FOREACH(i) {
1bdc94
         int off = RAW_LOCK_PERM_BASE + i;
1bdc94
         if (perm_lock_bits & (1ULL << i)) {
1bdc94
-            ret = qemu_lock_fd(s->lock_fd, off, 1, false);
1bdc94
+            ret = qemu_lock_fd(fd, off, 1, false);
1bdc94
             if (ret) {
1bdc94
                 error_setg(errp, "Failed to lock byte %d", off);
1bdc94
                 return ret;
1bdc94
             }
1bdc94
         } else if (unlock) {
1bdc94
-            ret = qemu_unlock_fd(s->lock_fd, off, 1);
1bdc94
+            ret = qemu_unlock_fd(fd, off, 1);
1bdc94
             if (ret) {
1bdc94
                 error_setg(errp, "Failed to unlock byte %d", off);
1bdc94
                 return ret;
1bdc94
@@ -657,13 +657,13 @@ static int raw_apply_lock_bytes(BDRVRawState *s,
1bdc94
     PERM_FOREACH(i) {
1bdc94
         int off = RAW_LOCK_SHARED_BASE + i;
1bdc94
         if (shared_perm_lock_bits & (1ULL << i)) {
1bdc94
-            ret = qemu_lock_fd(s->lock_fd, off, 1, false);
1bdc94
+            ret = qemu_lock_fd(fd, off, 1, false);
1bdc94
             if (ret) {
1bdc94
                 error_setg(errp, "Failed to lock byte %d", off);
1bdc94
                 return ret;
1bdc94
             }
1bdc94
         } else if (unlock) {
1bdc94
-            ret = qemu_unlock_fd(s->lock_fd, off, 1);
1bdc94
+            ret = qemu_unlock_fd(fd, off, 1);
1bdc94
             if (ret) {
1bdc94
                 error_setg(errp, "Failed to unlock byte %d", off);
1bdc94
                 return ret;
1bdc94
@@ -674,8 +674,7 @@ static int raw_apply_lock_bytes(BDRVRawState *s,
1bdc94
 }
1bdc94
 
1bdc94
 /* Check "unshared" bytes implied by @perm and ~@shared_perm in the file. */
1bdc94
-static int raw_check_lock_bytes(BDRVRawState *s,
1bdc94
-                                uint64_t perm, uint64_t shared_perm,
1bdc94
+static int raw_check_lock_bytes(int fd, uint64_t perm, uint64_t shared_perm,
1bdc94
                                 Error **errp)
1bdc94
 {
1bdc94
     int ret;
1bdc94
@@ -685,7 +684,7 @@ static int raw_check_lock_bytes(BDRVRawState *s,
1bdc94
         int off = RAW_LOCK_SHARED_BASE + i;
1bdc94
         uint64_t p = 1ULL << i;
1bdc94
         if (perm & p) {
1bdc94
-            ret = qemu_lock_fd_test(s->lock_fd, off, 1, true);
1bdc94
+            ret = qemu_lock_fd_test(fd, off, 1, true);
1bdc94
             if (ret) {
1bdc94
                 char *perm_name = bdrv_perm_names(p);
1bdc94
                 error_setg(errp,
1bdc94
@@ -702,7 +701,7 @@ static int raw_check_lock_bytes(BDRVRawState *s,
1bdc94
         int off = RAW_LOCK_PERM_BASE + i;
1bdc94
         uint64_t p = 1ULL << i;
1bdc94
         if (!(shared_perm & p)) {
1bdc94
-            ret = qemu_lock_fd_test(s->lock_fd, off, 1, true);
1bdc94
+            ret = qemu_lock_fd_test(fd, off, 1, true);
1bdc94
             if (ret) {
1bdc94
                 char *perm_name = bdrv_perm_names(p);
1bdc94
                 error_setg(errp,
1bdc94
@@ -739,11 +738,11 @@ static int raw_handle_perm_lock(BlockDriverState *bs,
1bdc94
 
1bdc94
     switch (op) {
1bdc94
     case RAW_PL_PREPARE:
1bdc94
-        ret = raw_apply_lock_bytes(s, s->perm | new_perm,
1bdc94
+        ret = raw_apply_lock_bytes(s->lock_fd, s->perm | new_perm,
1bdc94
                                    ~s->shared_perm | ~new_shared,
1bdc94
                                    false, errp);
1bdc94
         if (!ret) {
1bdc94
-            ret = raw_check_lock_bytes(s, new_perm, new_shared, errp);
1bdc94
+            ret = raw_check_lock_bytes(s->lock_fd, new_perm, new_shared, errp);
1bdc94
             if (!ret) {
1bdc94
                 return 0;
1bdc94
             }
1bdc94
@@ -751,7 +750,8 @@ static int raw_handle_perm_lock(BlockDriverState *bs,
1bdc94
         op = RAW_PL_ABORT;
1bdc94
         /* fall through to unlock bytes. */
1bdc94
     case RAW_PL_ABORT:
1bdc94
-        raw_apply_lock_bytes(s, s->perm, ~s->shared_perm, true, &local_err);
1bdc94
+        raw_apply_lock_bytes(s->lock_fd, s->perm, ~s->shared_perm,
1bdc94
+                             true, &local_err);
1bdc94
         if (local_err) {
1bdc94
             /* Theoretically the above call only unlocks bytes and it cannot
1bdc94
              * fail. Something weird happened, report it.
1bdc94
@@ -760,7 +760,8 @@ static int raw_handle_perm_lock(BlockDriverState *bs,
1bdc94
         }
1bdc94
         break;
1bdc94
     case RAW_PL_COMMIT:
1bdc94
-        raw_apply_lock_bytes(s, new_perm, ~new_shared, true, &local_err);
1bdc94
+        raw_apply_lock_bytes(s->lock_fd, new_perm, ~new_shared,
1bdc94
+                             true, &local_err);
1bdc94
         if (local_err) {
1bdc94
             /* Theoretically the above call only unlocks bytes and it cannot
1bdc94
              * fail. Something weird happened, report it.
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94