source: mainline/uspace/srv/bd/file_bd/file_bd.c@ 711e7fe5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 711e7fe5 was 711e7fe5, checked in by Prutkov Alex <prutkov.alex@…>, 14 years ago

Added printf module

  • Property mode set to 100755
File size: 7.3 KB
Line 
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/bd.h>
44#include <async.h>
45#include <as.h>
46#include <fibril_synch.h>
47#include <loc.h>
48#include <sys/types.h>
49#include <sys/typefmt.h>
50#include <errno.h>
51#include <bool.h>
52#include <task.h>
53#include <macros.h>
54
55#define NAME "file_bd"
56
57#define DEFAULT_BLOCK_SIZE 512
58
59static size_t block_size;
60static aoff64_t num_blocks;
61static FILE *img;
62
63static service_id_t service_id;
64static fibril_mutex_t dev_lock;
65
66static void print_usage(void);
67static int file_bd_init(const char *fname);
68static void file_bd_connection(ipc_callid_t iid, ipc_call_t *icall, void *);
69static int file_bd_read_blocks(uint64_t ba, size_t cnt, void *buf);
70static int file_bd_write_blocks(uint64_t ba, size_t cnt, const void *buf);
71
72int main(int argc, char **argv)
73{
74 int rc;
75 char *image_name;
76 char *device_name;
77
78 printf(NAME ": File-backed block device driver\n");
79
80 block_size = DEFAULT_BLOCK_SIZE;
81
82 ++argv; --argc;
83 while (*argv != NULL && (*argv)[0] == '-') {
84 /* Option */
85 if (str_cmp(*argv, "-b") == 0) {
86 if (argc < 2) {
87 printf("Argument missing.\n");
88 print_usage();
89 return -1;
90 }
91
92 rc = str_size_t(argv[1], NULL, 10, true, &block_size);
93 if (rc != EOK || block_size == 0) {
94 printf("Invalid block size '%s'.\n", argv[1]);
95 print_usage();
96 return -1;
97 }
98 ++argv; --argc;
99 } else {
100 printf("Invalid option '%s'.\n", *argv);
101 print_usage();
102 return -1;
103 }
104 ++argv; --argc;
105 }
106
107 if (argc < 2) {
108 printf("Missing arguments.\n");
109 print_usage();
110 return -1;
111 }
112
113 image_name = argv[0];
114 device_name = argv[1];
115
116 if (file_bd_init(image_name) != EOK)
117 return -1;
118
119 rc = loc_service_register(device_name, &service_id);
120 if (rc != EOK) {
121 printf(NAME ": Unable to register device '%s'.\n",
122 device_name);
123 return rc;
124 }
125
126 printf(NAME ": Accepting connections\n");
127 task_retval(0);
128 async_manager();
129
130 /* Not reached */
131 return 0;
132}
133
134static void print_usage(void)
135{
136 printf("Usage: " NAME " [-b <block_size>] <image_file> <device_name>\n");
137}
138
139static int file_bd_init(const char *fname)
140{
141 int rc;
142 long img_size;
143
144 async_set_client_connection(file_bd_connection);
145 rc = loc_server_register(NAME);
146 if (rc < 0) {
147 printf(NAME ": Unable to register driver.\n");
148 return rc;
149 }
150
151 img = fopen(fname, "rb+");
152 if (img == NULL)
153 return EINVAL;
154
155 if (fseek(img, 0, SEEK_END) != 0) {
156 fclose(img);
157 return EIO;
158 }
159
160 img_size = ftell(img);
161 if (img_size < 0) {
162 fclose(img);
163 return EIO;
164 }
165
166 num_blocks = img_size / block_size;
167
168 fibril_mutex_initialize(&dev_lock);
169
170 return EOK;
171}
172
173static void file_bd_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
174{
175 void *fs_va = NULL;
176 ipc_callid_t callid;
177 ipc_call_t call;
178 sysarg_t method;
179 size_t comm_size;
180 unsigned int flags;
181 int retval;
182 uint64_t ba;
183 size_t cnt;
184
185 /* Answer the IPC_M_CONNECT_ME_TO call. */
186 async_answer_0(iid, EOK);
187
188 if (!async_share_out_receive(&callid, &comm_size, &flags)) {
189 async_answer_0(callid, EHANGUP);
190 return;
191 }
192
193 (void) async_share_out_finalize(callid, &fs_va);
194 if (fs_va == (void *) -1) {
195 async_answer_0(callid, EHANGUP);
196 return;
197 }
198
199 while (true) {
200 callid = async_get_call(&call);
201 method = IPC_GET_IMETHOD(call);
202
203 if (!method) {
204 /* The other side has hung up. */
205 async_answer_0(callid, EOK);
206 return;
207 }
208
209 switch (method) {
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;
216 break;
217 }
218 retval = file_bd_read_blocks(ba, cnt, fs_va);
219 break;
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 async_answer_1(callid, EOK, block_size);
232 continue;
233 case BD_GET_NUM_BLOCKS:
234 async_answer_2(callid, EOK, LOWER32(num_blocks),
235 UPPER32(num_blocks));
236 continue;
237 default:
238 retval = EINVAL;
239 break;
240 }
241 async_answer_0(callid, retval);
242 }
243}
244
245/** Read blocks from the device. */
246static int file_bd_read_blocks(uint64_t ba, size_t cnt, void *buf)
247{
248 size_t n_rd;
249 int rc;
250
251 /* Check whether access is within device address bounds. */
252 if (ba + cnt > num_blocks) {
253 printf(NAME ": Accessed blocks %" PRIuOFF64 "-%" PRIuOFF64 ", while "
254 "max block number is %" PRIuOFF64 ".\n", ba, ba + cnt - 1,
255 num_blocks - 1);
256 return ELIMIT;
257 }
258
259 fibril_mutex_lock(&dev_lock);
260
261 clearerr(img);
262 rc = fseek(img, ba * block_size, SEEK_SET);
263 if (rc < 0) {
264 fibril_mutex_unlock(&dev_lock);
265 return EIO;
266 }
267
268 n_rd = fread(buf, block_size, cnt, img);
269
270 if (ferror(img)) {
271 fibril_mutex_unlock(&dev_lock);
272 return EIO; /* Read error */
273 }
274
275 fibril_mutex_unlock(&dev_lock);
276
277 if (n_rd < cnt)
278 return EINVAL; /* Read beyond end of device */
279
280 return EOK;
281}
282
283/** Write blocks to the device. */
284static int file_bd_write_blocks(uint64_t ba, size_t cnt, const void *buf)
285{
286 size_t n_wr;
287 int rc;
288
289 /* Check whether access is within device address bounds. */
290 if (ba + cnt > num_blocks) {
291 printf(NAME ": Accessed blocks %" PRIuOFF64 "-%" PRIuOFF64 ", while "
292 "max block number is %" PRIuOFF64 ".\n", ba, ba + cnt - 1,
293 num_blocks - 1);
294 return ELIMIT;
295 }
296
297 fibril_mutex_lock(&dev_lock);
298
299 clearerr(img);
300 rc = fseek(img, ba * block_size, SEEK_SET);
301 if (rc < 0) {
302 fibril_mutex_unlock(&dev_lock);
303 return EIO;
304 }
305
306 n_wr = fwrite(buf, block_size, cnt, img);
307
308 if (ferror(img) || n_wr < cnt) {
309 fibril_mutex_unlock(&dev_lock);
310 return EIO; /* Write error */
311 }
312
313 if (fflush(img) != 0) {
314 fibril_mutex_unlock(&dev_lock);
315 return EIO;
316 }
317
318 fibril_mutex_unlock(&dev_lock);
319
320 return EOK;
321}
322
323/**
324 * @}
325 */
Note: See TracBrowser for help on using the repository browser.