Statistics
| Branch: | Revision:

root / nbd.h @ 8c5e95d8

History | View | Annotate | Download (1.9 kB)

1 75818250 ths
/*
2 7a5ca864 bellard
 *  Copyright (C) 2005  Anthony Liguori <anthony@codemonkey.ws>
3 7a5ca864 bellard
 *
4 7a5ca864 bellard
 *  Network Block Device
5 7a5ca864 bellard
 *
6 7a5ca864 bellard
 *  This program is free software; you can redistribute it and/or modify
7 7a5ca864 bellard
 *  it under the terms of the GNU General Public License as published by
8 7a5ca864 bellard
 *  the Free Software Foundation; under version 2 of the License.
9 7a5ca864 bellard
 *
10 7a5ca864 bellard
 *  This program is distributed in the hope that it will be useful,
11 7a5ca864 bellard
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 7a5ca864 bellard
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 7a5ca864 bellard
 *  GNU General Public License for more details.
14 7a5ca864 bellard
 *
15 7a5ca864 bellard
 *  You should have received a copy of the GNU General Public License
16 7a5ca864 bellard
 *  along with this program; if not, write to the Free Software
17 7a5ca864 bellard
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 75818250 ths
 */
19 7a5ca864 bellard
20 7a5ca864 bellard
#ifndef NBD_H
21 7a5ca864 bellard
#define NBD_H
22 7a5ca864 bellard
23 7a5ca864 bellard
#include <sys/types.h>
24 7a5ca864 bellard
#include <stdbool.h>
25 7a5ca864 bellard
26 7a5ca864 bellard
#include <qemu-common.h>
27 7a5ca864 bellard
#include "block_int.h"
28 7a5ca864 bellard
29 75818250 ths
struct nbd_request {
30 75818250 ths
    uint32_t type;
31 75818250 ths
    uint64_t handle;
32 75818250 ths
    uint64_t from;
33 75818250 ths
    uint32_t len;
34 75818250 ths
};
35 75818250 ths
36 75818250 ths
struct nbd_reply {
37 75818250 ths
    uint32_t error;
38 75818250 ths
    uint64_t handle;
39 75818250 ths
};
40 75818250 ths
41 75818250 ths
enum {
42 75818250 ths
    NBD_CMD_READ = 0,
43 75818250 ths
    NBD_CMD_WRITE = 1,
44 75818250 ths
    NBD_CMD_DISC = 2
45 75818250 ths
};
46 75818250 ths
47 75818250 ths
size_t nbd_wr_sync(int fd, void *buffer, size_t size, bool do_read);
48 75818250 ths
int tcp_socket_outgoing(const char *address, uint16_t port);
49 7a5ca864 bellard
int tcp_socket_incoming(const char *address, uint16_t port);
50 cd831bd7 ths
int unix_socket_outgoing(const char *path);
51 cd831bd7 ths
int unix_socket_incoming(const char *path);
52 7a5ca864 bellard
53 7a5ca864 bellard
int nbd_negotiate(BlockDriverState *bs, int csock, off_t size);
54 cd831bd7 ths
int nbd_receive_negotiate(int csock, off_t *size, size_t *blocksize);
55 cd831bd7 ths
int nbd_init(int fd, int csock, off_t size, size_t blocksize);
56 75818250 ths
int nbd_send_request(int csock, struct nbd_request *request);
57 75818250 ths
int nbd_receive_reply(int csock, struct nbd_reply *reply);
58 2f726488 ths
int nbd_trip(BlockDriverState *bs, int csock, off_t size, uint64_t dev_offset,
59 2f726488 ths
             off_t *offset, bool readonly, uint8_t *data, int data_size);
60 7a5ca864 bellard
int nbd_client(int fd, int csock);
61 7a5ca864 bellard
int nbd_disconnect(int fd);
62 7a5ca864 bellard
63 7a5ca864 bellard
#endif