2004-09-11 11:42:43 +00:00
|
|
|
/* fshelp.c -- Filesystem helper functions */
|
|
|
|
/*
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-05-29 13:01:43 +00:00
|
|
|
* Copyright (C) 2004,2005,2006,2007,2008 Free Software Foundation, Inc.
|
2004-09-11 11:42:43 +00:00
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2004-09-11 11:42:43 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2004-09-11 11:42:43 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2004-09-11 11:42:43 +00:00
|
|
|
* 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
|
2007-07-21 23:32:33 +00:00
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2004-09-11 11:42:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <grub/err.h>
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/disk.h>
|
|
|
|
#include <grub/fshelp.h>
|
2011-04-11 21:01:51 +00:00
|
|
|
#include <grub/dl.h>
|
2012-02-08 18:26:01 +00:00
|
|
|
#include <grub/i18n.h>
|
2004-09-11 11:42:43 +00:00
|
|
|
|
2011-04-11 21:01:51 +00:00
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
2004-09-11 11:42:43 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
typedef int (*iterate_dir_func) (grub_fshelp_node_t dir,
|
|
|
|
grub_fshelp_iterate_dir_hook_t hook,
|
|
|
|
void *data);
|
2015-07-27 10:45:35 +00:00
|
|
|
typedef grub_err_t (*lookup_file_func) (grub_fshelp_node_t dir,
|
|
|
|
const char *name,
|
|
|
|
grub_fshelp_node_t *foundnode,
|
|
|
|
enum grub_fshelp_filetype *foundtype);
|
2013-01-21 01:33:46 +00:00
|
|
|
typedef char *(*read_symlink_func) (grub_fshelp_node_t node);
|
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
struct stack_element {
|
|
|
|
struct stack_element *parent;
|
|
|
|
grub_fshelp_node_t node;
|
|
|
|
enum grub_fshelp_filetype type;
|
|
|
|
};
|
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* Context for grub_fshelp_find_file. */
|
|
|
|
struct grub_fshelp_find_file_ctx
|
2004-09-11 11:42:43 +00:00
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
/* Inputs. */
|
2013-01-21 01:33:46 +00:00
|
|
|
const char *path;
|
2015-07-27 10:45:35 +00:00
|
|
|
grub_fshelp_node_t rootnode;
|
|
|
|
|
|
|
|
/* Global options. */
|
2013-01-21 01:33:46 +00:00
|
|
|
int symlinknest;
|
2015-07-27 10:45:35 +00:00
|
|
|
|
|
|
|
/* Current file being traversed and its parents. */
|
|
|
|
struct stack_element *currnode;
|
2013-01-21 01:33:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Helper for find_file_iter. */
|
|
|
|
static void
|
|
|
|
free_node (grub_fshelp_node_t node, struct grub_fshelp_find_file_ctx *ctx)
|
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
if (node != ctx->rootnode)
|
2013-01-21 01:33:46 +00:00
|
|
|
grub_free (node);
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
static void
|
|
|
|
pop_element (struct grub_fshelp_find_file_ctx *ctx)
|
|
|
|
{
|
|
|
|
struct stack_element *el;
|
|
|
|
el = ctx->currnode;
|
|
|
|
ctx->currnode = el->parent;
|
|
|
|
free_node (el->node, ctx);
|
|
|
|
grub_free (el);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_stack (struct grub_fshelp_find_file_ctx *ctx)
|
|
|
|
{
|
|
|
|
while (ctx->currnode)
|
|
|
|
pop_element (ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
go_up_a_level (struct grub_fshelp_find_file_ctx *ctx)
|
|
|
|
{
|
|
|
|
if (!ctx->currnode->parent)
|
|
|
|
return;
|
|
|
|
pop_element (ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
push_node (struct grub_fshelp_find_file_ctx *ctx, grub_fshelp_node_t node, enum grub_fshelp_filetype filetype)
|
|
|
|
{
|
|
|
|
struct stack_element *nst;
|
|
|
|
nst = grub_malloc (sizeof (*nst));
|
|
|
|
if (!nst)
|
|
|
|
return grub_errno;
|
|
|
|
nst->node = node;
|
|
|
|
nst->type = filetype & ~GRUB_FSHELP_CASE_INSENSITIVE;
|
|
|
|
nst->parent = ctx->currnode;
|
|
|
|
ctx->currnode = nst;
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
go_to_root (struct grub_fshelp_find_file_ctx *ctx)
|
|
|
|
{
|
|
|
|
free_stack (ctx);
|
|
|
|
return push_node (ctx, ctx->rootnode, GRUB_FSHELP_DIR);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct grub_fshelp_find_file_iter_ctx
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
grub_fshelp_node_t *foundnode;
|
|
|
|
enum grub_fshelp_filetype *foundtype;
|
|
|
|
};
|
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* Helper for grub_fshelp_find_file. */
|
|
|
|
static int
|
|
|
|
find_file_iter (const char *filename, enum grub_fshelp_filetype filetype,
|
|
|
|
grub_fshelp_node_t node, void *data)
|
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
struct grub_fshelp_find_file_iter_ctx *ctx = data;
|
2004-09-11 11:42:43 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
if (filetype == GRUB_FSHELP_UNKNOWN ||
|
2013-10-20 13:38:37 +00:00
|
|
|
((filetype & GRUB_FSHELP_CASE_INSENSITIVE)
|
2015-07-27 10:45:35 +00:00
|
|
|
? grub_strcasecmp (ctx->name, filename)
|
|
|
|
: grub_strcmp (ctx->name, filename)))
|
2004-09-11 11:42:43 +00:00
|
|
|
{
|
2013-01-21 01:33:46 +00:00
|
|
|
grub_free (node);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-09-11 11:42:43 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* The node is found, stop iterating over the nodes. */
|
2015-07-27 10:45:35 +00:00
|
|
|
*ctx->foundnode = node;
|
|
|
|
*ctx->foundtype = filetype;
|
2013-01-21 01:33:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
static grub_err_t
|
2015-07-27 10:45:35 +00:00
|
|
|
directory_find_file (grub_fshelp_node_t node, const char *name, grub_fshelp_node_t *foundnode,
|
|
|
|
enum grub_fshelp_filetype *foundtype, iterate_dir_func iterate_dir)
|
2013-01-21 01:33:46 +00:00
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
int found;
|
|
|
|
struct grub_fshelp_find_file_iter_ctx ctx = {
|
|
|
|
.foundnode = foundnode,
|
|
|
|
.foundtype = foundtype,
|
|
|
|
.name = name
|
|
|
|
};
|
|
|
|
found = iterate_dir (node, find_file_iter, &ctx);
|
|
|
|
if (! found)
|
|
|
|
{
|
|
|
|
if (grub_errno)
|
|
|
|
return grub_errno;
|
|
|
|
}
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
static grub_err_t
|
|
|
|
find_file (char *currpath,
|
|
|
|
iterate_dir_func iterate_dir, lookup_file_func lookup_file,
|
|
|
|
read_symlink_func read_symlink,
|
|
|
|
struct grub_fshelp_find_file_ctx *ctx)
|
|
|
|
{
|
|
|
|
char *name, *next;
|
|
|
|
grub_err_t err;
|
|
|
|
for (name = currpath; ; name = next)
|
2013-01-21 01:33:46 +00:00
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
char c;
|
|
|
|
grub_fshelp_node_t foundnode = NULL;
|
|
|
|
enum grub_fshelp_filetype foundtype = 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-10-20 13:38:37 +00:00
|
|
|
/* Remove all leading slashes. */
|
2015-07-27 10:45:35 +00:00
|
|
|
while (*name == '/')
|
|
|
|
name++;
|
2013-10-20 13:38:37 +00:00
|
|
|
|
|
|
|
/* Found the node! */
|
2015-07-27 10:45:35 +00:00
|
|
|
if (! *name)
|
|
|
|
return 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-10-20 13:38:37 +00:00
|
|
|
/* Extract the actual part from the pathname. */
|
2015-07-27 10:45:35 +00:00
|
|
|
for (next = name; *next && *next != '/'; next++);
|
2013-10-20 13:38:37 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* At this point it is expected that the current node is a
|
|
|
|
directory, check if this is true. */
|
2015-07-27 10:45:35 +00:00
|
|
|
if (ctx->currnode->type != GRUB_FSHELP_DIR)
|
|
|
|
return grub_error (GRUB_ERR_BAD_FILE_TYPE, N_("not a directory"));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
/* Don't rely on fs providing actual . in the listing. */
|
|
|
|
if (next - name == 1 && name[0] == '.')
|
|
|
|
continue;
|
2013-01-21 01:33:46 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
/* Don't rely on fs providing actual .. in the listing. */
|
|
|
|
if (next - name == 2 && name[0] == '.' && name[1] == '.')
|
|
|
|
{
|
|
|
|
go_up_a_level (ctx);
|
|
|
|
continue;
|
2013-01-21 01:33:46 +00:00
|
|
|
}
|
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
/* Iterate over the directory. */
|
|
|
|
c = *next;
|
|
|
|
*next = '\0';
|
|
|
|
if (lookup_file)
|
|
|
|
err = lookup_file (ctx->currnode->node, name, &foundnode, &foundtype);
|
|
|
|
else
|
|
|
|
err = directory_find_file (ctx->currnode->node, name, &foundnode, &foundtype, iterate_dir);
|
|
|
|
*next = c;
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (!foundnode)
|
|
|
|
break;
|
|
|
|
|
|
|
|
push_node (ctx, foundnode, foundtype);
|
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* Read in the symlink and follow it. */
|
2015-07-27 10:45:35 +00:00
|
|
|
if (ctx->currnode->type == GRUB_FSHELP_SYMLINK)
|
2013-01-21 01:33:46 +00:00
|
|
|
{
|
|
|
|
char *symlink;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* Test if the symlink does not loop. */
|
|
|
|
if (++ctx->symlinknest == 8)
|
2015-07-27 10:45:35 +00:00
|
|
|
return grub_error (GRUB_ERR_SYMLINK_LOOP,
|
|
|
|
N_("too deep nesting of symlinks"));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
symlink = read_symlink (ctx->currnode->node);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
if (!symlink)
|
2015-07-27 10:45:35 +00:00
|
|
|
return grub_errno;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* The symlink is an absolute path, go back to the root inode. */
|
|
|
|
if (symlink[0] == '/')
|
2004-09-11 11:42:43 +00:00
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
err = go_to_root (ctx);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Get from symlink to containing directory. */
|
|
|
|
go_up_a_level (ctx);
|
2004-09-11 11:42:43 +00:00
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
/* Lookup the node the symlink points to. */
|
2015-07-27 10:45:35 +00:00
|
|
|
find_file (symlink, iterate_dir, lookup_file, read_symlink, ctx);
|
2013-01-21 01:33:46 +00:00
|
|
|
grub_free (symlink);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
if (grub_errno)
|
2015-07-27 10:45:35 +00:00
|
|
|
return grub_errno;
|
2013-02-01 20:51:09 +00:00
|
|
|
}
|
2004-09-11 11:42:43 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 01:33:46 +00:00
|
|
|
return grub_error (GRUB_ERR_FILE_NOT_FOUND, N_("file `%s' not found"),
|
|
|
|
ctx->path);
|
|
|
|
}
|
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_fshelp_find_file_real (const char *path, grub_fshelp_node_t rootnode,
|
|
|
|
grub_fshelp_node_t *foundnode,
|
|
|
|
iterate_dir_func iterate_dir,
|
|
|
|
lookup_file_func lookup_file,
|
|
|
|
read_symlink_func read_symlink,
|
|
|
|
enum grub_fshelp_filetype expecttype)
|
2013-01-21 01:33:46 +00:00
|
|
|
{
|
|
|
|
struct grub_fshelp_find_file_ctx ctx = {
|
|
|
|
.path = path,
|
|
|
|
.rootnode = rootnode,
|
2015-07-27 10:45:35 +00:00
|
|
|
.symlinknest = 0,
|
|
|
|
.currnode = 0
|
2013-01-21 01:33:46 +00:00
|
|
|
};
|
|
|
|
grub_err_t err;
|
2015-07-27 10:45:35 +00:00
|
|
|
enum grub_fshelp_filetype foundtype;
|
|
|
|
char *duppath;
|
2013-01-21 01:33:46 +00:00
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
if (!path || path[0] != '/')
|
|
|
|
{
|
2015-07-27 10:45:35 +00:00
|
|
|
return grub_error (GRUB_ERR_BAD_FILENAME, N_("invalid file name `%s'"), path);
|
2004-09-11 11:42:43 +00:00
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
err = go_to_root (&ctx);
|
2004-09-11 11:42:43 +00:00
|
|
|
if (err)
|
|
|
|
return err;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
duppath = grub_strdup (path);
|
|
|
|
if (!duppath)
|
|
|
|
return grub_errno;
|
|
|
|
err = find_file (duppath, iterate_dir, lookup_file, read_symlink, &ctx);
|
|
|
|
grub_free (duppath);
|
|
|
|
if (err)
|
|
|
|
{
|
|
|
|
free_stack (&ctx);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
*foundnode = ctx.currnode->node;
|
|
|
|
foundtype = ctx.currnode->type;
|
|
|
|
/* Avoid the node being freed. */
|
|
|
|
ctx.currnode->node = 0;
|
|
|
|
free_stack (&ctx);
|
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
/* Check if the node that was found was of the expected type. */
|
2015-07-27 10:45:35 +00:00
|
|
|
if (expecttype == GRUB_FSHELP_REG && foundtype != expecttype)
|
2012-02-08 18:26:01 +00:00
|
|
|
return grub_error (GRUB_ERR_BAD_FILE_TYPE, N_("not a regular file"));
|
2015-07-27 10:45:35 +00:00
|
|
|
else if (expecttype == GRUB_FSHELP_DIR && foundtype != expecttype)
|
2012-02-08 18:26:01 +00:00
|
|
|
return grub_error (GRUB_ERR_BAD_FILE_TYPE, N_("not a directory"));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-07-27 10:45:35 +00:00
|
|
|
/* 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. */
|
|
|
|
grub_err_t
|
|
|
|
grub_fshelp_find_file (const char *path, grub_fshelp_node_t rootnode,
|
|
|
|
grub_fshelp_node_t *foundnode,
|
|
|
|
iterate_dir_func iterate_dir,
|
|
|
|
read_symlink_func read_symlink,
|
|
|
|
enum grub_fshelp_filetype expecttype)
|
|
|
|
{
|
|
|
|
return grub_fshelp_find_file_real (path, rootnode, foundnode,
|
|
|
|
iterate_dir, NULL,
|
|
|
|
read_symlink, expecttype);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_err_t
|
|
|
|
grub_fshelp_find_file_lookup (const char *path, grub_fshelp_node_t rootnode,
|
|
|
|
grub_fshelp_node_t *foundnode,
|
|
|
|
lookup_file_func lookup_file,
|
|
|
|
read_symlink_func read_symlink,
|
|
|
|
enum grub_fshelp_filetype expecttype)
|
|
|
|
{
|
|
|
|
return grub_fshelp_find_file_real (path, rootnode, foundnode,
|
|
|
|
NULL, lookup_file,
|
|
|
|
read_symlink, expecttype);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
/* 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
|
2013-02-27 16:19:15 +00:00
|
|
|
reading a block from the file. READ_HOOK_DATA is passed through as
|
|
|
|
the DATA argument to READ_HOOK. GET_BLOCK is used to translate
|
|
|
|
file blocks to disk blocks. The file is FILESIZE bytes big and the
|
2004-09-11 11:42:43 +00:00
|
|
|
blocks have a size of LOG2BLOCKSIZE (in log2). */
|
|
|
|
grub_ssize_t
|
|
|
|
grub_fshelp_read_file (grub_disk_t disk, grub_fshelp_node_t node,
|
2013-02-27 16:19:15 +00:00
|
|
|
grub_disk_read_hook_t read_hook, void *read_hook_data,
|
2008-05-20 05:00:53 +00:00
|
|
|
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),
|
2012-05-09 11:02:59 +00:00
|
|
|
grub_off_t filesize, int log2blocksize,
|
|
|
|
grub_disk_addr_t blocks_start)
|
2004-09-11 11:42:43 +00:00
|
|
|
{
|
2008-05-20 05:00:53 +00:00
|
|
|
grub_disk_addr_t i, blockcnt;
|
2004-09-11 11:42:43 +00:00
|
|
|
int blocksize = 1 << (log2blocksize + GRUB_DISK_SECTOR_BITS);
|
|
|
|
|
2015-01-20 11:58:17 +00:00
|
|
|
if (pos > filesize)
|
|
|
|
{
|
|
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE,
|
|
|
|
N_("attempt to read past the end of file"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-03-19 00:04:29 +00:00
|
|
|
/* Adjust LEN so it we can't read past the end of the file. */
|
2008-05-20 05:00:53 +00:00
|
|
|
if (pos + len > filesize)
|
|
|
|
len = filesize - pos;
|
2004-09-11 11:42:43 +00:00
|
|
|
|
2008-05-20 05:00:53 +00:00
|
|
|
blockcnt = ((len + pos) + blocksize - 1) >> (log2blocksize + GRUB_DISK_SECTOR_BITS);
|
2004-09-11 11:42:43 +00:00
|
|
|
|
2008-05-20 05:00:53 +00:00
|
|
|
for (i = pos >> (log2blocksize + GRUB_DISK_SECTOR_BITS); i < blockcnt; i++)
|
2004-09-11 11:42:43 +00:00
|
|
|
{
|
2008-05-20 05:00:53 +00:00
|
|
|
grub_disk_addr_t blknr;
|
|
|
|
int blockoff = pos & (blocksize - 1);
|
2004-09-11 11:42:43 +00:00
|
|
|
int blockend = blocksize;
|
|
|
|
|
|
|
|
int skipfirst = 0;
|
|
|
|
|
|
|
|
blknr = get_block (node, i);
|
|
|
|
if (grub_errno)
|
|
|
|
return -1;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
blknr = blknr << log2blocksize;
|
|
|
|
|
|
|
|
/* Last block. */
|
|
|
|
if (i == blockcnt - 1)
|
|
|
|
{
|
2008-05-20 05:00:53 +00:00
|
|
|
blockend = (len + pos) & (blocksize - 1);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
/* The last portion is exactly blocksize. */
|
2007-03-19 00:04:29 +00:00
|
|
|
if (! blockend)
|
2004-09-11 11:42:43 +00:00
|
|
|
blockend = blocksize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First block. */
|
2008-05-20 05:00:53 +00:00
|
|
|
if (i == (pos >> (log2blocksize + GRUB_DISK_SECTOR_BITS)))
|
2004-09-11 11:42:43 +00:00
|
|
|
{
|
|
|
|
skipfirst = blockoff;
|
|
|
|
blockend -= skipfirst;
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2004-09-11 11:42:43 +00:00
|
|
|
/* If the block number is 0 this block is not stored on disk but
|
|
|
|
is zero filled instead. */
|
|
|
|
if (blknr)
|
|
|
|
{
|
2009-06-10 21:04:23 +00:00
|
|
|
disk->read_hook = read_hook;
|
2013-02-27 16:19:15 +00:00
|
|
|
disk->read_hook_data = read_hook_data;
|
2005-12-25 15:59:50 +00:00
|
|
|
|
2012-05-09 11:02:59 +00:00
|
|
|
grub_disk_read (disk, blknr + blocks_start, skipfirst,
|
2004-09-11 11:42:43 +00:00
|
|
|
blockend, buf);
|
|
|
|
disk->read_hook = 0;
|
|
|
|
if (grub_errno)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
2008-02-02 14:15:31 +00:00
|
|
|
grub_memset (buf, 0, blockend);
|
2004-09-11 11:42:43 +00:00
|
|
|
|
|
|
|
buf += blocksize - skipfirst;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|