]> git.proxmox.com Git - pve-qemu.git/blob - debian/patches/pve/0010-PVE-Up-qemu-img-dd-add-osize-and-read-from-to-stdin-.patch
e12ed3fba3ab321b800ef7bfe6098824e1385321
[pve-qemu.git] / debian / patches / pve / 0010-PVE-Up-qemu-img-dd-add-osize-and-read-from-to-stdin-.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Mon, 6 Apr 2020 12:16:40 +0200
4 Subject: [PATCH] PVE: [Up] qemu-img dd: add osize and read from/to
5 stdin/stdout
6
7 Neither convert nor dd were previously able to write to or
8 read from a pipe. Particularly serializing an image file
9 into a raw stream or vice versa can be useful, but using
10 `qemu-img convert -f qcow2 -O raw foo.qcow2 /dev/stdout` in
11 a pipe will fail trying to seek.
12
13 While dd and convert have overlapping use cases, `dd` is a
14 simple read/write loop while convert is much more
15 sophisticated and has ways to dealing with holes and blocks
16 of zeroes.
17 Since these typically can't be detected in pipes via
18 SEEK_DATA/HOLE or skipped while writing, dd seems to be the
19 better choice for implementing stdin/stdout streams.
20
21 This patch causes "if" and "of" to default to stdin and
22 stdout respectively, allowing only the "raw" format to be
23 used in these cases.
24 Since the input can now be a pipe we have no way of
25 detecting the size of the output image to create. Since we
26 also want to support images with a size not matching the
27 dd command's "bs" parameter (which, together with "count"
28 could be used to calculate the desired size, and is already
29 used to limit it), the "osize" option is added to explicitly
30 override the output file's size.
31
32 Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
33 Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
34 ---
35 qemu-img-cmds.hx | 4 +-
36 qemu-img.c | 187 +++++++++++++++++++++++++++++------------------
37 2 files changed, 119 insertions(+), 72 deletions(-)
38
39 diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx
40 index b3620f29e5..e70ef3dc91 100644
41 --- a/qemu-img-cmds.hx
42 +++ b/qemu-img-cmds.hx
43 @@ -58,9 +58,9 @@ SRST
44 ERST
45
46 DEF("dd", img_dd,
47 - "dd [--image-opts] [-U] [-f fmt] [-O output_fmt] [bs=block_size] [count=blocks] [skip=blocks] if=input of=output")
48 + "dd [--image-opts] [-U] [-f fmt] [-O output_fmt] [bs=block_size] [count=blocks] [skip=blocks] [osize=output_size] if=input of=output")
49 SRST
50 -.. option:: dd [--image-opts] [-U] [-f FMT] [-O OUTPUT_FMT] [bs=BLOCK_SIZE] [count=BLOCKS] [skip=BLOCKS] if=INPUT of=OUTPUT
51 +.. option:: dd [--image-opts] [-U] [-f FMT] [-O OUTPUT_FMT] [bs=BLOCK_SIZE] [count=BLOCKS] [skip=BLOCKS] [osize=OUTPUT_SIZE] if=INPUT of=OUTPUT
52 ERST
53
54 DEF("info", img_info,
55 diff --git a/qemu-img.c b/qemu-img.c
56 index 5dc1d0a2ca..f773182bd0 100644
57 --- a/qemu-img.c
58 +++ b/qemu-img.c
59 @@ -4793,10 +4793,12 @@ static int img_bitmap(int argc, char **argv)
60 #define C_IF 04
61 #define C_OF 010
62 #define C_SKIP 020
63 +#define C_OSIZE 040
64
65 struct DdInfo {
66 unsigned int flags;
67 int64_t count;
68 + int64_t osize;
69 };
70
71 struct DdIo {
72 @@ -4872,6 +4874,19 @@ static int img_dd_skip(const char *arg,
73 return 0;
74 }
75
76 +static int img_dd_osize(const char *arg,
77 + struct DdIo *in, struct DdIo *out,
78 + struct DdInfo *dd)
79 +{
80 + dd->osize = cvtnum("size", arg);
81 +
82 + if (dd->osize < 0) {
83 + return 1;
84 + }
85 +
86 + return 0;
87 +}
88 +
89 static int img_dd(int argc, char **argv)
90 {
91 int ret = 0;
92 @@ -4912,6 +4927,7 @@ static int img_dd(int argc, char **argv)
93 { "if", img_dd_if, C_IF },
94 { "of", img_dd_of, C_OF },
95 { "skip", img_dd_skip, C_SKIP },
96 + { "osize", img_dd_osize, C_OSIZE },
97 { NULL, NULL, 0 }
98 };
99 const struct option long_options[] = {
100 @@ -4987,91 +5003,112 @@ static int img_dd(int argc, char **argv)
101 arg = NULL;
102 }
103
104 - if (!(dd.flags & C_IF && dd.flags & C_OF)) {
105 - error_report("Must specify both input and output files");
106 + if (!(dd.flags & C_IF) && (!fmt || strcmp(fmt, "raw") != 0)) {
107 + error_report("Input format must be raw when readin from stdin");
108 ret = -1;
109 goto out;
110 }
111 -
112 - blk1 = img_open(image_opts, in.filename, fmt, 0, false, false,
113 - force_share);
114 -
115 - if (!blk1) {
116 + if (!(dd.flags & C_OF) && strcmp(out_fmt, "raw") != 0) {
117 + error_report("Output format must be raw when writing to stdout");
118 ret = -1;
119 goto out;
120 }
121
122 - drv = bdrv_find_format(out_fmt);
123 - if (!drv) {
124 - error_report("Unknown file format");
125 - ret = -1;
126 - goto out;
127 - }
128 - proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
129 + if (dd.flags & C_IF) {
130 + blk1 = img_open(image_opts, in.filename, fmt, 0, false, false,
131 + force_share);
132
133 - if (!proto_drv) {
134 - error_report_err(local_err);
135 - ret = -1;
136 - goto out;
137 - }
138 - if (!drv->create_opts) {
139 - error_report("Format driver '%s' does not support image creation",
140 - drv->format_name);
141 - ret = -1;
142 - goto out;
143 - }
144 - if (!proto_drv->create_opts) {
145 - error_report("Protocol driver '%s' does not support image creation",
146 - proto_drv->format_name);
147 - ret = -1;
148 - goto out;
149 + if (!blk1) {
150 + ret = -1;
151 + goto out;
152 + }
153 }
154 - create_opts = qemu_opts_append(create_opts, drv->create_opts);
155 - create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
156
157 - opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
158 -
159 - size = blk_getlength(blk1);
160 - if (size < 0) {
161 - error_report("Failed to get size for '%s'", in.filename);
162 + if (dd.flags & C_OSIZE) {
163 + size = dd.osize;
164 + } else if (dd.flags & C_IF) {
165 + size = blk_getlength(blk1);
166 + if (size < 0) {
167 + error_report("Failed to get size for '%s'", in.filename);
168 + ret = -1;
169 + goto out;
170 + }
171 + } else if (dd.flags & C_COUNT) {
172 + size = dd.count * in.bsz;
173 + } else {
174 + error_report("Output size must be known when reading from stdin");
175 ret = -1;
176 goto out;
177 }
178
179 - if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
180 + if (!(dd.flags & C_OSIZE) && dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
181 dd.count * in.bsz < size) {
182 size = dd.count * in.bsz;
183 }
184
185 - /* Overflow means the specified offset is beyond input image's size */
186 - if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
187 - size < in.bsz * in.offset)) {
188 - qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
189 - } else {
190 - qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
191 - size - in.bsz * in.offset, &error_abort);
192 - }
193 + if (dd.flags & C_OF) {
194 + drv = bdrv_find_format(out_fmt);
195 + if (!drv) {
196 + error_report("Unknown file format");
197 + ret = -1;
198 + goto out;
199 + }
200 + proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
201
202 - ret = bdrv_create(drv, out.filename, opts, &local_err);
203 - if (ret < 0) {
204 - error_reportf_err(local_err,
205 - "%s: error while creating output image: ",
206 - out.filename);
207 - ret = -1;
208 - goto out;
209 - }
210 + if (!proto_drv) {
211 + error_report_err(local_err);
212 + ret = -1;
213 + goto out;
214 + }
215 + if (!drv->create_opts) {
216 + error_report("Format driver '%s' does not support image creation",
217 + drv->format_name);
218 + ret = -1;
219 + goto out;
220 + }
221 + if (!proto_drv->create_opts) {
222 + error_report("Protocol driver '%s' does not support image creation",
223 + proto_drv->format_name);
224 + ret = -1;
225 + goto out;
226 + }
227 + create_opts = qemu_opts_append(create_opts, drv->create_opts);
228 + create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
229
230 - /* TODO, we can't honour --image-opts for the target,
231 - * since it needs to be given in a format compatible
232 - * with the bdrv_create() call above which does not
233 - * support image-opts style.
234 - */
235 - blk2 = img_open_file(out.filename, NULL, out_fmt, BDRV_O_RDWR,
236 - false, false, false);
237 + opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
238
239 - if (!blk2) {
240 - ret = -1;
241 - goto out;
242 + /* Overflow means the specified offset is beyond input image's size */
243 + if (dd.flags & C_OSIZE) {
244 + qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
245 + } else if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
246 + size < in.bsz * in.offset)) {
247 + qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
248 + } else {
249 + qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
250 + size - in.bsz * in.offset, &error_abort);
251 + }
252 +
253 + ret = bdrv_create(drv, out.filename, opts, &local_err);
254 + if (ret < 0) {
255 + error_reportf_err(local_err,
256 + "%s: error while creating output image: ",
257 + out.filename);
258 + ret = -1;
259 + goto out;
260 + }
261 +
262 + /* TODO, we can't honour --image-opts for the target,
263 + * since it needs to be given in a format compatible
264 + * with the bdrv_create() call above which does not
265 + * support image-opts style.
266 + */
267 + blk2 = img_open_file(out.filename, NULL, out_fmt, BDRV_O_RDWR,
268 + false, false, false);
269 +
270 + if (!blk2) {
271 + ret = -1;
272 + goto out;
273 + }
274 }
275
276 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
277 @@ -5089,11 +5126,17 @@ static int img_dd(int argc, char **argv)
278
279 for (out_pos = 0; in_pos < size; block_count++) {
280 int in_ret, out_ret;
281 -
282 - if (in_pos + in.bsz > size) {
283 - in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos);
284 + size_t in_bsz = in_pos + in.bsz > size ? size - in_pos : in.bsz;
285 + if (blk1) {
286 + in_ret = blk_pread(blk1, in_pos, in.buf, in_bsz);
287 } else {
288 - in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz);
289 + in_ret = read(STDIN_FILENO, in.buf, in_bsz);
290 + if (in_ret == 0) {
291 + /* early EOF is considered an error */
292 + error_report("Input ended unexpectedly");
293 + ret = -1;
294 + goto out;
295 + }
296 }
297 if (in_ret < 0) {
298 error_report("error while reading from input image file: %s",
299 @@ -5103,9 +5146,13 @@ static int img_dd(int argc, char **argv)
300 }
301 in_pos += in_ret;
302
303 - out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
304 + if (blk2) {
305 + out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
306 + } else {
307 + out_ret = write(STDOUT_FILENO, in.buf, in_ret);
308 + }
309
310 - if (out_ret < 0) {
311 + if (out_ret != in_ret) {
312 error_report("error while writing to output image file: %s",
313 strerror(-out_ret));
314 ret = -1;