summaryrefslogtreecommitdiff
path: root/rumpdisk/block-rump.c
blob: b97ad137b188a4d0e876472dc1e10ca1928ffac9 (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
/*
 * Rump block driver support
 *
 * Copyright (C) 2019 Free Software Foundation
 *
 * 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, 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, 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <ctype.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>

#include "mach_U.h"

#include <mach.h>
#include <hurd.h>
#include <hurd/ports.h>

#define MACH_INCLUDE

#include "libmachdev/machdev.h"
#include "device_reply_U.h"

#include <rump/rump.h>
#include <rump/rump_syscalls.h>
#include <rump/rumperrno2host.h>

#include "ioccom-rump.h"
#define DIOCGMEDIASIZE  _IOR('d', 132, off_t)
#define DIOCGSECTORSIZE _IOR('d', 133, unsigned int)

#define DISK_NAME_LEN 32

/* One of these is associated with each open instance of a device.  */
struct block_data
{
  struct port_info port;	/* device port */
  struct machdev_emul_device device;	/* generic device structure */
  dev_mode_t mode;		/* r/w etc */
  int rump_fd;			/* block device fd handle */
  char name[DISK_NAME_LEN];	/* eg /dev/wd0 */
  off_t media_size;		/* total block device size */
  uint32_t block_size;		/* size in bytes of 1 sector */
  bool taken;			/* simple refcount */
  struct block_data *next;
};

/* Return a send right associated with network device ND.  */
static mach_port_t
dev_to_port (void *nd)
{
  return (nd ? ports_get_send_right (nd) : MACH_PORT_NULL);
}

static struct block_data *block_head;
static struct machdev_device_emulation_ops rump_block_emulation_ops;

static struct block_data *
search_bd (char *name)
{
  struct block_data *bd = block_head;

  while (bd)
    {
      if (!strcmp (bd->name, name))
	return bd;
      bd = bd->next;
    }
  return NULL;
}

/* BSD name of whole disk device is /dev/wdXd
 * but we will receive /dev/wdX as the name */
static void
translate_name (char *output, int len, char *name)
{
  snprintf (output, len, "%sd", name);
}

static int
dev_mode_to_rump_mode (const dev_mode_t mode)
{
  int ret = 0;
  if (mode & D_READ)
    {
      if (mode & D_WRITE)
	ret = RUMP_O_RDWR;
      else
	ret = RUMP_O_RDONLY;
    }
  else
    {
      if (mode & D_WRITE)
	ret = RUMP_O_WRONLY;
    }
  return ret;
}

static void
device_init (void)
{
  rump_init ();
}

static io_return_t
device_close (void *d)
{
  io_return_t err;
  struct block_data *bd = d;

  err = rump_errno2host (rump_sys_close (bd->rump_fd));

  return err;
}

static void
device_dealloc (void *d)
{
  rump_sys_reboot (0, NULL);
}

static io_return_t
device_open (mach_port_t reply_port, mach_msg_type_name_t reply_port_type,
	     dev_mode_t mode, char *name, device_t * devp,
	     mach_msg_type_name_t * devicePoly)
{
  io_return_t err = D_SUCCESS;
  struct block_data *bd = NULL;
  char dev_name[DISK_NAME_LEN + 1];
  off_t media_size;
  uint32_t block_size;

  translate_name (dev_name, DISK_NAME_LEN, name);

  /* Find previous device or open if new */
  bd = search_bd (name);
  if (!bd)
    {
      err = machdev_create_device_port (sizeof (*bd), &bd);

      snprintf (bd->name, DISK_NAME_LEN, "%s", name);
      bd->mode = mode;
      bd->device.emul_data = bd;
      bd->device.emul_ops = &rump_block_emulation_ops;
      bd->next = block_head;
      block_head = bd;

      err = rump_sys_open (dev_name, dev_mode_to_rump_mode (bd->mode));
      if (err < 0)
	{
	  err = rump_errno2host (errno);
	  goto out;
	}
      bd->rump_fd = err;

      err = rump_sys_ioctl (bd->rump_fd, DIOCGMEDIASIZE, &media_size);
      if (err < 0)
	{
	  mach_print ("DIOCGMEDIASIZE ioctl fails\n");
	  err = D_NO_SUCH_DEVICE;
	  goto out;
	}

      err = rump_sys_ioctl (bd->rump_fd, DIOCGSECTORSIZE, &block_size);
      if (err < 0)
	{
	  mach_print ("DIOCGSECTORSIZE ioctl fails\n");
	  err = D_NO_SUCH_DEVICE;
	  goto out;
	}
      bd->media_size = media_size;
      bd->block_size = block_size;

      err = D_SUCCESS;
    }

out:
  if (err)
    {
      if (bd)
	{
	  ports_port_deref (bd);
	  ports_destroy_right (bd);
	  bd = NULL;
	}
    }

  if (bd)
    {
      *devp = ports_get_right (bd);
      *devicePoly = MACH_MSG_TYPE_MAKE_SEND;
    }
  return err;
}

static io_return_t
device_write (void *d, mach_port_t reply_port,
	      mach_msg_type_name_t reply_port_type, dev_mode_t mode,
	      recnum_t bn, io_buf_ptr_t data, unsigned int count,
	      int *bytes_written)
{
  struct block_data *bd = d;
  int64_t written = 0;

  if ((bd->mode & D_WRITE) == 0)
    return D_INVALID_OPERATION;

  if (rump_sys_lseek (bd->rump_fd, (off_t) bn * bd->block_size, SEEK_SET) < 0)
    {
      *bytes_written = 0;
      return EIO;
    }

  written = rump_sys_write (bd->rump_fd, data, count);
  if (written < 0)
    {
      *bytes_written = 0;
      return EIO;
    }
  else
    {
      *bytes_written = (int)written;
      return D_SUCCESS;
    }
}

static io_return_t
device_read (void *d, mach_port_t reply_port,
	     mach_msg_type_name_t reply_port_type, dev_mode_t mode,
	     recnum_t bn, int count, io_buf_ptr_t * data,
	     unsigned *bytes_read)
{
  struct block_data *bd = d;
  char *buf;
  int pagesize = sysconf (_SC_PAGE_SIZE);
  int npages = (count + pagesize - 1) / pagesize;
  io_return_t err = D_SUCCESS;

  if ((bd->mode & D_READ) == 0)
    return D_INVALID_OPERATION;

  if (count == 0)
    return D_SUCCESS;

  *data = 0;
  buf = mmap (NULL, npages * pagesize, PROT_READ | PROT_WRITE,
	      MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
  if (buf == MAP_FAILED)
    return errno;

  if (rump_sys_lseek (bd->rump_fd, (off_t) bn * bd->block_size, SEEK_SET) < 0)
    {
      *bytes_read = 0;
      return EIO;
    }

  err = rump_sys_read (bd->rump_fd, buf, count);
  if (err < 0)
    {
      *bytes_read = 0;
      munmap (buf, npages * pagesize);
      return EIO;
    }
  else
    {
      *bytes_read = err;
      *data = buf;
      return D_SUCCESS;
    }
}

static io_return_t
device_get_status (void *d, dev_flavor_t flavor, dev_status_t status,
		   mach_msg_type_number_t * count)
{
  struct block_data *bd = d;

  switch (flavor)
    {
    case DEV_GET_SIZE:
      status[DEV_GET_SIZE_RECORD_SIZE] = bd->block_size;
      status[DEV_GET_SIZE_DEVICE_SIZE] = bd->media_size;
      *count = 2;
      break;
    case DEV_GET_RECORDS:
      status[DEV_GET_RECORDS_RECORD_SIZE] = bd->block_size;
      status[DEV_GET_RECORDS_DEVICE_RECORDS] =
	bd->media_size / (unsigned long long) bd->block_size;
      *count = 2;
      break;
    default:
      return D_INVALID_OPERATION;
      break;
    }
  return D_SUCCESS;
}

/* FIXME:
 * Short term strategy:
 *
 * Use rump_sys_pread/pwrite instead of rump_sys_lseek + rump_sys_read/write.
 * Make device_read/write multithreaded.
 *
 * Long term strategy:
 *
 * Call rump_sys_aio_read/write and return MIG_NO_REPLY from
 * device_read/write, and send the mig reply once the aio request has
 * completed. That way, only the aio request will be kept in rumpdisk
 * memory instead of a whole thread structure.
 */
static struct machdev_device_emulation_ops rump_block_emulation_ops = {
  device_init,
  NULL,
  device_dealloc,
  dev_to_port,
  device_open,
  device_close,
  device_write, /* FIXME: make multithreaded */
  NULL,
  device_read, /* FIXME: make multithreaded */
  NULL,
  NULL,
  device_get_status,
  NULL,
  NULL,
  NULL,
  NULL,
  NULL
};

void
rump_register_block (void)
{
  machdev_register (&rump_block_emulation_ops);
}