summaryrefslogtreecommitdiffstats
path: root/discover
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2013-09-16 10:40:21 +0800
committerJeremy Kerr <jk@ozlabs.org>2013-09-24 13:14:59 +0800
commite492b596187d283cfbd65a098fe1b2d0dafa311e (patch)
tree579217be13139eda894fb3d53bbd5be27fe9f6a9 /discover
parent5c6c8ea8ca66fe70563143cb226852a10b1a98fb (diff)
downloadtalos-petitboot-e492b596187d283cfbd65a098fe1b2d0dafa311e.tar.gz
talos-petitboot-e492b596187d283cfbd65a098fe1b2d0dafa311e.zip
discover/grub2: Implement multiple-arv variable splitting
If we expand a variable containing word-delimiter chars, we need to create new argv items. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'discover')
-rw-r--r--discover/grub2/grub2.h8
-rw-r--r--discover/grub2/parser-api.c5
-rw-r--r--discover/grub2/script.c105
3 files changed, 101 insertions, 17 deletions
diff --git a/discover/grub2/grub2.h b/discover/grub2/grub2.h
index 60a5734..9da5cee 100644
--- a/discover/grub2/grub2.h
+++ b/discover/grub2/grub2.h
@@ -12,12 +12,10 @@ struct grub2_word {
GRUB2_WORD_VAR,
} type;
union {
- char *text;
- struct {
- const char *name;
- bool split;
- } var;
+ char *text;
+ const char *name;
};
+ bool split;
struct grub2_word *next;
struct grub2_word *last;
struct list_item argv_list;
diff --git a/discover/grub2/parser-api.c b/discover/grub2/parser-api.c
index a316673..aa59978 100644
--- a/discover/grub2/parser-api.c
+++ b/discover/grub2/parser-api.c
@@ -73,6 +73,7 @@ struct grub2_word *create_word_text(struct grub2_parser *parser,
{
struct grub2_word *word = talloc(parser, struct grub2_word);
word->type = GRUB2_WORD_TEXT;
+ word->split = false;
word->text = talloc_strdup(word, text);
word->next = NULL;
word->last = word;
@@ -84,8 +85,8 @@ struct grub2_word *create_word_var(struct grub2_parser *parser,
{
struct grub2_word *word = talloc(parser, struct grub2_word);
word->type = GRUB2_WORD_VAR;
- word->var.name = talloc_strdup(word, name);
- word->var.split = split;
+ word->name = talloc_strdup(word, name);
+ word->split = split;
word->next = NULL;
word->last = word;
return word;
diff --git a/discover/grub2/script.c b/discover/grub2/script.c
index fce4f0a..fe65e2d 100644
--- a/discover/grub2/script.c
+++ b/discover/grub2/script.c
@@ -55,16 +55,87 @@ static bool expand_var(struct grub2_script *script, struct grub2_word *word)
{
const char *val;
- val = script_env_get(script, word->var.name);
+ val = script_env_get(script, word->name);
if (!val)
val = "";
- word->type = GRUB2_WORD_TEXT;
word->text = talloc_strdup(script, val);
return true;
}
+static bool is_delim(char c)
+{
+ return c == ' ' || c == '\t';
+}
+
+/* For non-double-quoted variable expansions, we may need to split the
+ * variable's value into multiple argv items.
+ *
+ * This function sets the word->text to the initial set of non-delimiter chars
+ * in the expanded var value. We then skip any delimiter chars, and (if
+ * required), create the new argv item with the remaining text, and
+ * add it to the argv list, after top_word.
+ */
+static void process_split(struct grub2_script *script,
+ struct grub2_word *top_word,
+ struct grub2_word *word)
+{
+ int i, len, delim_start = -1, delim_end = -1;
+ struct grub2_word *new_word;
+ char *remainder;
+
+ len = strlen(word->text);
+
+ /* Scan our string for the start of a delim (delim_start), and the
+ * start of any new text (delim_end). */
+ for (i = 0; i < len; i++) {
+ if (is_delim(word->text[i])) {
+ if (delim_start == -1)
+ delim_start = i;
+ } else if (delim_start != -1) {
+ delim_end = i;
+ break;
+ }
+ }
+
+ /* No delim? nothing to do. The process_expansions loop will
+ * append this word's text to the top word, if necessary
+ */
+ if (delim_start == -1)
+ return;
+
+ /* Set this word's text value to the text before the delimiter.
+ * this will get appended to the top word
+ */
+ word->text[delim_start] = '\0';
+
+ /* No trailing text? If there are no following word tokens, we're done.
+ * Otherwise, we need to start a new argv item with those tokens */
+ if (delim_end == -1) {
+ if (!word->next)
+ return;
+ remainder = "";
+ } else {
+ remainder = word->text + delim_end;
+ }
+
+ new_word = talloc(script, struct grub2_word);
+ new_word->type = GRUB2_WORD_TEXT;
+ /* if there's no trailing text, we know we don't need to re-split */
+ new_word->split = delim_end != -1;
+ new_word->next = word->next;
+ new_word->last = NULL;
+ new_word->text = talloc_strdup(new_word, remainder);
+
+ /* stitch it into the argv list before this word */
+ list_insert_after(&top_word->argv_list,
+ &new_word->argv_list);
+
+ /* terminate this word */
+ word->next = NULL;
+}
+
/* iterate through the words in an argv_list, looking for GRUB2_WORD_VAR
* expansions.
*
@@ -82,22 +153,36 @@ static void process_expansions(struct grub2_script *script,
list_for_each_entry(&argv->words, top_word, argv_list) {
argv->argc++;
- /* expand vars and squash the list of words into the top struct.
- * todo: splitting
- */
+ /* expand vars and squash the list of words into the head
+ * of the argv word list */
for (word = top_word; word; word = word->next) {
- if (word->type == GRUB2_WORD_VAR)
+
+ /* if it's a variable, perform the substitution */
+ if (word->type == GRUB2_WORD_VAR) {
expand_var(script, word);
+ word->type = GRUB2_WORD_TEXT;
+ }
+
+ /* split; this will potentially insert argv
+ * entries after top_word. */
+ if (word->split)
+ process_split(script, top_word, word);
+
+ /* accumulate word text into the top word, so
+ * we end up with a shallow tree of argv data */
+ /* todo: don't do this in process_split */
+ if (word != top_word) {
+ top_word->text = talloc_asprintf_append(
+ top_word->text,
+ "%s", word->text);
+ }
- if (word == top_word)
- continue;
- top_word->text = talloc_asprintf_append(top_word->text,
- "%s", word->text);
}
top_word->next = NULL;
}
+ /* convert the list to an argv array, to pass to the function */
argv->argv = talloc_array(script, char *, argv->argc);
i = 0;
OpenPOWER on IntegriCloud