blob: df42fef706687afe740431acc593cec2dd91e4bc [file] [log] [blame]
Fam Zheng798bfe02016-01-14 16:41:02 +08001/*
2 * NBD Internal Declarations
3 *
4 * Copyright (C) 2016 Red Hat, Inc.
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"
Daniel P. Berrangef95910f2016-02-10 18:41:11 +000014#include "io/channel-tls.h"
Fam Zheng798bfe02016-01-14 16:41:02 +080015
Daniel P. Berrange1c778ef2016-02-10 18:41:04 +000016#include "qemu/iov.h"
Fam Zheng798bfe02016-01-14 16:41:02 +080017
Fam Zheng798bfe02016-01-14 16:41:02 +080018#ifndef _WIN32
19#include <sys/ioctl.h>
20#endif
Thomas Huthded5d782020-11-14 11:10:11 +010021#ifdef HAVE_SYS_IOCCOM_H
Fam Zheng798bfe02016-01-14 16:41:02 +080022#include <sys/ioccom.h>
23#endif
Fam Zheng798bfe02016-01-14 16:41:02 +080024
25#ifdef __linux__
26#include <linux/fs.h>
27#endif
28
Paolo Bonzini58369e22016-03-15 17:22:36 +010029#include "qemu/bswap.h"
Fam Zheng798bfe02016-01-14 16:41:02 +080030
Fam Zheng798bfe02016-01-14 16:41:02 +080031/* This is all part of the "official" NBD API.
32 *
33 * The most up-to-date documentation is available at:
Eric Blakeb626b512016-10-14 13:33:04 -050034 * https://github.com/yoe/nbd/blob/master/doc/proto.md
Fam Zheng798bfe02016-01-14 16:41:02 +080035 */
36
Eric Blake8ecaeae2017-07-07 15:30:47 -050037/* Size of all NBD_OPT_*, without payload */
Eric Blake5f66d062017-07-17 14:26:35 -050038#define NBD_REQUEST_SIZE (4 + 2 + 2 + 8 + 8 + 4)
Eric Blake8ecaeae2017-07-07 15:30:47 -050039/* Size of all NBD_REP_* sent in answer to most NBD_OPT_*, without payload */
Eric Blake5f66d062017-07-17 14:26:35 -050040#define NBD_REPLY_SIZE (4 + 4 + 8)
41/* Size of reply to NBD_OPT_EXPORT_NAME */
42#define NBD_REPLY_EXPORT_NAME_SIZE (8 + 2 + 124)
43/* Size of oldstyle negotiation */
44#define NBD_OLDSTYLE_NEGOTIATE_SIZE (8 + 8 + 8 + 4 + 124)
Eric Blake8ecaeae2017-07-07 15:30:47 -050045
Eric Blakeef2e35f2018-12-15 07:53:10 -060046#define NBD_INIT_MAGIC 0x4e42444d41474943LL /* ASCII "NBDMAGIC" */
Vladimir Sementsov-Ogievskiy92652b12017-10-12 12:53:14 +030047#define NBD_REQUEST_MAGIC 0x25609513
Eric Blakeef2e35f2018-12-15 07:53:10 -060048#define NBD_OPTS_MAGIC 0x49484156454F5054LL /* ASCII "IHAVEOPT" */
Vladimir Sementsov-Ogievskiy92652b12017-10-12 12:53:14 +030049#define NBD_CLIENT_MAGIC 0x0000420281861253LL
50#define NBD_REP_MAGIC 0x0003e889045565a9LL
Fam Zheng798bfe02016-01-14 16:41:02 +080051
Vladimir Sementsov-Ogievskiy92652b12017-10-12 12:53:14 +030052#define NBD_SET_SOCK _IO(0xab, 0)
53#define NBD_SET_BLKSIZE _IO(0xab, 1)
54#define NBD_SET_SIZE _IO(0xab, 2)
55#define NBD_DO_IT _IO(0xab, 3)
56#define NBD_CLEAR_SOCK _IO(0xab, 4)
57#define NBD_CLEAR_QUE _IO(0xab, 5)
58#define NBD_PRINT_DEBUG _IO(0xab, 6)
59#define NBD_SET_SIZE_BLOCKS _IO(0xab, 7)
60#define NBD_DISCONNECT _IO(0xab, 8)
61#define NBD_SET_TIMEOUT _IO(0xab, 9)
62#define NBD_SET_FLAGS _IO(0xab, 10)
Fam Zheng798bfe02016-01-14 16:41:02 +080063
Vladimir Sementsov-Ogievskiyd1fdf252017-06-02 18:01:39 +030064/* nbd_write
Vladimir Sementsov-Ogievskiyf5d406f2017-05-16 12:45:30 +030065 * Writes @size bytes to @ioc. Returns 0 on success.
66 */
Vladimir Sementsov-Ogievskiyd1fdf252017-06-02 18:01:39 +030067static inline int nbd_write(QIOChannel *ioc, const void *buffer, size_t size,
68 Error **errp)
Fam Zheng798bfe02016-01-14 16:41:02 +080069{
Eric Blake030fa7f2017-09-05 14:11:14 -050070 return qio_channel_write_all(ioc, buffer, size, errp) < 0 ? -EIO : 0;
Fam Zheng798bfe02016-01-14 16:41:02 +080071}
72
Daniel P. Berrangef95910f2016-02-10 18:41:11 +000073struct NBDTLSHandshakeData {
74 GMainLoop *loop;
75 bool complete;
76 Error *error;
77};
78
79
Daniel P. Berrange60e705c2016-08-11 15:20:58 +010080void nbd_tls_handshake(QIOTask *task,
Daniel P. Berrangef95910f2016-02-10 18:41:11 +000081 void *opaque);
82
Vladimir Sementsov-Ogievskiy44298022017-06-02 18:01:40 +030083int nbd_drop(QIOChannel *ioc, size_t size, Error **errp);
84
Fam Zheng798bfe02016-01-14 16:41:02 +080085#endif