2010-07-31 16:45:57 +00:00
|
|
|
/*
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
* Copyright (C) 2002,2003,2005,2006,2007,2008,2009,2010 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-09-19 20:22:43 +00:00
|
|
|
#include <config-util.h>
|
2010-04-27 05:20:28 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
2010-08-01 20:59:02 +00:00
|
|
|
#include <error.h>
|
2010-04-27 05:20:28 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-05-04 03:39:03 +00:00
|
|
|
#include <stdint.h>
|
2010-04-27 05:20:28 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
2010-05-04 03:39:03 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2010-05-20 22:16:10 +00:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
2010-04-27 05:20:28 +00:00
|
|
|
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/err.h>
|
|
|
|
#include <grub/env.h>
|
|
|
|
#include <grub/types.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/i18n.h>
|
|
|
|
#include <grub/time.h>
|
|
|
|
#include <grub/emu/misc.h>
|
|
|
|
|
2010-06-07 21:41:55 +00:00
|
|
|
#ifdef HAVE_DEVICE_MAPPER
|
|
|
|
# include <libdevmapper.h>
|
|
|
|
#endif
|
|
|
|
|
2010-08-04 12:45:58 +00:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_MOUNT_H
|
2010-08-01 20:59:02 +00:00
|
|
|
# include <sys/mount.h>
|
|
|
|
#endif
|
|
|
|
|
2010-09-10 12:32:28 +00:00
|
|
|
#ifdef HAVE_SYS_MNTTAB_H
|
|
|
|
# include <stdio.h> /* Needed by sys/mnttab.h. */
|
|
|
|
# include <sys/mnttab.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_MKDEV_H
|
|
|
|
# include <sys/mkdev.h> /* makedev */
|
|
|
|
#endif
|
|
|
|
|
2010-04-27 05:20:28 +00:00
|
|
|
int verbosity;
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_util_warn (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
fprintf (stderr, _("%s: warn:"), program_name);
|
|
|
|
fprintf (stderr, " ");
|
|
|
|
va_start (ap, fmt);
|
|
|
|
vfprintf (stderr, fmt, ap);
|
|
|
|
va_end (ap);
|
|
|
|
fprintf (stderr, ".\n");
|
|
|
|
fflush (stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_util_info (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
if (verbosity > 0)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
fprintf (stderr, _("%s: info:"), program_name);
|
|
|
|
fprintf (stderr, " ");
|
|
|
|
va_start (ap, fmt);
|
|
|
|
vfprintf (stderr, fmt, ap);
|
|
|
|
va_end (ap);
|
|
|
|
fprintf (stderr, ".\n");
|
|
|
|
fflush (stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_util_error (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
fprintf (stderr, _("%s: error:"), program_name);
|
|
|
|
fprintf (stderr, " ");
|
|
|
|
va_start (ap, fmt);
|
|
|
|
vfprintf (stderr, fmt, ap);
|
|
|
|
va_end (ap);
|
|
|
|
fprintf (stderr, ".\n");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
xmalloc (grub_size_t size)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
2010-04-27 15:25:12 +00:00
|
|
|
p = malloc (size);
|
2010-04-27 05:20:28 +00:00
|
|
|
if (! p)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_util_error (_("out of memory"));
|
2010-04-27 05:20:28 +00:00
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
xrealloc (void *ptr, grub_size_t size)
|
|
|
|
{
|
2010-04-27 15:25:12 +00:00
|
|
|
ptr = realloc (ptr, size);
|
2010-04-27 05:20:28 +00:00
|
|
|
if (! ptr)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_util_error (_("out of memory"));
|
2010-04-27 05:20:28 +00:00
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
xstrdup (const char *str)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char *newstr;
|
|
|
|
|
2010-04-27 15:25:12 +00:00
|
|
|
len = strlen (str);
|
2010-04-27 05:20:28 +00:00
|
|
|
newstr = (char *) xmalloc (len + 1);
|
2010-04-27 15:25:12 +00:00
|
|
|
memcpy (newstr, str, len + 1);
|
2010-04-27 05:20:28 +00:00
|
|
|
|
|
|
|
return newstr;
|
|
|
|
}
|
|
|
|
|
2010-04-27 15:25:12 +00:00
|
|
|
#ifndef HAVE_VASPRINTF
|
|
|
|
|
|
|
|
int
|
|
|
|
vasprintf (char **buf, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
/* Should be large enough. */
|
|
|
|
*buf = xmalloc (512);
|
|
|
|
|
2010-09-20 17:14:29 +00:00
|
|
|
return vsnprintf (*buf, 512, fmt, ap);
|
2010-04-27 15:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_ASPRINTF
|
|
|
|
|
|
|
|
int
|
|
|
|
asprintf (char **buf, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start (ap, fmt);
|
2010-09-19 20:09:05 +00:00
|
|
|
status = vasprintf (buf, fmt, ap);
|
2010-04-27 15:25:12 +00:00
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-04-27 05:20:28 +00:00
|
|
|
char *
|
|
|
|
xasprintf (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char *result;
|
|
|
|
|
|
|
|
va_start (ap, fmt);
|
|
|
|
if (vasprintf (&result, fmt, ap) < 0)
|
|
|
|
{
|
|
|
|
if (errno == ENOMEM)
|
2011-11-11 20:44:56 +00:00
|
|
|
grub_util_error (_("out of memory"));
|
2010-04-27 05:20:28 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_exit (void)
|
|
|
|
{
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_uint64_t
|
|
|
|
grub_get_time_ms (void)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
gettimeofday (&tv, 0);
|
|
|
|
|
|
|
|
return (tv.tv_sec * 1000 + tv.tv_usec / 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_uint32_t
|
|
|
|
grub_get_rtc (void)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
gettimeofday (&tv, 0);
|
|
|
|
|
|
|
|
return (tv.tv_sec * GRUB_TICKS_PER_SECOND
|
|
|
|
+ (((tv.tv_sec % GRUB_TICKS_PER_SECOND) * 1000000 + tv.tv_usec)
|
|
|
|
* GRUB_TICKS_PER_SECOND / 1000000));
|
|
|
|
}
|
2010-05-04 03:39:03 +00:00
|
|
|
|
2010-05-18 10:57:31 +00:00
|
|
|
char *
|
|
|
|
canonicalize_file_name (const char *path)
|
|
|
|
{
|
|
|
|
char *ret;
|
2011-09-29 08:36:55 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
ret = xmalloc (PATH_MAX);
|
|
|
|
if (!_fullpath (ret, path, PATH_MAX))
|
|
|
|
return NULL;
|
|
|
|
#elif defined (PATH_MAX)
|
2010-05-18 10:57:31 +00:00
|
|
|
ret = xmalloc (PATH_MAX);
|
2010-05-27 14:45:41 +00:00
|
|
|
if (!realpath (path, ret))
|
|
|
|
return NULL;
|
2010-05-18 10:57:31 +00:00
|
|
|
#else
|
|
|
|
ret = realpath (path, NULL);
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-06-07 21:41:55 +00:00
|
|
|
#ifdef HAVE_DEVICE_MAPPER
|
|
|
|
static void device_mapper_null_log (int level __attribute__ ((unused)),
|
|
|
|
const char *file __attribute__ ((unused)),
|
|
|
|
int line __attribute__ ((unused)),
|
|
|
|
int dm_errno __attribute__ ((unused)),
|
|
|
|
const char *f __attribute__ ((unused)),
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
grub_device_mapper_supported (void)
|
|
|
|
{
|
|
|
|
static int supported = -1;
|
|
|
|
|
|
|
|
if (supported == -1)
|
|
|
|
{
|
|
|
|
struct dm_task *dmt;
|
|
|
|
|
|
|
|
/* Suppress annoying log messages. */
|
|
|
|
dm_log_with_errno_init (&device_mapper_null_log);
|
|
|
|
|
|
|
|
dmt = dm_task_create (DM_DEVICE_VERSION);
|
|
|
|
supported = (dmt != NULL);
|
|
|
|
if (dmt)
|
|
|
|
dm_task_destroy (dmt);
|
|
|
|
|
|
|
|
/* Restore the original logger. */
|
|
|
|
dm_log_with_errno_init (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return supported;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_DEVICE_MAPPER */
|