|
|
383d26 |
From e342033247c37090e1b8e0f99abc849e36521701 Mon Sep 17 00:00:00 2001
|
|
|
383d26 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Date: Fri, 23 Nov 2018 10:41:48 +0100
|
|
|
383d26 |
Subject: [PATCH 07/34] file-posix: Support auto-read-only option
|
|
|
383d26 |
|
|
|
383d26 |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Message-id: <20181123104154.13541-7-kwolf@redhat.com>
|
|
|
383d26 |
Patchwork-id: 83116
|
|
|
383d26 |
O-Subject: [RHEL-7.7/7.6.z qemu-kvm-rhev PATCH v2 06/12] file-posix: Support auto-read-only option
|
|
|
383d26 |
Bugzilla: 1623986
|
|
|
383d26 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
383d26 |
|
|
|
383d26 |
If read-only=off, but auto-read-only=on is given, open the file
|
|
|
383d26 |
read-write if we have the permissions, but instead of erroring out for
|
|
|
383d26 |
read-only files, just degrade to read-only.
|
|
|
383d26 |
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
383d26 |
(cherry picked from commit 64107dc044a54ebe46348ac0fe87584be2eb3e81)
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
---
|
|
|
383d26 |
block/file-posix.c | 19 ++++++++++++++++---
|
|
|
383d26 |
1 file changed, 16 insertions(+), 3 deletions(-)
|
|
|
383d26 |
|
|
|
383d26 |
diff --git a/block/file-posix.c b/block/file-posix.c
|
|
|
383d26 |
index c12cdb7..7e6869d 100644
|
|
|
383d26 |
--- a/block/file-posix.c
|
|
|
383d26 |
+++ b/block/file-posix.c
|
|
|
383d26 |
@@ -517,9 +517,22 @@ static int raw_open_common(BlockDriverState *bs, QDict *options,
|
|
|
383d26 |
|
|
|
383d26 |
s->fd = -1;
|
|
|
383d26 |
fd = qemu_open(filename, s->open_flags, 0644);
|
|
|
383d26 |
- if (fd < 0) {
|
|
|
383d26 |
- ret = -errno;
|
|
|
383d26 |
- error_setg_errno(errp, errno, "Could not open '%s'", filename);
|
|
|
383d26 |
+ ret = fd < 0 ? -errno : 0;
|
|
|
383d26 |
+
|
|
|
383d26 |
+ if (ret == -EACCES || ret == -EROFS) {
|
|
|
383d26 |
+ /* Try to degrade to read-only, but if it doesn't work, still use the
|
|
|
383d26 |
+ * normal error message. */
|
|
|
383d26 |
+ if (bdrv_apply_auto_read_only(bs, NULL, NULL) == 0) {
|
|
|
383d26 |
+ bdrv_flags &= ~BDRV_O_RDWR;
|
|
|
383d26 |
+ raw_parse_flags(bdrv_flags, &s->open_flags);
|
|
|
383d26 |
+ assert(!(s->open_flags & O_CREAT));
|
|
|
383d26 |
+ fd = qemu_open(filename, s->open_flags);
|
|
|
383d26 |
+ ret = fd < 0 ? -errno : 0;
|
|
|
383d26 |
+ }
|
|
|
383d26 |
+ }
|
|
|
383d26 |
+
|
|
|
383d26 |
+ if (ret < 0) {
|
|
|
383d26 |
+ error_setg_errno(errp, -ret, "Could not open '%s'", filename);
|
|
|
383d26 |
if (ret == -EROFS) {
|
|
|
383d26 |
ret = -EACCES;
|
|
|
383d26 |
}
|
|
|
383d26 |
--
|
|
|
383d26 |
1.8.3.1
|
|
|
383d26 |
|