HelenOS sources
This source file includes following definitions.
- main
- print_usage
- file_bd_init
- file_bd_connection
- file_bd_open
- file_bd_close
- file_bd_read_blocks
- file_bd_write_blocks
- file_bd_get_block_size
- file_bd_get_num_blocks
#include <stdio.h>
#include <async.h>
#include <as.h>
#include <bd_srv.h>
#include <fibril_synch.h>
#include <loc.h>
#include <stddef.h>
#include <stdint.h>
#include <errno.h>
#include <str_error.h>
#include <stdbool.h>
#include <task.h>
#include <macros.h>
#include <str.h>
#define NAME "file_bd"
#define DEFAULT_BLOCK_SIZE 512
static size_t block_size;
static aoff64_t num_blocks;
static FILE *img;
static loc_srv_t *srv;
static service_id_t service_id;
static bd_srvs_t bd_srvs;
static fibril_mutex_t dev_lock;
static void print_usage(void);
static errno_t file_bd_init(const char *fname);
static void file_bd_connection(ipc_call_t *icall, void *);
static errno_t file_bd_open(bd_srvs_t *, bd_srv_t *);
static errno_t file_bd_close(bd_srv_t *);
static errno_t file_bd_read_blocks(bd_srv_t *, aoff64_t, size_t, void *, size_t);
static errno_t file_bd_write_blocks(bd_srv_t *, aoff64_t, size_t, const void *, size_t);
static errno_t file_bd_get_block_size(bd_srv_t *, size_t *);
static errno_t file_bd_get_num_blocks(bd_srv_t *, aoff64_t *);
static bd_ops_t file_bd_ops = {
.open = file_bd_open,
.close = file_bd_close,
.read_blocks = file_bd_read_blocks,
.write_blocks = file_bd_write_blocks,
.get_block_size = file_bd_get_block_size,
.get_num_blocks = file_bd_get_num_blocks
};
int main(int argc, char **argv)
{
errno_t rc;
char *image_name;
char *device_name;
category_id_t disk_cat;
printf(NAME ": File-backed block device driver\n");
block_size = DEFAULT_BLOCK_SIZE;
++argv;
--argc;
while (*argv != NULL && (*argv)[0] == '-') {
if (str_cmp(*argv, "-b") == 0) {
if (argc < 2) {
printf("Argument missing.\n");
print_usage();
return -1;
}
rc = str_size_t(argv[1], NULL, 10, true, &block_size);
if (rc != EOK || block_size == 0) {
printf("Invalid block size '%s'.\n", argv[1]);
print_usage();
return -1;
}
++argv;
--argc;
} else {
printf("Invalid option '%s'.\n", *argv);
print_usage();
return -1;
}
++argv;
--argc;
}
if (argc < 2) {
printf("Missing arguments.\n");
print_usage();
return -1;
}
image_name = argv[0];
device_name = argv[1];
if (file_bd_init(image_name) != EOK)
return -1;
rc = loc_service_register(srv, device_name, &service_id);
if (rc != EOK) {
printf("%s: Unable to register device '%s': %s.\n",
NAME, device_name, str_error(rc));
return rc;
}
rc = loc_category_get_id("disk", &disk_cat, IPC_FLAG_BLOCKING);
if (rc != EOK) {
printf("%s: Failed resolving category 'disk': %s\n", NAME, str_error(rc));
return rc;
}
rc = loc_service_add_to_cat(srv, service_id, disk_cat);
if (rc != EOK) {
printf("%s: Failed adding %s to category: %s",
NAME, device_name, str_error(rc));
return rc;
}
printf("%s: Accepting connections\n", NAME);
task_retval(0);
async_manager();
return 0;
}
static void print_usage(void)
{
printf("Usage: " NAME " [-b <block_size>] <image_file> <device_name>\n");
}
static errno_t file_bd_init(const char *fname)
{
bd_srvs_init(&bd_srvs);
bd_srvs.ops = &file_bd_ops;
async_set_fallback_port_handler(file_bd_connection, NULL);
errno_t rc = loc_server_register(NAME, &srv);
if (rc != EOK) {
printf("%s: Unable to register driver.\n", NAME);
return rc;
}
img = fopen(fname, "rb+");
if (img == NULL) {
rc = EINVAL;
goto error;
}
if (fseek(img, 0, SEEK_END) != 0) {
rc = EIO;
goto error;
}
off64_t img_size = ftell(img);
if (img_size < 0) {
rc = EIO;
goto error;
}
num_blocks = img_size / block_size;
fibril_mutex_initialize(&dev_lock);
return EOK;
error:
if (img != NULL) {
fclose(img);
img = NULL;
}
if (srv != NULL) {
loc_server_unregister(srv);
srv = NULL;
}
return rc;
}
static void file_bd_connection(ipc_call_t *icall, void *arg)
{
bd_conn(icall, &bd_srvs);
}
static errno_t file_bd_open(bd_srvs_t *bds, bd_srv_t *bd)
{
return EOK;
}
static errno_t file_bd_close(bd_srv_t *bd)
{
return EOK;
}
static errno_t file_bd_read_blocks(bd_srv_t *bd, uint64_t ba, size_t cnt, void *buf,
size_t size)
{
size_t n_rd;
if (size < cnt * block_size)
return EINVAL;
if (ba + cnt > num_blocks) {
printf(NAME ": Accessed blocks %" PRIuOFF64 "-%" PRIuOFF64 ", while "
"max block number is %" PRIuOFF64 ".\n", ba, ba + cnt - 1,
num_blocks - 1);
return ELIMIT;
}
fibril_mutex_lock(&dev_lock);
clearerr(img);
if (fseek(img, ba * block_size, SEEK_SET) < 0) {
fibril_mutex_unlock(&dev_lock);
return EIO;
}
n_rd = fread(buf, block_size, cnt, img);
if (ferror(img)) {
fibril_mutex_unlock(&dev_lock);
return EIO;
}
fibril_mutex_unlock(&dev_lock);
if (n_rd < cnt)
return EINVAL;
return EOK;
}
static errno_t file_bd_write_blocks(bd_srv_t *bd, uint64_t ba, size_t cnt,
const void *buf, size_t size)
{
size_t n_wr;
if (size < cnt * block_size)
return EINVAL;
if (ba + cnt > num_blocks) {
printf(NAME ": Accessed blocks %" PRIuOFF64 "-%" PRIuOFF64 ", while "
"max block number is %" PRIuOFF64 ".\n", ba, ba + cnt - 1,
num_blocks - 1);
return ELIMIT;
}
fibril_mutex_lock(&dev_lock);
clearerr(img);
if (fseek(img, ba * block_size, SEEK_SET) < 0) {
fibril_mutex_unlock(&dev_lock);
return EIO;
}
n_wr = fwrite(buf, block_size, cnt, img);
if (ferror(img) || n_wr < cnt) {
fibril_mutex_unlock(&dev_lock);
return EIO;
}
if (fflush(img) != 0) {
fibril_mutex_unlock(&dev_lock);
return EIO;
}
fibril_mutex_unlock(&dev_lock);
return EOK;
}
static errno_t file_bd_get_block_size(bd_srv_t *bd, size_t *rsize)
{
*rsize = block_size;
return EOK;
}
static errno_t file_bd_get_num_blocks(bd_srv_t *bd, aoff64_t *rnb)
{
*rnb = num_blocks;
return EOK;
}
HelenOS homepage, sources at GitHub