1 /* sfs.c - Amiga Smart FileSystem. */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2005,2006,2007,2008 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
21 #include <grub/file.h>
23 #include <grub/misc.h>
24 #include <grub/disk.h>
26 #include <grub/types.h>
27 #include <grub/fshelp.h>
29 /* The common header for a block. */
30 struct grub_sfs_bheader
32 grub_uint8_t magic
[4];
34 grub_uint32_t ipointtomyself
;
35 } __attribute__ ((packed
));
37 /* The sfs rootblock. */
38 struct grub_sfs_rblock
40 struct grub_sfs_bheader header
;
41 grub_uint32_t version
;
42 grub_uint8_t unused1
[36];
43 grub_uint32_t blocksize
;
44 grub_uint8_t unused2
[40];
45 grub_uint8_t unused3
[8];
46 grub_uint32_t rootobject
;
48 } __attribute__ ((packed
));
50 /* A SFS object container. */
53 grub_uint8_t unused1
[4];
55 grub_uint8_t unused2
[4];
60 grub_uint32_t first_block
;
62 } file
__attribute__ ((packed
));
65 grub_uint32_t hashtable
;
66 grub_uint32_t dir_objc
;
67 } dir
__attribute__ ((packed
));
69 grub_uint8_t unused3
[4];
71 grub_uint8_t filename
[1];
72 grub_uint8_t comment
[1];
73 } __attribute__ ((packed
));
75 #define GRUB_SFS_TYPE_DELETED 32
76 #define GRUB_SFS_TYPE_SYMLINK 64
77 #define GRUB_SFS_TYPE_DIR 128
79 /* A SFS object container. */
82 struct grub_sfs_bheader header
;
86 /* The amount of objects depends on the blocksize. */
87 struct grub_sfs_obj objects
[1];
88 } __attribute__ ((packed
));
90 struct grub_sfs_btree_node
94 } __attribute__ ((packed
));
96 struct grub_sfs_btree_extent
102 } __attribute__ ((packed
));
104 struct grub_sfs_btree
106 struct grub_sfs_bheader header
;
109 grub_uint8_t nodesize
;
110 /* Normally this can be kind of node, but just extents are
112 struct grub_sfs_btree_node node
[1];
113 } __attribute__ ((packed
));
117 struct grub_fshelp_node
119 struct grub_sfs_data
*data
;
124 /* Information about a "mounted" sfs filesystem. */
127 struct grub_sfs_rblock rblock
;
128 struct grub_fshelp_node diropen
;
131 /* Blocksize in sectors. */
132 unsigned int blocksize
;
134 /* Label of the filesystem. */
139 static grub_dl_t my_mod
;
143 /* Lookup the extent starting with BLOCK in the filesystem described
144 by DATA. Return the extent size in SIZE and the following extent
147 grub_sfs_read_extent (struct grub_sfs_data
*data
, unsigned int block
,
148 int *size
, int *nextext
)
151 struct grub_sfs_btree
*tree
;
156 treeblock
= grub_malloc (data
->blocksize
);
160 next
= grub_be_to_cpu32 (data
->rblock
.btree
);
161 tree
= (struct grub_sfs_btree
*) treeblock
;
163 /* Handle this level in the btree. */
168 grub_disk_read (data
->disk
, next
, 0, data
->blocksize
, treeblock
);
171 grub_free (treeblock
);
175 for (i
= grub_be_to_cpu16 (tree
->nodes
) - 1; i
>= 0; i
--)
178 #define EXTNODE(tree, index) \
179 ((struct grub_sfs_btree_node *) (((char *) &(tree)->node[0]) \
180 + (index) * (tree)->nodesize))
182 /* Follow the tree down to the leaf level. */
183 if ((grub_be_to_cpu32 (EXTNODE(tree
, i
)->key
) <= block
)
186 next
= grub_be_to_cpu32 (EXTNODE (tree
, i
)->data
);
190 /* If the leaf level is reached, just find the correct extent. */
191 if (grub_be_to_cpu32 (EXTNODE (tree
, i
)->key
) == block
&& tree
->leaf
)
193 struct grub_sfs_btree_extent
*extent
;
194 extent
= (struct grub_sfs_btree_extent
*) EXTNODE (tree
, i
);
196 /* We found a correct leaf. */
197 *size
= grub_be_to_cpu16 (extent
->size
);
198 *nextext
= grub_be_to_cpu32 (extent
->next
);
200 grub_free (treeblock
);
207 } while (!tree
->leaf
);
209 grub_free (treeblock
);
211 return grub_error (GRUB_ERR_FILE_READ_ERROR
, "SFS extent not found");
214 static grub_disk_addr_t
215 grub_sfs_read_block (grub_fshelp_node_t node
, grub_disk_addr_t fileblock
)
217 int blk
= node
->block
;
225 /* In case of the first block we don't have to lookup the
226 extent, the minimum size is always 1. */
230 err
= grub_sfs_read_extent (node
->data
, blk
, &size
, &next
);
234 if (fileblock
< (unsigned int) size
)
235 return fileblock
+ blk
;
242 grub_error (GRUB_ERR_FILE_READ_ERROR
,
243 "reading a SFS block outside the extent");
249 /* Read LEN bytes from the file described by DATA starting with byte
250 POS. Return the amount of read bytes in READ. */
252 grub_sfs_read_file (grub_fshelp_node_t node
,
253 void NESTED_FUNC_ATTR (*read_hook
) (grub_disk_addr_t sector
,
254 unsigned offset
, unsigned length
),
255 int pos
, grub_size_t len
, char *buf
)
257 return grub_fshelp_read_file (node
->data
->disk
, node
, read_hook
,
258 pos
, len
, buf
, grub_sfs_read_block
,
263 static struct grub_sfs_data
*
264 grub_sfs_mount (grub_disk_t disk
)
266 struct grub_sfs_data
*data
;
267 struct grub_sfs_objc
*rootobjc
;
268 char *rootobjc_data
= 0;
271 data
= grub_malloc (sizeof (*data
));
275 /* Read the rootblock. */
276 grub_disk_read (disk
, 0, 0, sizeof (struct grub_sfs_rblock
),
277 (char *) &data
->rblock
);
281 /* Make sure this is a sfs filesystem. */
282 if (grub_strncmp ((char *) (data
->rblock
.header
.magic
), "SFS", 4))
284 grub_error (GRUB_ERR_BAD_FS
, "not a sfs filesystem");
288 data
->blocksize
= grub_be_to_cpu32 (data
->rblock
.blocksize
);
289 rootobjc_data
= grub_malloc (data
->blocksize
);
293 /* Read the root object container. */
294 grub_disk_read (disk
, grub_be_to_cpu32 (data
->rblock
.rootobject
), 0,
295 data
->blocksize
, rootobjc_data
);
299 rootobjc
= (struct grub_sfs_objc
*) rootobjc_data
;
301 blk
= grub_be_to_cpu32 (rootobjc
->objects
[0].file_dir
.dir
.dir_objc
);
302 data
->diropen
.size
= 0;
303 data
->diropen
.block
= blk
;
304 data
->diropen
.data
= data
;
306 data
->label
= grub_strdup ((char *) (rootobjc
->objects
[0].filename
));
311 if (grub_errno
== GRUB_ERR_OUT_OF_RANGE
)
312 grub_error (GRUB_ERR_BAD_FS
, "not an sfs filesystem");
315 grub_free (rootobjc_data
);
321 grub_sfs_read_symlink (grub_fshelp_node_t node
)
323 struct grub_sfs_data
*data
= node
->data
;
327 block
= grub_malloc (data
->blocksize
);
331 grub_disk_read (data
->disk
, node
->block
, 0, data
->blocksize
, block
);
338 /* This is just a wild guess, but it always worked for me. How the
339 SLNK block looks like is not documented in the SFS docs. */
340 symlink
= grub_strdup (&block
[24]);
349 grub_sfs_iterate_dir (grub_fshelp_node_t dir
,
351 (*hook
) (const char *filename
,
352 enum grub_fshelp_filetype filetype
,
353 grub_fshelp_node_t node
))
355 struct grub_fshelp_node
*node
= 0;
356 struct grub_sfs_data
*data
= dir
->data
;
358 struct grub_sfs_objc
*objc
;
359 unsigned int next
= dir
->block
;
362 auto int NESTED_FUNC_ATTR
grub_sfs_create_node (const char *name
, int block
,
365 int NESTED_FUNC_ATTR
grub_sfs_create_node (const char *name
, int block
,
368 node
= grub_malloc (sizeof (*node
));
376 return hook (name
, type
, node
);
379 objc_data
= grub_malloc (data
->blocksize
);
383 /* The Object container can consist of multiple blocks, iterate over
387 grub_disk_read (data
->disk
, next
, 0, data
->blocksize
, objc_data
);
391 objc
= (struct grub_sfs_objc
*) objc_data
;
393 pos
= (char *) &objc
->objects
[0] - (char *) objc
;
395 /* Iterate over all entries in this block. */
396 while (pos
+ sizeof (struct grub_sfs_obj
) < data
->blocksize
)
398 struct grub_sfs_obj
*obj
;
399 obj
= (struct grub_sfs_obj
*) ((char *) objc
+ pos
);
400 char *filename
= (char *) (obj
->filename
);
402 enum grub_fshelp_filetype type
;
405 /* The filename and comment dynamically increase the size of
407 len
= grub_strlen (filename
);
408 len
+= grub_strlen (filename
+ len
+ 1);
410 pos
+= sizeof (*obj
) + len
;
411 /* Round up to a multiple of two bytes. */
412 pos
= ((pos
+ 1) >> 1) << 1;
414 if (grub_strlen (filename
) == 0)
417 /* First check if the file was not deleted. */
418 if (obj
->type
& GRUB_SFS_TYPE_DELETED
)
420 else if (obj
->type
& GRUB_SFS_TYPE_SYMLINK
)
421 type
= GRUB_FSHELP_SYMLINK
;
422 else if (obj
->type
& GRUB_SFS_TYPE_DIR
)
423 type
= GRUB_FSHELP_DIR
;
425 type
= GRUB_FSHELP_REG
;
427 if (type
== GRUB_FSHELP_DIR
)
428 block
= grub_be_to_cpu32 (obj
->file_dir
.dir
.dir_objc
);
430 block
= grub_be_to_cpu32 (obj
->file_dir
.file
.first_block
);
432 if (grub_sfs_create_node (filename
, block
,
433 grub_be_to_cpu32 (obj
->file_dir
.file
.size
),
436 grub_free (objc_data
);
441 next
= grub_be_to_cpu32 (objc
->next
);
445 grub_free (objc_data
);
450 /* Open a file named NAME and initialize FILE. */
452 grub_sfs_open (struct grub_file
*file
, const char *name
)
454 struct grub_sfs_data
*data
;
455 struct grub_fshelp_node
*fdiro
= 0;
458 grub_dl_ref (my_mod
);
461 data
= grub_sfs_mount (file
->device
->disk
);
465 grub_fshelp_find_file (name
, &data
->diropen
, &fdiro
, grub_sfs_iterate_dir
,
466 grub_sfs_read_symlink
, GRUB_FSHELP_REG
);
470 file
->size
= fdiro
->size
;
471 data
->diropen
= *fdiro
;
480 if (data
&& fdiro
!= &data
->diropen
)
483 grub_free (data
->label
);
487 grub_dl_unref (my_mod
);
495 grub_sfs_close (grub_file_t file
)
497 grub_free (file
->data
);
500 grub_dl_unref (my_mod
);
503 return GRUB_ERR_NONE
;
507 /* Read LEN bytes data from FILE into BUF. */
509 grub_sfs_read (grub_file_t file
, char *buf
, grub_size_t len
)
511 struct grub_sfs_data
*data
= (struct grub_sfs_data
*) file
->data
;
513 int size
= grub_sfs_read_file (&data
->diropen
, file
->read_hook
,
514 file
->offset
, len
, buf
);
521 grub_sfs_dir (grub_device_t device
, const char *path
,
522 int (*hook
) (const char *filename
, int dir
))
524 struct grub_sfs_data
*data
= 0;
525 struct grub_fshelp_node
*fdiro
= 0;
527 auto int NESTED_FUNC_ATTR
iterate (const char *filename
,
528 enum grub_fshelp_filetype filetype
,
529 grub_fshelp_node_t node
);
531 int NESTED_FUNC_ATTR
iterate (const char *filename
,
532 enum grub_fshelp_filetype filetype
,
533 grub_fshelp_node_t node
)
537 if (filetype
== GRUB_FSHELP_DIR
)
538 return hook (filename
, 1);
540 return hook (filename
, 0);
546 grub_dl_ref (my_mod
);
549 data
= grub_sfs_mount (device
->disk
);
553 grub_fshelp_find_file (path
, &data
->diropen
, &fdiro
, grub_sfs_iterate_dir
,
554 grub_sfs_read_symlink
, GRUB_FSHELP_DIR
);
558 grub_sfs_iterate_dir (fdiro
, iterate
);
561 if (data
&& fdiro
!= &data
->diropen
)
564 grub_free (data
->label
);
568 grub_dl_unref (my_mod
);
576 grub_sfs_label (grub_device_t device
, char **label
)
578 struct grub_sfs_data
*data
;
579 grub_disk_t disk
= device
->disk
;
581 data
= grub_sfs_mount (disk
);
583 *label
= data
->label
;
591 static struct grub_fs grub_sfs_fs
=
595 .open
= grub_sfs_open
,
596 .read
= grub_sfs_read
,
597 .close
= grub_sfs_close
,
598 .label
= grub_sfs_label
,
604 grub_fs_register (&grub_sfs_fs
);
612 grub_fs_unregister (&grub_sfs_fs
);