123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- /* fshelp.c -- Filesystem helper functions */
- /*
- * GRUB -- GRand Unified Bootloader
- * Copyright (C) 2004,2005,2006,2007,2008 Free Software Foundation, Inc.
- *
- * GRUB is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GRUB is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <grub/err.h>
- #include <grub/mm.h>
- #include <grub/misc.h>
- #include <grub/disk.h>
- #include <grub/fshelp.h>
- GRUB_EXPORT(grub_fshelp_find_file);
- GRUB_EXPORT(grub_fshelp_log2blksize);
- GRUB_EXPORT(grub_fshelp_read_file);
- struct grub_fshelp_find_file_closure
- {
- grub_fshelp_node_t rootnode;
- int (*iterate_dir) (grub_fshelp_node_t dir,
- int (*hook)
- (const char *filename,
- enum grub_fshelp_filetype filetype,
- grub_fshelp_node_t node, void *closure),
- void *closure);
- void *closure;
- char *(*read_symlink) (grub_fshelp_node_t node);
- int symlinknest;
- enum grub_fshelp_filetype foundtype;
- grub_fshelp_node_t currroot;
- };
- static void
- free_node (grub_fshelp_node_t node, struct grub_fshelp_find_file_closure *c)
- {
- if (node != c->rootnode && node != c->currroot)
- grub_free (node);
- }
- struct find_file_closure
- {
- char *name;
- enum grub_fshelp_filetype *type;
- grub_fshelp_node_t *oldnode;
- grub_fshelp_node_t *currnode;
- };
- static int
- iterate (const char *filename,
- enum grub_fshelp_filetype filetype,
- grub_fshelp_node_t node,
- void *closure)
- {
- struct find_file_closure *c = closure;
- if (filetype == GRUB_FSHELP_UNKNOWN ||
- (grub_strcmp (c->name, filename) &&
- (! (filetype & GRUB_FSHELP_CASE_INSENSITIVE) ||
- grub_strncasecmp (c->name, filename, GRUB_LONG_MAX))))
- {
- grub_free (node);
- return 0;
- }
- /* The node is found, stop iterating over the nodes. */
- *(c->type) = filetype & ~GRUB_FSHELP_CASE_INSENSITIVE;
- *(c->oldnode) = *(c->currnode);
- *(c->currnode) = node;
- return 1;
- }
- static grub_err_t
- find_file (const char *currpath, grub_fshelp_node_t currroot,
- grub_fshelp_node_t *currfound,
- struct grub_fshelp_find_file_closure *c)
- {
- char fpath[grub_strlen (currpath) + 1];
- char *name = fpath;
- char *next;
- enum grub_fshelp_filetype type = GRUB_FSHELP_DIR;
- grub_fshelp_node_t currnode = currroot;
- grub_fshelp_node_t oldnode = currroot;
- c->currroot = currroot;
- grub_strncpy (fpath, currpath, grub_strlen (currpath) + 1);
- /* Remove all leading slashes. */
- while (*name == '/')
- name++;
- if (! *name)
- {
- *currfound = currnode;
- return 0;
- }
- for (;;)
- {
- int found;
- struct find_file_closure cc;
- /* Extract the actual part from the pathname. */
- next = grub_strchr (name, '/');
- if (next)
- {
- /* Remove all leading slashes. */
- while (*next == '/')
- *(next++) = '\0';
- }
- /* At this point it is expected that the current node is a
- directory, check if this is true. */
- if (type != GRUB_FSHELP_DIR)
- {
- free_node (currnode, c);
- return grub_error (GRUB_ERR_BAD_FILE_TYPE, "not a directory");
- }
- cc.name = name;
- cc.type = &type;
- cc.oldnode = &oldnode;
- cc.currnode = &currnode;
- /* Iterate over the directory. */
- found = c->iterate_dir (currnode, iterate, &cc);
- if (! found)
- {
- if (grub_errno)
- return grub_errno;
- break;
- }
- /* Read in the symlink and follow it. */
- if (type == GRUB_FSHELP_SYMLINK)
- {
- char *symlink;
- /* Test if the symlink does not loop. */
- if (++(c->symlinknest) == 8)
- {
- free_node (currnode, c);
- free_node (oldnode, c);
- return grub_error (GRUB_ERR_SYMLINK_LOOP,
- "too deep nesting of symlinks");
- }
- symlink = c->read_symlink (currnode);
- free_node (currnode, c);
- if (!symlink)
- {
- free_node (oldnode, c);
- return grub_errno;
- }
- /* The symlink is an absolute path, go back to the root inode. */
- if (symlink[0] == '/')
- {
- free_node (oldnode, c);
- oldnode = c->rootnode;
- }
- /* Lookup the node the symlink points to. */
- find_file (symlink, oldnode, &currnode, c);
- type = c->foundtype;
- grub_free (symlink);
- if (grub_errno)
- {
- free_node (oldnode, c);
- return grub_errno;
- }
- }
- free_node (oldnode, c);
- /* Found the node! */
- if (! next || *next == '\0')
- {
- *currfound = currnode;
- c->foundtype = type;
- return 0;
- }
- name = next;
- }
- return grub_error (GRUB_ERR_FILE_NOT_FOUND, "file not found");
- }
- /* Lookup the node PATH. The node ROOTNODE describes the root of the
- directory tree. The node found is returned in FOUNDNODE, which is
- either a ROOTNODE or a new malloc'ed node. ITERATE_DIR is used to
- iterate over all directory entries in the current node.
- READ_SYMLINK is used to read the symlink if a node is a symlink.
- EXPECTTYPE is the type node that is expected by the called, an
- error is generated if the node is not of the expected type. Make
- sure you use the NESTED_FUNC_ATTR macro for HOOK, this is required
- because GCC has a nasty bug when using regparm=3. */
- grub_err_t
- grub_fshelp_find_file (const char *path, grub_fshelp_node_t rootnode,
- grub_fshelp_node_t *foundnode,
- int (*iterate_dir) (grub_fshelp_node_t dir,
- int (*hook)
- (const char *filename,
- enum grub_fshelp_filetype filetype,
- grub_fshelp_node_t node,
- void *closure),
- void *closure),
- void *closure,
- char *(*read_symlink) (grub_fshelp_node_t node),
- enum grub_fshelp_filetype expecttype)
- {
- grub_err_t err;
- struct grub_fshelp_find_file_closure c;
- c.rootnode = rootnode;
- c.iterate_dir = iterate_dir;
- c.closure = closure;
- c.read_symlink = read_symlink;
- c.symlinknest = 0;
- c.foundtype = GRUB_FSHELP_DIR;
- if (!path || path[0] != '/')
- {
- grub_error (GRUB_ERR_BAD_FILENAME, "bad filename");
- return grub_errno;
- }
- err = find_file (path, rootnode, foundnode, &c);
- if (err)
- return err;
- /* Check if the node that was found was of the expected type. */
- if (expecttype == GRUB_FSHELP_REG && c.foundtype != expecttype)
- return grub_error (GRUB_ERR_BAD_FILE_TYPE, "not a regular file");
- else if (expecttype == GRUB_FSHELP_DIR && c.foundtype != expecttype)
- return grub_error (GRUB_ERR_BAD_FILE_TYPE, "not a directory");
- return 0;
- }
- /* Read LEN bytes from the file NODE on disk DISK into the buffer BUF,
- beginning with the block POS. READ_HOOK should be set before
- reading a block from the file. GET_BLOCK is used to translate file
- blocks to disk blocks. The file is FILESIZE bytes big and the
- blocks have a size of LOG2BLOCKSIZE (in log2). */
- grub_ssize_t
- grub_fshelp_read_file (grub_disk_t disk, grub_fshelp_node_t node,
- void (*read_hook) (grub_disk_addr_t sector,
- unsigned offset,
- unsigned length,
- void *closure),
- void *closure, int flags,
- grub_off_t pos, grub_size_t len, char *buf,
- grub_disk_addr_t (*get_block) (grub_fshelp_node_t node,
- grub_disk_addr_t block),
- grub_off_t filesize, int log2blocksize)
- {
- grub_disk_addr_t i, blockcnt;
- int blocksize = 1 << (log2blocksize + GRUB_DISK_SECTOR_BITS);
- /* Adjust LEN so it we can't read past the end of the file. */
- if (pos + len > filesize)
- len = filesize - pos;
- blockcnt = ((len + pos) + blocksize - 1) >>
- (log2blocksize + GRUB_DISK_SECTOR_BITS);
- for (i = pos >> (log2blocksize + GRUB_DISK_SECTOR_BITS); i < blockcnt; i++)
- {
- grub_disk_addr_t blknr;
- int blockoff = pos & (blocksize - 1);
- int blockend = blocksize;
- int skipfirst = 0;
- blknr = get_block (node, i);
- if (grub_errno)
- return -1;
- blknr = blknr << log2blocksize;
- /* Last block. */
- if (i == blockcnt - 1)
- {
- blockend = (len + pos) & (blocksize - 1);
- /* The last portion is exactly blocksize. */
- if (! blockend)
- blockend = blocksize;
- }
- /* First block. */
- if (i == (pos >> (log2blocksize + GRUB_DISK_SECTOR_BITS)))
- {
- skipfirst = blockoff;
- blockend -= skipfirst;
- }
- /* If the block number is 0 this block is not stored on disk but
- is zero filled instead. */
- if (blknr)
- {
- disk->read_hook = read_hook;
- disk->closure = closure;
- grub_disk_read_ex (disk, blknr, skipfirst, blockend, buf, flags);
- disk->read_hook = 0;
- if (grub_errno)
- return -1;
- }
- else if (buf)
- grub_memset (buf, 0, blockend);
- if (buf)
- buf += blocksize - skipfirst;
- }
- return len;
- }
- unsigned int
- grub_fshelp_log2blksize (unsigned int blksize, unsigned int *pow)
- {
- int mod;
- *pow = 0;
- while (blksize > 1)
- {
- mod = blksize - ((blksize >> 1) << 1);
- blksize >>= 1;
- /* Check if it really is a power of two. */
- if (mod)
- return grub_error (GRUB_ERR_BAD_NUMBER,
- "the blocksize is not a power of two");
- (*pow)++;
- }
- return GRUB_ERR_NONE;
- }
|