summaryrefslogtreecommitdiffstats
path: root/xlators/features/qemu-block/src/bdrv-xlator.c
blob: 145f7c79d5e3027bb7d370f39150b792c0b7d372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/*
  Copyright (c) 2013 Red Hat, Inc. <http://www.redhat.com>
  This file is part of GlusterFS.

  This file is licensed to you under your choice of the GNU Lesser
  General Public License, version 3 or any later version (LGPLv3 or
  later), or the GNU General Public License, version 2 (GPLv2), in all
  cases as published by the Free Software Foundation.
*/


#ifndef _CONFIG_H
#define _CONFIG_H
#include "config.h"
#endif

#include "inode.h"
#include "syncop.h"
#include "qemu-block.h"
#include "block/block_int.h"

typedef struct BDRVGlusterState {
	inode_t *inode;
} BDRVGlusterState;

static QemuOptsList runtime_opts = {
	.name = "gluster",
	.head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
	.desc = {
		{
			.name = "filename",
			.type = QEMU_OPT_STRING,
			.help = "GFID of file",
		},
		{ /* end of list */ }
	},
};

inode_t *
qb_inode_from_filename (const char *filename)
{
	const char *iptr = NULL;
	inode_t *inode = NULL;

	iptr = filename + 17;
	sscanf (iptr, "%p", &inode);

	return inode;
}


int
qb_inode_to_filename (inode_t *inode, char *filename, int size)
{
	return snprintf (filename, size, "gluster://inodep:%p", inode);
}


static fd_t *
fd_from_bs (BlockDriverState *bs)
{
	BDRVGlusterState *s = bs->opaque;

	return fd_anonymous (s->inode);
}


static int
qemu_gluster_open (BlockDriverState *bs, QDict *options, int bdrv_flags)
{
	inode_t *inode = NULL;
	BDRVGlusterState *s = NULL;
	QemuOpts *opts = NULL;
	Error *local_err = NULL;
	const char *filename = NULL;

	opts = qemu_opts_create_nofail(&runtime_opts);
	qemu_opts_absorb_qdict(opts, options, &local_err);
	if (error_is_set(&local_err)) {
		qerror_report_err(local_err);
		error_free(local_err);
		return -EINVAL;
	}

	filename = qemu_opt_get(opts, "filename");

	inode = qb_inode_from_filename (filename);
	if (!inode)
		return -EINVAL;

	s = bs->opaque;
	s->inode = inode_ref (inode);

	return 0;
}


static int
qemu_gluster_create (const char *filename, QEMUOptionParameter *options)
{
	uint64_t total_size = 0;
	inode_t *inode = NULL;
	fd_t *fd = NULL;
	struct iatt stat = {0, };
	int ret = 0;

	inode = qb_inode_from_filename (filename);
	if (!inode)
		return -EINVAL;

	while (options && options->name) {
		if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
			total_size = options->value.n / BDRV_SECTOR_SIZE;
		}
		options++;
	}

	fd = fd_anonymous (inode);
	if (!fd)
		return -ENOMEM;

	ret = syncop_fstat (FIRST_CHILD(THIS), fd, &stat);
	if (ret) {
		fd_unref (fd);
		return -errno;
	}

	if (stat.ia_size) {
		/* format ONLY if the filesize is 0 bytes */
		fd_unref (fd);
		return -EFBIG;
	}

	if (total_size) {
		ret = syncop_ftruncate (FIRST_CHILD(THIS), fd, total_size);
		if (ret) {
			fd_unref (fd);
			return -errno;
		}
	}

	fd_unref (fd);
	return 0;
}


static int
qemu_gluster_co_readv (BlockDriverState *bs, int64_t sector_num, int nb_sectors,
		       QEMUIOVector *qiov)
{
	fd_t *fd = NULL;
	off_t offset = 0;
	size_t size = 0;
	struct iovec *iov = NULL;
	int count = 0;
	struct iobref *iobref = NULL;
	int ret = 0;

	fd = fd_from_bs (bs);
	if (!fd)
		return -EIO;

	offset = sector_num * BDRV_SECTOR_SIZE;
	size = nb_sectors * BDRV_SECTOR_SIZE;

	ret = syncop_readv (FIRST_CHILD(THIS), fd, size, offset, 0,
			    &iov, &count, &iobref);
	if (ret < 0) {
		ret = -errno;
		goto out;
	}

	iov_copy (qiov->iov, qiov->niov, iov, count); /* *choke!* */

out:
	GF_FREE (iov);
	if (iobref)
		iobref_unref (iobref);
	fd_unref (fd);
	return ret;
}


