2005-11-06 22:19:59 +00:00
|
|
|
|
/* script.h */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* Copyright (C) 2005,2007 Free Software Foundation, Inc.
|
2005-11-06 22:19:59 +00:00
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2005-11-06 22:19:59 +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
|
2005-11-06 22:19:59 +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,
|
2005-11-06 22:19:59 +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/>.
|
2005-11-06 22:19:59 +00:00
|
|
|
|
*/
|
2006-01-17 09:50:47 +00:00
|
|
|
|
|
|
|
|
|
#ifndef GRUB_SCRIPT_HEADER
|
|
|
|
|
#define GRUB_SCRIPT_HEADER 1
|
|
|
|
|
|
2005-11-06 22:19:59 +00:00
|
|
|
|
#include <grub/types.h>
|
|
|
|
|
#include <grub/err.h>
|
2006-04-17 13:01:20 +00:00
|
|
|
|
#include <grub/parser.h>
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
struct grub_script_mem;
|
|
|
|
|
|
|
|
|
|
/* The generic header for each scripting command or structure. */
|
|
|
|
|
struct grub_script_cmd
|
|
|
|
|
{
|
|
|
|
|
/* This function is called to execute the command. */
|
|
|
|
|
grub_err_t (*exec) (struct grub_script_cmd *cmd);
|
|
|
|
|
|
|
|
|
|
/* The next command. This can be used by the parent to form a chain
|
|
|
|
|
of commands. */
|
|
|
|
|
struct grub_script_cmd *next;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct grub_script
|
|
|
|
|
{
|
|
|
|
|
struct grub_script_mem *mem;
|
|
|
|
|
struct grub_script_cmd *cmd;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
GRUB_SCRIPT_ARG_TYPE_STR,
|
|
|
|
|
GRUB_SCRIPT_ARG_TYPE_VAR
|
|
|
|
|
} grub_script_arg_type_t;
|
|
|
|
|
|
|
|
|
|
/* A part of an argument. */
|
|
|
|
|
struct grub_script_arg
|
|
|
|
|
{
|
|
|
|
|
grub_script_arg_type_t type;
|
|
|
|
|
|
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
|
|
/* Next argument part. */
|
|
|
|
|
struct grub_script_arg *next;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A complete argument. It consists of a list of one or more `struct
|
|
|
|
|
grub_script_arg's. */
|
|
|
|
|
struct grub_script_arglist
|
|
|
|
|
{
|
|
|
|
|
struct grub_script_arglist *next;
|
|
|
|
|
struct grub_script_arg *arg;
|
|
|
|
|
/* Only stored in the first link. */
|
|
|
|
|
int argcount;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A single command line. */
|
|
|
|
|
struct grub_script_cmdline
|
|
|
|
|
{
|
|
|
|
|
struct grub_script_cmd cmd;
|
|
|
|
|
|
|
|
|
|
/* The arguments for this command. */
|
|
|
|
|
struct grub_script_arglist *arglist;
|
|
|
|
|
|
|
|
|
|
/* The command name of this command. XXX: Perhaps an argument
|
|
|
|
|
should be used for this so we can use variables as command
|
|
|
|
|
name. */
|
|
|
|
|
char *cmdname;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A block of commands, this can be used to group commands. */
|
|
|
|
|
struct grub_script_cmdblock
|
|
|
|
|
{
|
|
|
|
|
struct grub_script_cmd cmd;
|
|
|
|
|
|
|
|
|
|
/* A chain of commands. */
|
|
|
|
|
struct grub_script_cmd *cmdlist;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* An if statement. */
|
|
|
|
|
struct grub_script_cmdif
|
|
|
|
|
{
|
|
|
|
|
struct grub_script_cmd cmd;
|
|
|
|
|
|
2006-05-28 21:58:35 +00:00
|
|
|
|
/* The command used to check if the 'if' is true or false. */
|
|
|
|
|
struct grub_script_cmd *exec_to_evaluate;
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
2006-05-28 21:58:35 +00:00
|
|
|
|
/* The code executed in case the result of 'if' was true. */
|
|
|
|
|
struct grub_script_cmd *exec_on_true;
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
2006-05-28 21:58:35 +00:00
|
|
|
|
/* The code executed in case the result of 'if' was false. */
|
|
|
|
|
struct grub_script_cmd *exec_on_false;
|
2005-11-06 22:19:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-01-17 09:50:47 +00:00
|
|
|
|
/* A menu entry generate statement. */
|
|
|
|
|
struct grub_script_cmd_menuentry
|
|
|
|
|
{
|
|
|
|
|
struct grub_script_cmd cmd;
|
|
|
|
|
|
|
|
|
|
/* The title of the menu entry. */
|
|
|
|
|
struct grub_script_arg *title;
|
|
|
|
|
|
|
|
|
|
/* The sourcecode the entry will be generated from. */
|
|
|
|
|
const char *sourcecode;
|
|
|
|
|
|
|
|
|
|
/* Options. XXX: Not used yet. */
|
|
|
|
|
int options;
|
|
|
|
|
};
|
|
|
|
|
|
2006-04-17 13:01:20 +00:00
|
|
|
|
/* State of the lexer as passed to the lexer. */
|
|
|
|
|
struct grub_lexer_param
|
|
|
|
|
{
|
|
|
|
|
/* Set to 0 when the lexer is done. */
|
|
|
|
|
int done;
|
|
|
|
|
|
|
|
|
|
/* State of the state machine. */
|
|
|
|
|
grub_parser_state_t state;
|
|
|
|
|
|
|
|
|
|
/* Function used by the lexer to get a new line when more input is
|
|
|
|
|
expected, but not available. */
|
|
|
|
|
grub_err_t (*getline) (char **);
|
|
|
|
|
|
|
|
|
|
/* A reference counter. If this is >0 it means that the parser
|
|
|
|
|
expects more tokens and `getline' should be called to fetch more.
|
|
|
|
|
Otherwise the lexer can stop processing if the current buffer is
|
|
|
|
|
depleted. */
|
|
|
|
|
int refs;
|
|
|
|
|
|
|
|
|
|
/* The character stream that has to be parsed. */
|
|
|
|
|
char *script;
|
|
|
|
|
char *newscript; /* XXX */
|
|
|
|
|
|
|
|
|
|
/* While walking through the databuffer, `record' the characters to
|
|
|
|
|
this other buffer. It can be used to edit the menu entry at a
|
|
|
|
|
later moment. */
|
|
|
|
|
|
|
|
|
|
/* If true, recording is enabled. */
|
|
|
|
|
int record;
|
|
|
|
|
|
|
|
|
|
/* Points to the recording. */
|
|
|
|
|
char *recording;
|
|
|
|
|
|
|
|
|
|
/* index in the RECORDING. */
|
|
|
|
|
int recordpos;
|
|
|
|
|
|
|
|
|
|
/* Size of RECORDING. */
|
|
|
|
|
int recordlen;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* State of the parser as passes to the parser. */
|
|
|
|
|
struct grub_parser_param
|
|
|
|
|
{
|
|
|
|
|
/* Keep track of the memory allocated for this specific
|
|
|
|
|
function. */
|
|
|
|
|
struct grub_script_mem *func_mem;
|
|
|
|
|
|
|
|
|
|
/* When set to 0, no errors have occured during parsing. */
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
/* The memory that was used while parsing and scanning. */
|
|
|
|
|
struct grub_script_mem *memused;
|
|
|
|
|
|
|
|
|
|
/* The result of the parser. */
|
|
|
|
|
struct grub_script_cmd *parsed;
|
|
|
|
|
|
|
|
|
|
struct grub_lexer_param *lexerstate;
|
|
|
|
|
};
|
|
|
|
|
|
2005-11-06 22:19:59 +00:00
|
|
|
|
struct grub_script_arglist *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_create_arglist (struct grub_parser_param *state);
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
struct grub_script_arglist *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_add_arglist (struct grub_parser_param *state,
|
|
|
|
|
struct grub_script_arglist *list,
|
2005-11-06 22:19:59 +00:00
|
|
|
|
struct grub_script_arg *arg);
|
|
|
|
|
struct grub_script_cmd *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_create_cmdline (struct grub_parser_param *state,
|
|
|
|
|
char *cmdname,
|
2005-11-06 22:19:59 +00:00
|
|
|
|
struct grub_script_arglist *arglist);
|
|
|
|
|
struct grub_script_cmd *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_create_cmdblock (struct grub_parser_param *state);
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
struct grub_script_cmd *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_create_cmdif (struct grub_parser_param *state,
|
2006-05-28 21:58:35 +00:00
|
|
|
|
struct grub_script_cmd *exec_to_evaluate,
|
|
|
|
|
struct grub_script_cmd *exec_on_true,
|
|
|
|
|
struct grub_script_cmd *exec_on_false);
|
2006-01-17 09:50:47 +00:00
|
|
|
|
|
|
|
|
|
struct grub_script_cmd *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_create_cmdmenu (struct grub_parser_param *state,
|
|
|
|
|
struct grub_script_arg *title,
|
2006-01-17 09:50:47 +00:00
|
|
|
|
char *sourcecode,
|
|
|
|
|
int options);
|
|
|
|
|
|
2005-11-06 22:19:59 +00:00
|
|
|
|
struct grub_script_cmd *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_add_cmd (struct grub_parser_param *state,
|
|
|
|
|
struct grub_script_cmdblock *cmdblock,
|
2005-11-06 22:19:59 +00:00
|
|
|
|
struct grub_script_cmd *cmd);
|
|
|
|
|
struct grub_script_arg *
|
2006-04-17 13:01:20 +00:00
|
|
|
|
grub_script_arg_add (struct grub_parser_param *state,
|
|
|
|
|
struct grub_script_arg *arg,
|
2005-11-06 22:19:59 +00:00
|
|
|
|
grub_script_arg_type_t type, char *str);
|
|
|
|
|
|
|
|
|
|
struct grub_script *grub_script_parse (char *script,
|
|
|
|
|
grub_err_t (*getline) (char **));
|
|
|
|
|
void grub_script_free (struct grub_script *script);
|
|
|
|
|
struct grub_script *grub_script_create (struct grub_script_cmd *cmd,
|
|
|
|
|
struct grub_script_mem *mem);
|
|
|
|
|
|
2006-04-17 13:01:20 +00:00
|
|
|
|
struct grub_lexer_param *grub_script_lexer_init (char *s,
|
|
|
|
|
grub_err_t (*getline) (char **));
|
|
|
|
|
void grub_script_lexer_ref (struct grub_lexer_param *);
|
|
|
|
|
void grub_script_lexer_deref (struct grub_lexer_param *);
|
|
|
|
|
void grub_script_lexer_record_start (struct grub_lexer_param *);
|
|
|
|
|
char *grub_script_lexer_record_stop (struct grub_lexer_param *);
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
/* Functions to track allocated memory. */
|
2006-04-17 13:01:20 +00:00
|
|
|
|
struct grub_script_mem *grub_script_mem_record (struct grub_parser_param *state);
|
|
|
|
|
struct grub_script_mem *grub_script_mem_record_stop (struct grub_parser_param *state,
|
|
|
|
|
struct grub_script_mem *restore);
|
|
|
|
|
void *grub_script_malloc (struct grub_parser_param *state, grub_size_t size);
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
/* Functions used by bison. */
|
2008-05-30 03:26:56 +00:00
|
|
|
|
union YYSTYPE;
|
|
|
|
|
int grub_script_yylex (union YYSTYPE *, struct grub_parser_param *);
|
2006-04-17 13:01:20 +00:00
|
|
|
|
int grub_script_yyparse (struct grub_parser_param *);
|
|
|
|
|
void grub_script_yyerror (struct grub_parser_param *, char const *);
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
/* Commands to execute, don't use these directly. */
|
|
|
|
|
grub_err_t grub_script_execute_cmdline (struct grub_script_cmd *cmd);
|
|
|
|
|
grub_err_t grub_script_execute_cmdblock (struct grub_script_cmd *cmd);
|
|
|
|
|
grub_err_t grub_script_execute_cmdif (struct grub_script_cmd *cmd);
|
2006-01-17 09:50:47 +00:00
|
|
|
|
grub_err_t grub_script_execute_menuentry (struct grub_script_cmd *cmd);
|
2005-11-06 22:19:59 +00:00
|
|
|
|
|
|
|
|
|
/* Execute any GRUB pre-parsed command or script. */
|
|
|
|
|
grub_err_t grub_script_execute (struct grub_script *script);
|
|
|
|
|
|
|
|
|
|
/* This variable points to the parsed command. This is used to
|
|
|
|
|
communicate with the bison code. */
|
|
|
|
|
extern struct grub_script_cmd *grub_script_parsed;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The function description. */
|
|
|
|
|
struct grub_script_function
|
|
|
|
|
{
|
|
|
|
|
/* The name. */
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
/* The script function. */
|
|
|
|
|
struct grub_script *func;
|
|
|
|
|
|
|
|
|
|
/* The flags. */
|
|
|
|
|
unsigned flags;
|
|
|
|
|
|
|
|
|
|
/* The next element. */
|
|
|
|
|
struct grub_script_function *next;
|
|
|
|
|
|
|
|
|
|
int references;
|
|
|
|
|
};
|
|
|
|
|
typedef struct grub_script_function *grub_script_function_t;
|
|
|
|
|
|
|
|
|
|
grub_script_function_t grub_script_function_create (char *functionname,
|
|
|
|
|
struct grub_script *cmd);
|
|
|
|
|
void grub_script_function_remove (const char *name);
|
|
|
|
|
grub_script_function_t grub_script_function_find (char *functionname);
|
|
|
|
|
int grub_script_function_iterate (int (*iterate) (grub_script_function_t));
|
|
|
|
|
int grub_script_function_call (grub_script_function_t func,
|
|
|
|
|
int argc, char **args);
|
2006-01-17 09:50:47 +00:00
|
|
|
|
|
|
|
|
|
#endif /* ! GRUB_SCRIPT_HEADER */
|