f8795693f1
an to list its information with command ls. * fs/ieee1275/ofnet.c (grub_ofnet_open): parse parameters to determine netdisk data * fs/ieee1275/ofnet.c (grub_ofnet_close): dealloc netdisk data * include/grub/disk.h: added struct grub_netdisk_data * include/grub/ieee1275/ofnet.h: added newline * kern/disk.c (grub_disk_open): ignore partition check for netdisk * normal/misc.c (grub_normal_print_device_info): added support to list netdisk information
159 lines
4.3 KiB
C
159 lines
4.3 KiB
C
/* misc.c - miscellaneous functions */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2005,2007,2008,2009 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/normal.h>
|
|
#include <grub/disk.h>
|
|
#include <grub/fs.h>
|
|
#include <grub/err.h>
|
|
#include <grub/misc.h>
|
|
#include <grub/mm.h>
|
|
#include <grub/datetime.h>
|
|
#include <grub/term.h>
|
|
#include <grub/i18n.h>
|
|
|
|
/* Print the information on the device NAME. */
|
|
grub_err_t
|
|
grub_normal_print_device_info (const char *name)
|
|
{
|
|
grub_device_t dev;
|
|
grub_netdisk_data_t data;
|
|
char *p;
|
|
|
|
if ((! grub_strcmp(name, "net")) || (! grub_strncmp(name, "net,", 4)))
|
|
{
|
|
grub_printf_ (N_("Device network:"));
|
|
grub_putchar (' ');
|
|
|
|
dev = grub_device_open (name);
|
|
if (! dev || ! dev->disk || ! dev->disk->data)
|
|
grub_printf ("%s", _("Network information not available"));
|
|
else
|
|
{
|
|
data = dev->disk->data;
|
|
grub_putchar ('\n');
|
|
grub_putchar ('\t');
|
|
if (data->protocol == GRUB_NETDISK_PROTOCOL_TFTP)
|
|
grub_printf_(N_("Protocol: %s"), "TFTP");
|
|
else
|
|
grub_printf_(N_("Protocol: %s"), "Unknown");
|
|
grub_putchar ('\n');
|
|
grub_putchar ('\t');
|
|
grub_printf_(N_("Server IP: %d.%d.%d.%d"), data->server_ip & 0xff, data->server_ip >> 8 & 0xff, data->server_ip >> 16 & 0xff, data->server_ip >> 24 & 0xff);
|
|
if (data->username)
|
|
{
|
|
grub_putchar ('\n');
|
|
grub_putchar ('\t');
|
|
grub_printf_(N_("Username: %s"), data->username);
|
|
if (data->password)
|
|
{
|
|
grub_putchar ('\n');
|
|
grub_putchar ('\t');
|
|
grub_printf_(N_("Password: %s"), data->password);
|
|
}
|
|
}
|
|
}
|
|
grub_putchar ('\n');
|
|
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
p = grub_strchr (name, ',');
|
|
if (p)
|
|
{
|
|
grub_putchar ('\t');
|
|
grub_printf_ (N_("Partition %s:"), name);
|
|
grub_putchar (' ');
|
|
}
|
|
else
|
|
{
|
|
grub_printf_ (N_("Device %s:"), name);
|
|
grub_putchar (' ');
|
|
}
|
|
|
|
dev = grub_device_open (name);
|
|
if (! dev)
|
|
grub_printf ("%s", _("Filesystem cannot be accessed"));
|
|
else if (dev->disk)
|
|
{
|
|
grub_fs_t fs;
|
|
|
|
fs = grub_fs_probe (dev);
|
|
/* Ignore all errors. */
|
|
grub_errno = 0;
|
|
|
|
if (fs)
|
|
{
|
|
grub_printf_ (N_("Filesystem type %s"), fs->name);
|
|
if (fs->label)
|
|
{
|
|
char *label;
|
|
(fs->label) (dev, &label);
|
|
if (grub_errno == GRUB_ERR_NONE)
|
|
{
|
|
if (label && grub_strlen (label))
|
|
{
|
|
grub_putchar (' ');
|
|
grub_printf_ (N_("- Label \"%s\""), label);
|
|
}
|
|
grub_free (label);
|
|
}
|
|
grub_errno = GRUB_ERR_NONE;
|
|
}
|
|
if (fs->mtime)
|
|
{
|
|
grub_int32_t tm;
|
|
struct grub_datetime datetime;
|
|
(fs->mtime) (dev, &tm);
|
|
if (grub_errno == GRUB_ERR_NONE)
|
|
{
|
|
grub_unixtime2datetime (tm, &datetime);
|
|
grub_putchar (' ');
|
|
grub_printf_ (N_("- Last modification time %d-%02d-%02d "
|
|
"%02d:%02d:%02d %s"),
|
|
datetime.year, datetime.month, datetime.day,
|
|
datetime.hour, datetime.minute, datetime.second,
|
|
grub_get_weekday_name (&datetime));
|
|
|
|
}
|
|
grub_errno = GRUB_ERR_NONE;
|
|
}
|
|
if (fs->uuid)
|
|
{
|
|
char *uuid;
|
|
(fs->uuid) (dev, &uuid);
|
|
if (grub_errno == GRUB_ERR_NONE)
|
|
{
|
|
if (uuid && grub_strlen (uuid))
|
|
grub_printf (", UUID %s", uuid);
|
|
grub_free (uuid);
|
|
}
|
|
grub_errno = GRUB_ERR_NONE;
|
|
}
|
|
}
|
|
else if (! dev->disk->has_partitions || dev->disk->partition)
|
|
grub_printf ("%s", _("Unknown filesystem"));
|
|
else
|
|
grub_printf ("%s", _("Partition table"));
|
|
|
|
grub_device_close (dev);
|
|
}
|
|
|
|
grub_putchar ('\n');
|
|
return grub_errno;
|
|
}
|