static int
qemu_gluster_co_writev (BlockDriverState *bs, int64_t sector_num, int nb_sectors,
			QEMUIOVector *qiov)
{
	fd_t *fd = NULL;
	off_t offset = 0;
	size_t size = 0;
	struct iobref *iobref = NULL;
	struct iobuf *iobuf = NULL;
	struct iovec iov = {0, };
	int ret = -ENOMEM;

	fd = fd_from_bs (bs);
	if (!fd)
		return -EIO;

	offset = sector_num * BDRV_SECTOR_SIZE;
	size = nb_sectors * BDRV_SECTOR_SIZE;

	iobuf = iobuf_get2 (THIS->ctx->iobuf_pool, size);
	if (!iobuf)
		goto out;

	iobref = iobref_new ();
	if (!iobref) {
		iobuf_unref (iobuf);
		goto out;
	}

	iobref_add (iobref, iobuf);

	iov_unload (iobuf_ptr (iobuf), qiov->iov, qiov->niov); /* *choke!* */

	iov.iov_base = iobuf_ptr (iobuf);
	iov.iov_len = size;

	ret = syncop_writev (FIRST_CHILD(THIS), fd, &iov, 1, offset, iobref, 0);
	if (ret < 0)
		ret = -errno;

out:
	if (iobuf)
		iobuf_unref (iobuf);
	if (iobref)
		iobref_unref (iobref);
	fd_unref (fd);
	return ret;
}


static int
qemu_gluster_co_flush (BlockDriverState *bs)
{
	fd_t *fd = NULL;
	int ret = 0;

	fd = fd_from_bs (bs);

	ret = syncop_flush (FIRST_CHILD(THIS), fd);

	fd_unref (fd);

	return ret;
}


static int
qemu_gluster_co_fsync (BlockDriverState *bs)
{
	fd_t *fd = NULL;
	int ret = 0;

	fd = fd_from_bs (bs);

	ret = syncop_fsync (FIRST_CHILD(THIS), fd, 0);

	fd_unref (fd);

	return ret;
}


static int
qemu_gluster_truncate (BlockDriverState *bs, int64_t offset)
{
	fd_t *fd = NULL;
	int ret = 0;

	fd = fd_from_bs (bs);

	ret = syncop_ftruncate (FIRST_CHILD(THIS), fd, offset);

	fd_unref (fd);

	if (ret < 0)
		return ret;

	return ret;
}


static int64_t
qemu_gluster_getlength (BlockDriverState *bs)
{
	fd_t *fd = NULL;
	int ret = 0;
	struct iatt iatt = {0, };

	fd = fd_from_bs (bs);

	ret = syncop_fstat (FIRST_CHILD(THIS), fd, &iatt);
	if (ret < 0)
		return -1;

	return iatt.ia_size;
}


static int64_t
qemu_gluster_allocated_file_size (BlockDriverState *bs)
{
	fd_t *fd = NULL;
	int ret = 0;
	struct iatt iatt = {0, };

	fd = fd_from_bs (bs);

	ret = syncop_fstat (FIRST_CHILD(THIS), fd, &iatt);
	if (ret < 0)
		return -1;

	return iatt.ia_blocks * 512;
}


static void
qemu_gluster_close (BlockDriverState *bs)
{
	BDRVGlusterState *s = NULL;

	s = bs->opaque;

	inode_unref (s->inode);

	return;
}


static QEMUOptionParameter qemu_gluster_create_options[] = {
	{
		.name = BLOCK_OPT_SIZE,
		.type = OPT_SIZE,
		.help = "Virtual disk size"
	},
	{ NULL }
};


static BlockDriver bdrv_gluster = {
	.format_name                  = "gluster",
	.protocol_name                = "gluster",
	.instance_size                = sizeof(BDRVGlusterState),
	.bdrv_file_open               = qemu_gluster_open,
	.bdrv_close                   = qemu_gluster_close,
	.bdrv_create                  = qemu_gluster_create,
	.bdrv_getlength               = qemu_gluster_getlength,
	.bdrv_get_allocated_file_size = qemu_gluster_allocated_file_size,
	.bdrv_co_readv                = qemu_gluster_co_readv,
	.bdrv_co_writev               = qemu_gluster_co_writev,
	.bdrv_co_flush_to_os          = qemu_gluster_co_flush,
	.bdrv_co_flush_to_disk        = qemu_gluster_co_fsync,
	.bdrv_truncate                = qemu_gluster_truncate,
	.create_options               = qemu_gluster_create_options,
};


static void bdrv_gluster_init(void)
{
	bdrv_register(&bdrv_gluster);
}


block_init(bdrv_gluster_init);