source: mainline/uspace/srv/bd/file_bd/file_bd.c@ 45df59a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 45df59a was 45df59a, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Add option to set file_bd block size.

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[1cbed6b]1/*
2 * Copyright (c) 2009 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup bd
30 * @{
31 */
32
33/**
34 * @file
35 * @brief File-backed block device driver
36 *
37 * Allows accessing a file as a block device. Useful for, e.g., mounting
38 * a disk image.
39 */
40
41#include <stdio.h>
42#include <unistd.h>
43#include <ipc/ipc.h>
44#include <ipc/bd.h>
45#include <async.h>
46#include <as.h>
[1e4cada]47#include <fibril_synch.h>
[1cbed6b]48#include <devmap.h>
49#include <sys/types.h>
[fb150d78]50#include <sys/typefmt.h>
[1cbed6b]51#include <errno.h>
52#include <bool.h>
[95bc57c]53#include <task.h>
[1ee00b7]54#include <macros.h>
[1cbed6b]55
56#define NAME "file_bd"
57
[45df59a]58#define DEFAULT_BLOCK_SIZE 512
59
60static size_t block_size;
[ed903174]61static aoff64_t num_blocks;
[1cbed6b]62static FILE *img;
63
[991f645]64static devmap_handle_t devmap_handle;
[12956e57]65static fibril_mutex_t dev_lock;
[1cbed6b]66
[45df59a]67static void print_usage(void);
[1cbed6b]68static int file_bd_init(const char *fname);
69static void file_bd_connection(ipc_callid_t iid, ipc_call_t *icall);
[1ee00b7]70static int file_bd_read_blocks(uint64_t ba, size_t cnt, void *buf);
71static int file_bd_write_blocks(uint64_t ba, size_t cnt, const void *buf);
[1cbed6b]72
73int main(int argc, char **argv)
74{
75 int rc;
[45df59a]76 char *image_name;
77 char *device_name;
[1cbed6b]78
79 printf(NAME ": File-backed block device driver\n");
80
[45df59a]81 block_size = DEFAULT_BLOCK_SIZE;
82
83 ++argv; --argc;
84 while (*argv != NULL && (*argv)[0] == '-') {
85 /* Option */
86 if (str_cmp(*argv, "-b") == 0) {
87 if (argc < 2) {
88 printf("Argument missing.\n");
89 print_usage();
90 return -1;
91 }
92
93 rc = str_size_t(argv[1], NULL, 10, true, &block_size);
94 if (rc != EOK || block_size == 0) {
95 printf("Invalid block size '%s'.\n", argv[1]);
96 print_usage();
97 return -1;
98 }
99 ++argv; --argc;
100 } else {
101 printf("Invalid option '%s'.\n", *argv);
102 print_usage();
103 return -1;
104 }
105 ++argv; --argc;
106 }
107
108 if (argc < 2) {
109 printf("Missing arguments.\n");
110 print_usage();
[1cbed6b]111 return -1;
112 }
113
[45df59a]114 image_name = argv[0];
115 device_name = argv[1];
116
117 if (file_bd_init(image_name) != EOK)
[1cbed6b]118 return -1;
119
[45df59a]120 rc = devmap_device_register(device_name, &devmap_handle);
[1cbed6b]121 if (rc != EOK) {
122 devmap_hangup_phone(DEVMAP_DRIVER);
[45df59a]123 printf(NAME ": Unable to register device '%s'.\n",
124 device_name);
[1cbed6b]125 return rc;
126 }
127
128 printf(NAME ": Accepting connections\n");
[95bc57c]129 task_retval(0);
[1cbed6b]130 async_manager();
131
132 /* Not reached */
133 return 0;
134}
135
[45df59a]136static void print_usage(void)
137{
138 printf("Usage: " NAME " [-b <block_size>] <image_file> <device_name>\n");
139}
140
[1cbed6b]141static int file_bd_init(const char *fname)
142{
143 int rc;
[08232ee]144 long img_size;
[1cbed6b]145
146 rc = devmap_driver_register(NAME, file_bd_connection);
147 if (rc < 0) {
148 printf(NAME ": Unable to register driver.\n");
149 return rc;
150 }
151
152 img = fopen(fname, "rb+");
153 if (img == NULL)
154 return EINVAL;
155
[08232ee]156 if (fseek(img, 0, SEEK_END) != 0) {
157 fclose(img);
158 return EIO;
159 }
160
161 img_size = ftell(img);
162 if (img_size < 0) {
163 fclose(img);
164 return EIO;
165 }
166
167 num_blocks = img_size / block_size;
168
[12956e57]169 fibril_mutex_initialize(&dev_lock);
170
[1cbed6b]171 return EOK;
172}
173
174static void file_bd_connection(ipc_callid_t iid, ipc_call_t *icall)
175{
176 void *fs_va = NULL;
177 ipc_callid_t callid;
178 ipc_call_t call;
179 ipcarg_t method;
[1ee00b7]180 size_t comm_size;
[1cbed6b]181 int flags;
182 int retval;
[1ee00b7]183 uint64_t ba;
184 size_t cnt;
[1cbed6b]185
186 /* Answer the IPC_M_CONNECT_ME_TO call. */
187 ipc_answer_0(iid, EOK);
188
[0da4e41]189 if (!async_share_out_receive(&callid, &comm_size, &flags)) {
[1cbed6b]190 ipc_answer_0(callid, EHANGUP);
191 return;
192 }
193
194 fs_va = as_get_mappable_page(comm_size);
195 if (fs_va == NULL) {
196 ipc_answer_0(callid, EHANGUP);
197 return;
198 }
199
[0da4e41]200 (void) async_share_out_finalize(callid, fs_va);
[1cbed6b]201
202 while (1) {
203 callid = async_get_call(&call);
204 method = IPC_GET_METHOD(call);
205 switch (method) {
206 case IPC_M_PHONE_HUNGUP:
207 /* The other side has hung up. */
208 ipc_answer_0(callid, EOK);
209 return;
[1ee00b7]210 case BD_READ_BLOCKS:
211 ba = MERGE_LOUP32(IPC_GET_ARG1(call),
212 IPC_GET_ARG2(call));
213 cnt = IPC_GET_ARG3(call);
214 if (cnt * block_size > comm_size) {
215 retval = ELIMIT;
[1cbed6b]216 break;
217 }
[1ee00b7]218 retval = file_bd_read_blocks(ba, cnt, fs_va);
[1cbed6b]219 break;
[1ee00b7]220 case BD_WRITE_BLOCKS:
221 ba = MERGE_LOUP32(IPC_GET_ARG1(call),
222 IPC_GET_ARG2(call));
223 cnt = IPC_GET_ARG3(call);
224 if (cnt * block_size > comm_size) {
225 retval = ELIMIT;
226 break;
227 }
228 retval = file_bd_write_blocks(ba, cnt, fs_va);
229 break;
230 case BD_GET_BLOCK_SIZE:
231 ipc_answer_1(callid, EOK, block_size);
232 continue;
[08232ee]233 case BD_GET_NUM_BLOCKS:
234 ipc_answer_2(callid, EOK, LOWER32(num_blocks),
235 UPPER32(num_blocks));
236 continue;
[1cbed6b]237 default:
238 retval = EINVAL;
239 break;
240 }
241 ipc_answer_0(callid, retval);
242 }
243}
244
[1ee00b7]245/** Read blocks from the device. */
246static int file_bd_read_blocks(uint64_t ba, size_t cnt, void *buf)
[1cbed6b]247{
248 size_t n_rd;
[6c01702]249 int rc;
[1cbed6b]250
[fb150d78]251 /* Check whether access is within device address bounds. */
252 if (ba + cnt > num_blocks) {
[ed903174]253 printf(NAME ": Accessed blocks %" PRIuOFF64 "-%" PRIuOFF64 ", while "
254 "max block number is %" PRIuOFF64 ".\n", ba, ba + cnt - 1,
[fb150d78]255 num_blocks - 1);
256 return ELIMIT;
257 }
258
[12956e57]259 fibril_mutex_lock(&dev_lock);
[1cbed6b]260
[c77a64f]261 clearerr(img);
[6c01702]262 rc = fseek(img, ba * block_size, SEEK_SET);
263 if (rc < 0) {
264 fibril_mutex_unlock(&dev_lock);
265 return EIO;
266 }
267
[1ee00b7]268 n_rd = fread(buf, block_size, cnt, img);
[1cbed6b]269
270 if (ferror(img)) {
[12956e57]271 fibril_mutex_unlock(&dev_lock);
[1cbed6b]272 return EIO; /* Read error */
273 }
274
[12956e57]275 fibril_mutex_unlock(&dev_lock);
[1cbed6b]276
[1ee00b7]277 if (n_rd < cnt)
278 return EINVAL; /* Read beyond end of device */
[1cbed6b]279
280 return EOK;
281}
282
[1ee00b7]283/** Write blocks to the device. */
284static int file_bd_write_blocks(uint64_t ba, size_t cnt, const void *buf)
[1cbed6b]285{
286 size_t n_wr;
[6c01702]287 int rc;
[1cbed6b]288
[fb150d78]289 /* Check whether access is within device address bounds. */
290 if (ba + cnt > num_blocks) {
[ed903174]291 printf(NAME ": Accessed blocks %" PRIuOFF64 "-%" PRIuOFF64 ", while "
292 "max block number is %" PRIuOFF64 ".\n", ba, ba + cnt - 1,
[fb150d78]293 num_blocks - 1);
294 return ELIMIT;
295 }
296
[12956e57]297 fibril_mutex_lock(&dev_lock);
[1cbed6b]298
[c77a64f]299 clearerr(img);
[6c01702]300 rc = fseek(img, ba * block_size, SEEK_SET);
301 if (rc < 0) {
302 fibril_mutex_unlock(&dev_lock);
303 return EIO;
304 }
305
[dccf721]306 n_wr = fwrite(buf, block_size, cnt, img);
[1cbed6b]307
[1ee00b7]308 if (ferror(img) || n_wr < cnt) {
[12956e57]309 fibril_mutex_unlock(&dev_lock);
[1cbed6b]310 return EIO; /* Write error */
311 }
312
[6c01702]313 if (fflush(img) != 0) {
314 fibril_mutex_unlock(&dev_lock);
315 return EIO;
316 }
317
[12956e57]318 fibril_mutex_unlock(&dev_lock);
[1cbed6b]319
320 return EOK;
321}
322
323/**
324 * @}
325 */
Note: See TracBrowser for help on using the repository browser.