123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- /* parttool.c - common dispatcher and parser for partition operations */
- /*
- * GRUB -- GRand Unified Bootloader
- * Copyright (C) 2009 Free Software Foundation, Inc.
- *
- * This program 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 2 of the License, or
- * (at your option) any later version.
- *
- * This program 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 this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
- #include <grub/types.h>
- #include <grub/misc.h>
- #include <grub/mm.h>
- #include <grub/err.h>
- #include <grub/dl.h>
- #include <grub/env.h>
- #include <grub/lib.h>
- #include <grub/device.h>
- #include <grub/disk.h>
- #include <grub/partition.h>
- #include <grub/parttool.h>
- #include <grub/command.h>
- #include <grub/i18n.h>
- GRUB_EXPORT(grub_parttool_reg);
- GRUB_EXPORT(grub_parttool_unregister);
- static struct grub_parttool *parts = 0;
- static int curhandle = 0;
- static grub_dl_t mymod;
- static char helpmsg[] =
- "Perform COMMANDS on partition.\n"
- "Use \"parttool PARTITION help\" for the list "
- "of available commands.";
- int
- grub_parttool_reg (const char *part_name,
- const grub_parttool_function_t func,
- const struct grub_parttool_argdesc *args)
- {
- struct grub_parttool *cur;
- int nargs = 0;
- if (! parts)
- grub_dl_ref (mymod);
- cur = (struct grub_parttool *) grub_malloc (sizeof (struct grub_parttool));
- cur->next = parts;
- cur->name = grub_strdup (part_name);
- cur->handle = curhandle++;
- for (nargs = 0; args[nargs].name != 0; nargs++);
- cur->nargs = nargs;
- cur->args = (struct grub_parttool_argdesc *)
- grub_malloc ((nargs + 1) * sizeof (struct grub_parttool_argdesc));
- grub_memcpy (cur->args, args,
- (nargs + 1) * sizeof (struct grub_parttool_argdesc));
- cur->func = func;
- parts = cur;
- return cur->handle;
- }
- void
- grub_parttool_unregister (int handle)
- {
- struct grub_parttool *prev = 0, *cur, *t;
- for (cur = parts; cur; )
- if (cur->handle == handle)
- {
- grub_free (cur->args);
- grub_free (cur->name);
- if (prev)
- prev->next = cur->next;
- else
- parts = cur->next;
- t = cur;
- cur = cur->next;
- grub_free (t);
- }
- else
- {
- prev = cur;
- cur = cur->next;
- }
- if (! parts)
- grub_dl_unref (mymod);
- }
- static grub_err_t
- show_help (grub_device_t dev)
- {
- struct grub_parttool *cur;
- int found = 0;
- for (cur = parts; cur; cur = cur->next)
- if (grub_strcmp (dev->disk->partition->partmap->name, cur->name) == 0)
- {
- struct grub_parttool_argdesc *curarg;
- found = 1;
- for (curarg = cur->args; curarg->name; curarg++)
- {
- int spacing = 20;
- spacing -= grub_strlen (curarg->name);
- grub_printf ("%s", curarg->name);
- switch (curarg->type)
- {
- case GRUB_PARTTOOL_ARG_BOOL:
- grub_printf ("+/-");
- spacing -= 3;
- break;
- case GRUB_PARTTOOL_ARG_VAL:
- grub_printf ("=VAL");
- spacing -= 4;
- break;
- case GRUB_PARTTOOL_ARG_END:
- break;
- }
- while (spacing-- > 0)
- grub_printf (" ");
- grub_printf ("%s\n", curarg->desc);
- }
- }
- if (! found)
- grub_printf ("Sorry no parttool is available for %s\n",
- dev->disk->partition->partmap->name);
- return GRUB_ERR_NONE;
- }
- static grub_err_t
- grub_cmd_parttool (grub_command_t cmd __attribute__ ((unused)),
- int argc, char **args)
- {
- grub_device_t dev;
- struct grub_parttool *cur, *ptool;
- int *parsed;
- int i, j;
- grub_err_t err = GRUB_ERR_NONE;
- if (argc < 1)
- {
- grub_printf ("%s\n", helpmsg);
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "too few arguments");
- }
- if (args[0][0] == '(' && args[0][grub_strlen (args[0]) - 1] == ')')
- {
- args[0][grub_strlen (args[0]) - 1] = 0;
- dev = grub_device_open (args[0] + 1);
- args[0][grub_strlen (args[0]) - 1] = ')';
- }
- else
- dev = grub_device_open (args[0]);
- if (! dev)
- return grub_errno;
- if (! dev->disk)
- {
- grub_device_close (dev);
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "not a disk");
- }
- if (! dev->disk->partition)
- {
- grub_device_close (dev);
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "not a partition");
- }
- /* Load modules. */
- #if !GRUB_NO_MODULES
- {
- const char *prefix;
- prefix = grub_env_get ("prefix");
- if (prefix)
- {
- char *filename;
- filename = grub_xasprintf ("%s/parttool.lst", prefix);
- if (filename)
- {
- grub_file_t file;
- file = grub_file_open (filename);
- if (file)
- {
- char *buf = 0;
- for (;; grub_free(buf))
- {
- char *p, *name;
- buf = grub_getline (file);
- if (! buf)
- break;
- name = buf;
- if (! grub_isgraph (name[0]))
- continue;
- p = grub_strchr (name, ':');
- if (! p)
- continue;
- *p = '\0';
- while (*++p == ' ')
- ;
- if (! grub_isgraph (*p))
- continue;
- if (grub_strcmp (name, dev->disk->partition->partmap->name)
- != 0)
- continue;
- grub_dl_load (p);
- }
- grub_file_close (file);
- }
- grub_free (filename);
- }
- }
- /* Ignore errors. */
- grub_errno = GRUB_ERR_NONE;
- }
- #endif
- if (argc == 1)
- return show_help (dev);
- for (i = 1; i < argc; i++)
- if (grub_strcmp (args[i], "help") == 0)
- return show_help (dev);
- parsed = (int *) grub_zalloc (argc * sizeof (int));
- for (i = 1; i < argc; i++)
- if (! parsed[i])
- {
- struct grub_parttool_argdesc *curarg;
- struct grub_parttool_args *pargs;
- for (cur = parts; cur; cur = cur->next)
- if (grub_strcmp (dev->disk->partition->partmap->name, cur->name) == 0)
- {
- for (curarg = cur->args; curarg->name; curarg++)
- if (grub_strncmp (curarg->name, args[i],
- grub_strlen (curarg->name)) == 0
- && ((curarg->type == GRUB_PARTTOOL_ARG_BOOL
- && (args[i][grub_strlen (curarg->name)] == '+'
- || args[i][grub_strlen (curarg->name)] == '-'
- || args[i][grub_strlen (curarg->name)] == 0))
- || (curarg->type == GRUB_PARTTOOL_ARG_VAL
- && args[i][grub_strlen (curarg->name)] == '=')))
- break;
- if (curarg->name)
- break;
- }
- if (! cur)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "unrecognised argument %s",
- args[i]);
- ptool = cur;
- pargs = (struct grub_parttool_args *)
- grub_zalloc (ptool->nargs * sizeof (struct grub_parttool_args));
- for (j = i; j < argc; j++)
- if (! parsed[j])
- {
- for (curarg = ptool->args; curarg->name; curarg++)
- if (grub_strncmp (curarg->name, args[i],
- grub_strlen (curarg->name)) == 0
- && ((curarg->type == GRUB_PARTTOOL_ARG_BOOL
- && (args[j][grub_strlen (curarg->name)] == '+'
- || args[j][grub_strlen (curarg->name)] == '-'
- || args[j][grub_strlen (curarg->name)] == 0))
- || (curarg->type == GRUB_PARTTOOL_ARG_VAL
- && args[j][grub_strlen (curarg->name)] == '=')))
- {
- parsed[j] = 1;
- pargs[curarg - ptool->args].set = 1;
- switch (curarg->type)
- {
- case GRUB_PARTTOOL_ARG_BOOL:
- pargs[curarg - ptool->args].bool
- = (args[j][grub_strlen (curarg->name)] != '-');
- break;
- case GRUB_PARTTOOL_ARG_VAL:
- pargs[curarg - ptool->args].str
- = (args[j] + grub_strlen (curarg->name) + 1);
- break;
- case GRUB_PARTTOOL_ARG_END:
- break;
- }
- }
- }
- err = ptool->func (dev, pargs);
- grub_free (pargs);
- if (err)
- break;
- }
- grub_free (parsed);
- grub_device_close (dev);
- return err;
- }
- static grub_command_t cmd;
- GRUB_MOD_INIT(parttool)
- {
- mymod = mod;
- cmd = grub_register_command ("parttool", grub_cmd_parttool,
- N_("PARTITION COMMANDS"),
- helpmsg);
- }
- GRUB_MOD_FINI(parttool)
- {
- grub_unregister_command (cmd);
- }
|