forked from acozzette/BUSE
-
Notifications
You must be signed in to change notification settings - Fork 4
/
buse.c
264 lines (238 loc) · 6.35 KB
/
buse.c
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
/*
* buse - block-device userspace extensions
* Copyright (C) 2013 Adam Cozzette
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <linux/types.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <unistd.h>
#include "buse.h"
/*
* These helper functions were taken from cliserv.h in the nbd distribution.
*/
#ifdef WORDS_BIGENDIAN
uint64_t ntohll(uint64_t a)
{
return a;
}
#else
uint64_t ntohll(uint64_t a)
{
uint32_t lo = a & 0xffffffff;
uint32_t hi = a >> 32U;
lo = ntohl(lo);
hi = ntohl(hi);
return ((uint64_t)lo) << 32U | hi;
}
#endif
#define htonll ntohll
static int read_all(int fd, char *buf, size_t count)
{
int bytes_read;
while (count > 0)
{
bytes_read = read(fd, buf, count);
assert(bytes_read > 0);
buf += bytes_read;
count -= bytes_read;
}
assert(count == 0);
return 0;
}
static int write_all(int fd, char *buf, size_t count)
{
int bytes_written;
while (count > 0)
{
bytes_written = write(fd, buf, count);
assert(bytes_written > 0);
buf += bytes_written;
count -= bytes_written;
}
assert(count == 0);
return 0;
}
int buse_main(const char *dev_file, const struct buse_operations *aop, void *userdata)
{
int sp[2];
int nbd, sk, err, tmp_fd;
uint64_t from;
uint32_t len;
ssize_t bytes_read;
struct nbd_request request;
struct nbd_reply reply;
void *chunk;
err = socketpair(AF_UNIX, SOCK_STREAM, 0, sp);
assert(!err);
nbd = open(dev_file, O_RDWR);
if (nbd == -1)
{
fprintf(stderr,
"Failed to open `%s': %s\n"
"Is kernel module `nbd' is loaded and you have permissions "
"to access the device?\n",
dev_file, strerror(errno));
return 1;
}
if (aop->blksize)
{
err = ioctl(nbd, NBD_SET_BLKSIZE, aop->blksize);
assert(err != -1);
}
if (aop->size)
{
err = ioctl(nbd, NBD_SET_SIZE, aop->size);
assert(err != -1);
}
if (aop->size_blocks)
{
err = ioctl(nbd, NBD_SET_SIZE_BLOCKS, aop->size_blocks);
assert(err != -1);
}
err = ioctl(nbd, NBD_CLEAR_SOCK);
assert(err != -1);
if (!fork())
{
/* The child needs to continue setting things up. */
close(sp[0]);
sk = sp[1];
if (ioctl(nbd, NBD_SET_SOCK, sk) == -1)
{
fprintf(stderr, "ioctl(nbd, NBD_SET_SOCK, sk) failed.[%s]\n", strerror(errno));
}
#if defined NBD_SET_FLAGS && defined NBD_FLAG_SEND_TRIM
else if (ioctl(nbd, NBD_SET_FLAGS, NBD_FLAG_SEND_TRIM) == -1)
{
fprintf(stderr, "ioctl(nbd, NBD_SET_FLAGS, NBD_FLAG_SEND_TRIM) failed.[%s]\n", strerror(errno));
}
#endif
else
{
err = ioctl(nbd, NBD_DO_IT);
fprintf(stderr, "nbd device terminated with code %d\n", err);
if (err == -1)
fprintf(stderr, "%s\n", strerror(errno));
}
ioctl(nbd, NBD_CLEAR_QUE);
ioctl(nbd, NBD_CLEAR_SOCK);
exit(0);
}
/* The parent opens the device file at least once, to make sure the
* partition table is updated. Then it closes it and starts serving up
* requests. */
tmp_fd = open(dev_file, O_RDONLY);
assert(tmp_fd != -1);
close(tmp_fd);
close(sp[1]);
sk = sp[0];
reply.magic = htonl(NBD_REPLY_MAGIC);
reply.error = htonl(0);
while ((bytes_read = read(sk, &request, sizeof(request))) > 0)
{
assert(bytes_read == sizeof(request));
memcpy(reply.handle, request.handle, sizeof(reply.handle));
reply.error = htonl(0);
len = ntohl(request.len);
from = ntohll(request.from);
assert(request.magic == htonl(NBD_REQUEST_MAGIC));
switch (ntohl(request.type))
{
/* I may at some point need to deal with the the fact that the
* official nbd server has a maximum buffer size, and divides up
* oversized requests into multiple pieces. This applies to reads
* and writes.
*/
case NBD_CMD_READ:
if (*(int *)userdata)
{
fprintf(stderr, "Request for read of size %d from %lu\n", len, from);
}
/* Fill with zero in case actual read is not implemented */
chunk = malloc(len);
if (aop->read)
{
reply.error = aop->read(chunk, len, from, userdata);
}
else
{
/* If user not specified read operation, return EPERM error */
reply.error = htonl(EPERM);
}
write_all(sk, (char *)&reply, sizeof(struct nbd_reply));
write_all(sk, (char *)chunk, len);
free(chunk);
break;
case NBD_CMD_WRITE:
if (*(int *)userdata)
{
fprintf(stderr, "Request for write of size %d\n", len);
}
chunk = malloc(len);
read_all(sk, chunk, len);
if (aop->write)
{
reply.error = aop->write(chunk, len, from, userdata);
}
else
{
/* If user not specified write operation, return EPERM error */
reply.error = htonl(EPERM);
}
free(chunk);
write_all(sk, (char *)&reply, sizeof(struct nbd_reply));
break;
case NBD_CMD_DISC:
/* Handle a disconnect request. */
if (aop->disc)
{
aop->disc(userdata);
}
return 0;
#ifdef NBD_FLAG_SEND_FLUSH
case NBD_CMD_FLUSH:
if (aop->flush)
{
reply.error = aop->flush(userdata);
}
write_all(sk, (char *)&reply, sizeof(struct nbd_reply));
break;
#endif
#ifdef NBD_FLAG_SEND_TRIM
case NBD_CMD_TRIM:
if (aop->trim)
{
reply.error = aop->trim(from, len, userdata);
}
write_all(sk, (char *)&reply, sizeof(struct nbd_reply));
break;
#endif
default:
assert(0);
}
}
if (bytes_read == -1)
fprintf(stderr, "%s\n", strerror(errno));
return 0;
}