]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0027-PVE-Up-Config-file-posix-make-locking-optiono-on-cre.patch
Update and rebase to QEMU 4.1
[pve-qemu.git] / debian / patches / pve / 0027-PVE-Up-Config-file-posix-make-locking-optiono-on-cre.patch
CommitLineData
c36c53f8
WB
1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Fri, 26 Apr 2019 09:15:28 +0200
4Subject: [PATCH] PVE: [Up+Config] file-posix: make locking optiono on create
5
6Otherwise creating images on nfs/cifs can be problematic.
7
8Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
b855dce7 9Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
c36c53f8 10---
b855dce7 11 block/file-posix.c | 61 +++++++++++++++++++++++++++++---------------
c36c53f8 12 qapi/block-core.json | 3 ++-
b855dce7 13 2 files changed, 43 insertions(+), 21 deletions(-)
c36c53f8
WB
14
15diff --git a/block/file-posix.c b/block/file-posix.c
be901f66 16index 760648b78c..e40386384e 100644
c36c53f8
WB
17--- a/block/file-posix.c
18+++ b/block/file-posix.c
be901f66 19@@ -2240,6 +2240,7 @@ raw_co_create(BlockdevCreateOptions *options, Error **errp)
c36c53f8
WB
20 int fd;
21 uint64_t perm, shared;
22 int result = 0;
23+ bool locked = false;
24
25 /* Validate options and set default values */
26 assert(options->driver == BLOCKDEV_DRIVER_FILE);
be901f66 27@@ -2273,19 +2274,22 @@ raw_co_create(BlockdevCreateOptions *options, Error **errp)
c36c53f8
WB
28 perm = BLK_PERM_WRITE | BLK_PERM_RESIZE;
29 shared = BLK_PERM_ALL & ~BLK_PERM_RESIZE;
30
31- /* Step one: Take locks */
b855dce7 32- result = raw_apply_lock_bytes(NULL, fd, perm, ~shared, false, errp);
c36c53f8
WB
33- if (result < 0) {
34- goto out_close;
35- }
36+ if (file_opts->locking != ON_OFF_AUTO_OFF) {
37+ /* Step one: Take locks */
b855dce7 38+ result = raw_apply_lock_bytes(NULL, fd, perm, ~shared, false, errp);
c36c53f8
WB
39+ if (result < 0) {
40+ goto out_close;
41+ }
42+ locked = true;
43
44- /* Step two: Check that nobody else has taken conflicting locks */
45- result = raw_check_lock_bytes(fd, perm, shared, errp);
46- if (result < 0) {
b855dce7
TL
47- error_append_hint(errp,
48- "Is another process using the image [%s]?\n",
49- file_opts->filename);
c36c53f8
WB
50- goto out_unlock;
51+ /* Step two: Check that nobody else has taken conflicting locks */
52+ result = raw_check_lock_bytes(fd, perm, shared, errp);
53+ if (result < 0) {
b855dce7
TL
54+ error_append_hint(errp,
55+ "Is another process using the image [%s]?\n",
56+ file_opts->filename);
c36c53f8
WB
57+ goto out_unlock;
58+ }
59 }
60
61 /* Clear the file by truncating it to 0 */
be901f66 62@@ -2318,13 +2322,15 @@ raw_co_create(BlockdevCreateOptions *options, Error **errp)
c36c53f8
WB
63 }
64
65 out_unlock:
b855dce7 66- raw_apply_lock_bytes(NULL, fd, 0, 0, true, &local_err);
c36c53f8
WB
67- if (local_err) {
68- /* The above call should not fail, and if it does, that does
69- * not mean the whole creation operation has failed. So
70- * report it the user for their convenience, but do not report
71- * it to the caller. */
b855dce7 72- warn_report_err(local_err);
c36c53f8 73+ if (locked) {
b855dce7 74+ raw_apply_lock_bytes(NULL, fd, 0, 0, true, &local_err);
c36c53f8
WB
75+ if (local_err) {
76+ /* The above call should not fail, and if it does, that does
77+ * not mean the whole creation operation has failed. So
78+ * report it the user for their convenience, but do not report
79+ * it to the caller. */
b855dce7 80+ warn_report_err(local_err);
c36c53f8
WB
81+ }
82 }
83
84 out_close:
be901f66 85@@ -2345,6 +2351,7 @@ static int coroutine_fn raw_co_create_opts(const char *filename, QemuOpts *opts,
c36c53f8
WB
86 PreallocMode prealloc;
87 char *buf = NULL;
88 Error *local_err = NULL;
89+ OnOffAuto locking;
90
91 /* Skip file: protocol prefix */
92 strstart(filename, "file:", &filename);
be901f66 93@@ -2362,6 +2369,18 @@ static int coroutine_fn raw_co_create_opts(const char *filename, QemuOpts *opts,
c36c53f8
WB
94 return -EINVAL;
95 }
96
97+ locking = qapi_enum_parse(&OnOffAuto_lookup,
98+ qemu_opt_get(opts, "locking"),
99+ ON_OFF_AUTO_AUTO, &local_err);
100+ if (local_err) {
101+ error_propagate(errp, local_err);
102+ return -EINVAL;
103+ }
104+
105+ if (locking == ON_OFF_AUTO_AUTO) {
106+ locking = ON_OFF_AUTO_OFF;
107+ }
108+
109 options = (BlockdevCreateOptions) {
110 .driver = BLOCKDEV_DRIVER_FILE,
111 .u.file = {
be901f66 112@@ -2371,6 +2390,8 @@ static int coroutine_fn raw_co_create_opts(const char *filename, QemuOpts *opts,
c36c53f8
WB
113 .preallocation = prealloc,
114 .has_nocow = true,
115 .nocow = nocow,
116+ .has_locking = true,
117+ .locking = locking,
118 },
119 };
120 return raw_co_create(&options, errp);
be901f66 121@@ -2812,7 +2833,7 @@ static int raw_check_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared,
b855dce7
TL
122 }
123
124 /* Copy locks to the new fd */
125- if (s->perm_change_fd) {
126+ if (s->use_lock && s->perm_change_fd) {
127 ret = raw_apply_lock_bytes(NULL, s->perm_change_fd, perm, ~shared,
128 false, errp);
129 if (ret < 0) {
c36c53f8 130diff --git a/qapi/block-core.json b/qapi/block-core.json
be901f66 131index 97cb7ec41c..f432d4f3ec 100644
c36c53f8
WB
132--- a/qapi/block-core.json
133+++ b/qapi/block-core.json
be901f66 134@@ -4284,7 +4284,8 @@
c36c53f8
WB
135 'data': { 'filename': 'str',
136 'size': 'size',
137 '*preallocation': 'PreallocMode',
138- '*nocow': 'bool' } }
139+ '*nocow': 'bool',
140+ '*locking': 'OnOffAuto' } }
141
142 ##
143 # @BlockdevCreateOptionsGluster: