]> git.proxmox.com Git - mirror_qemu.git/blame - nbd/nbd-internal.h
Merge tag 'pull-maintainer-may24-160524-2' of https://gitlab.com/stsquad/qemu into...
[mirror_qemu.git] / nbd / nbd-internal.h
CommitLineData
798bfe00
FZ
1/*
2 * NBD Internal Declarations
3 *
d95ffb6f 4 * Copyright Red Hat
798bfe00
FZ
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
9
10#ifndef NBD_INTERNAL_H
11#define NBD_INTERNAL_H
12#include "block/nbd.h"
13#include "sysemu/block-backend.h"
f95910fe 14#include "io/channel-tls.h"
798bfe00 15
1c778ef7 16#include "qemu/iov.h"
798bfe00 17
798bfe00
FZ
18#ifndef _WIN32
19#include <sys/ioctl.h>
20#endif
ded5d78c 21#ifdef HAVE_SYS_IOCCOM_H
798bfe00
FZ
22#include <sys/ioccom.h>
23#endif
798bfe00
FZ
24
25#ifdef __linux__
26#include <linux/fs.h>
27#endif
28
58369e22 29#include "qemu/bswap.h"
798bfe00 30
798bfe00
FZ
31/* This is all part of the "official" NBD API.
32 *
33 * The most up-to-date documentation is available at:
b626b51a 34 * https://github.com/yoe/nbd/blob/master/doc/proto.md
798bfe00
FZ
35 */
36
c8720ca0 37/* Size of all compact NBD_CMD_*, without payload */
5f66d060 38#define NBD_REQUEST_SIZE (4 + 2 + 2 + 8 + 8 + 4)
c8720ca0
EB
39/* Size of all extended NBD_CMD_*, without payload */
40#define NBD_EXTENDED_REQUEST_SIZE (4 + 2 + 2 + 8 + 8 + 8)
41
8ecaeae8 42/* Size of all NBD_REP_* sent in answer to most NBD_OPT_*, without payload */
5f66d060
EB
43#define NBD_REPLY_SIZE (4 + 4 + 8)
44/* Size of reply to NBD_OPT_EXPORT_NAME */
45#define NBD_REPLY_EXPORT_NAME_SIZE (8 + 2 + 124)
46/* Size of oldstyle negotiation */
47#define NBD_OLDSTYLE_NEGOTIATE_SIZE (8 + 8 + 8 + 4 + 124)
8ecaeae8 48
ef2e35fc 49#define NBD_INIT_MAGIC 0x4e42444d41474943LL /* ASCII "NBDMAGIC" */
ef2e35fc 50#define NBD_OPTS_MAGIC 0x49484156454F5054LL /* ASCII "IHAVEOPT" */
92652b12
VSO
51#define NBD_CLIENT_MAGIC 0x0000420281861253LL
52#define NBD_REP_MAGIC 0x0003e889045565a9LL
798bfe00 53
92652b12
VSO
54#define NBD_SET_SOCK _IO(0xab, 0)
55#define NBD_SET_BLKSIZE _IO(0xab, 1)
56#define NBD_SET_SIZE _IO(0xab, 2)
57#define NBD_DO_IT _IO(0xab, 3)
58#define NBD_CLEAR_SOCK _IO(0xab, 4)
59#define NBD_CLEAR_QUE _IO(0xab, 5)
60#define NBD_PRINT_DEBUG _IO(0xab, 6)
61#define NBD_SET_SIZE_BLOCKS _IO(0xab, 7)
62#define NBD_DISCONNECT _IO(0xab, 8)
63#define NBD_SET_TIMEOUT _IO(0xab, 9)
64#define NBD_SET_FLAGS _IO(0xab, 10)
798bfe00 65
d1fdf257 66/* nbd_write
f5d406fe
VSO
67 * Writes @size bytes to @ioc. Returns 0 on success.
68 */
d1fdf257
VSO
69static inline int nbd_write(QIOChannel *ioc, const void *buffer, size_t size,
70 Error **errp)
798bfe00 71{
030fa7f6 72 return qio_channel_write_all(ioc, buffer, size, errp) < 0 ? -EIO : 0;
798bfe00
FZ
73}
74
44298024
VSO
75int nbd_drop(QIOChannel *ioc, size_t size, Error **errp);
76
798bfe00 77#endif