/* * Copyright (c) 2009 Jiri Svoboda * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** @addtogroup bd * @{ */ /** * @file * @brief File-backed block device driver * * Allows accessing a file as a block device. Useful for, e.g., mounting * a disk image. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define NAME "file_bd" #define DEFAULT_BLOCK_SIZE 512 static size_t block_size; static aoff64_t num_blocks; static FILE *img; static devmap_handle_t devmap_handle; static fibril_mutex_t dev_lock; static void print_usage(void); static int file_bd_init(const char *fname); static void file_bd_connection(ipc_callid_t iid, ipc_call_t *icall); static int file_bd_read_blocks(uint64_t ba, size_t cnt, void *buf); static int file_bd_write_blocks(uint64_t ba, size_t cnt, const void *buf); int main(int argc, char **argv) { int rc; char *image_name; char *device_name; printf(NAME ": File-backed block device driver\n"); block_size = DEFAULT_BLOCK_SIZE; ++argv; --argc; while (*argv != NULL && (*argv)[0] == '-') { /* Option */ 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 = devmap_device_register(device_name, &devmap_handle); if (rc != EOK) { devmap_hangup_phone(DEVMAP_DRIVER); printf(NAME ": Unable to register device '%s'.\n", device_name); return rc; } printf(NAME ": Accepting connections\n"); task_retval(0); async_manager(); /* Not reached */ return 0; } static void print_usage(void) { printf("Usage: " NAME " [-b ] \n"); } static int file_bd_init(const char *fname) { int rc; long img_size; rc = devmap_driver_register(NAME, file_bd_connection); if (rc < 0) { printf(NAME ": Unable to register driver.\n"); return rc; } img = fopen(fname, "rb+"); if (img == NULL) return EINVAL; if (fseek(img, 0, SEEK_END) != 0) { fclose(img); return EIO; } img_size = ftell(img); if (img_size < 0) { fclose(img); return EIO; } num_blocks = img_size / block_size; fibril_mutex_initialize(&dev_lock); return EOK; } static void file_bd_connection(ipc_callid_t iid, ipc_call_t *icall) { void *fs_va = NULL; ipc_callid_t callid; ipc_call_t call; sysarg_t method; size_t comm_size; int flags; int retval; uint64_t ba; size_t cnt; /* Answer the IPC_M_CONNECT_ME_TO call. */ ipc_answer_0(iid, EOK); if (!async_share_out_receive(&callid, &comm_size, &flags)) { ipc_answer_0(callid, EHANGUP); return; } fs_va = as_get_mappable_page(comm_size); if (fs_va == NULL) { ipc_answer_0(callid, EHANGUP); return; } (void) async_share_out_finalize(callid, fs_va); while (1) { callid = async_get_call(&call); method = IPC_GET_METHOD(call); switch (method) { case IPC_M_PHONE_HUNGUP: /* The other side has hung up. */ ipc_answer_0(callid, EOK); return; case BD_READ_BLOCKS: ba = MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); cnt = IPC_GET_ARG3(call); if (cnt * block_size > comm_size) { retval = ELIMIT; break; } retval = file_bd_read_blocks(ba, cnt, fs_va); break; case BD_WRITE_BLOCKS: ba = MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); cnt = IPC_GET_ARG3(call); if (cnt * block_size > comm_size) { retval = ELIMIT; break; } retval = file_bd_write_blocks(ba, cnt, fs_va); break; case BD_GET_BLOCK_SIZE: ipc_answer_1(callid, EOK, block_size); continue; case BD_GET_NUM_BLOCKS: ipc_answer_2(callid, EOK, LOWER32(num_blocks), UPPER32(num_blocks)); continue; default: retval = EINVAL; break; } ipc_answer_0(callid, retval); } } /** Read blocks from the device. */ static int file_bd_read_blocks(uint64_t ba, size_t cnt, void *buf) { size_t n_rd; int rc; /* Check whether access is within device address bounds. */ 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); rc = fseek(img, ba * block_size, SEEK_SET); if (rc < 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; /* Read error */ } fibril_mutex_unlock(&dev_lock); if (n_rd < cnt) return EINVAL; /* Read beyond end of device */ return EOK; } /** Write blocks to the device. */ static int file_bd_write_blocks(uint64_t ba, size_t cnt, const void *buf) { size_t n_wr; int rc; /* Check whether access is within device address bounds. */ 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); rc = fseek(img, ba * block_size, SEEK_SET); if (rc < 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; /* Write error */ } if (fflush(img) != 0) { fibril_mutex_unlock(&dev_lock); return EIO; } fibril_mutex_unlock(&dev_lock); return EOK; } /** * @} */