Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dadigang
Ventoy
Commits
c0901977
Commit
c0901977
authored
Jun 17, 2022
by
longpanda
Browse files
Fix build error
parent
3ac17aa8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
36 deletions
+44
-36
GRUB2/MOD_SRC/grub-2.04/grub-core/ventoy/ventoy_cmd.c
GRUB2/MOD_SRC/grub-2.04/grub-core/ventoy/ventoy_cmd.c
+44
-36
No files found.
GRUB2/MOD_SRC/grub-2.04/grub-core/ventoy/ventoy_cmd.c
View file @
c0901977
...
@@ -3367,37 +3367,32 @@ end:
...
@@ -3367,37 +3367,32 @@ end:
VENTOY_CMD_RETURN
(
GRUB_ERR_NONE
);
VENTOY_CMD_RETURN
(
GRUB_ERR_NONE
);
}
}
static int ventoy_var_expand(int *flag, const char *var, char *
value
, int len)
static
int
ventoy_var_expand
(
int
*
flag
,
const
char
*
var
,
char
*
expand
,
int
len
)
{
{
int
i
=
0
;
int
i
=
0
;
int
n
=
0
;
int
n
=
0
;
char
c
;
char
c
;
const
char
*
c
=
var
;
grub_uint8_t
bytes
[
32
];
grub_uint8_t
bytes
[
32
];
if (grub_strncmp(var, "VT_RAND_", 8) == 0)
expand
[
0
]
=
0
;
while
(
*
c
)
{
{
grub_crypto_get_random(bytes, sizeof(bytes));
if
(
*
c
==
'_'
||
(
*
c
>=
'0'
&&
*
c
<=
'9'
)
||
(
*
c
>=
'A'
&&
*
c
<=
'Z'
))
if (grub_strcmp(var + 8, "9") == 0)
{
n = 1;
}
else if (grub_strcmp(var + 8, "99") == 0)
{
{
n = 2;
c
++
;
}
}
else if (grub_strcmp(var + 8, "999") == 0)
else
{
n = 3;
}
else if (grub_strcmp(var + 8, "9999") == 0)
{
{
n = 4;
debug
(
"Invalid variable letter <%c>
\n
"
,
*
c
);
goto
end
;
}
}
}
for (i = 0; i < n; i++)
if
(
grub_strncmp
(
var
,
"VT_RAND_9"
,
9
)
==
0
)
{
{
value[i] = '0' + (bytes[i] % 10);
}
}
}
else
else
{
{
...
@@ -3415,27 +3410,32 @@ static int ventoy_var_expand(int *flag, const char *var, char *value, int len)
...
@@ -3415,27 +3410,32 @@ static int ventoy_var_expand(int *flag, const char *var, char *value, int len)
c
=
grub_getkey
();
c
=
grub_getkey
();
if
((
c
==
'\n'
)
||
(
c
==
'\r'
))
if
((
c
==
'\n'
)
||
(
c
==
'\r'
))
{
{
grub_printf("\n");
if
(
i
>
0
)
grub_refresh();
{
break;
grub_printf
(
"
\n
"
);
grub_refresh
();
break
;
}
}
}
else
if
(
grub_isprint
(
c
))
if (grub_isprint(c))
{
{
grub_printf("%c", c);
if
(
i
+
1
<
(
len
-
1
))
grub_refresh();
{
value[i++] = c;
grub_printf
(
"%c"
,
c
);
value[i] = 0;
grub_refresh
();
expand
[
i
++
]
=
c
;
expand
[
i
]
=
0
;
}
}
}
else
if
(
c
==
'\b'
)
else
if
(
c
==
'\b'
)
{
{
if
(
i
>
0
)
if
(
i
>
0
)
{
{
value
[i - 1] = ' ';
expand
[
i
-
1
]
=
' '
;
grub_printf("\r<%s>: %s", var,
value
);
grub_printf
(
"
\r
<%s>: %s"
,
var
,
expand
);
value
[i - 1] = 0;
expand
[
i
-
1
]
=
0
;
grub_printf("\r<%s>: %s", var,
value
);
grub_printf
(
"
\r
<%s>: %s"
,
var
,
expand
);
grub_refresh
();
grub_refresh
();
i
--
;
i
--
;
...
@@ -3444,9 +3444,10 @@ static int ventoy_var_expand(int *flag, const char *var, char *value, int len)
...
@@ -3444,9 +3444,10 @@ static int ventoy_var_expand(int *flag, const char *var, char *value, int len)
}
}
}
}
if (value[0] == 0)
end:
if
(
expand
[
0
]
==
0
)
{
{
grub_snprintf(
value
, len, "
%s
", var);
grub_snprintf
(
expand
,
len
,
"
$<%s>$
"
,
var
);
}
}
return
0
;
return
0
;
...
@@ -3466,6 +3467,12 @@ static int ventoy_auto_install_var_expand(install_template *node)
...
@@ -3466,6 +3467,12 @@ static int ventoy_auto_install_var_expand(install_template *node)
char
value
[
512
];
char
value
[
512
];
code
=
(
grub_uint8_t
*
)
node
->
filebuf
;
code
=
(
grub_uint8_t
*
)
node
->
filebuf
;
if
(
node
->
filelen
>=
VTOY_SIZE_1MB
)
{
debug
(
"auto install script too long %d
\n
"
,
node
->
filelen
);
return
0
;
}
if
((
code
[
0
]
==
0xff
&&
code
[
1
]
==
0xfe
)
||
(
code
[
0
]
==
0xfe
&&
code
[
1
]
==
0xff
))
if
((
code
[
0
]
==
0xff
&&
code
[
1
]
==
0xfe
)
||
(
code
[
0
]
==
0xfe
&&
code
[
1
]
==
0xff
))
{
{
...
@@ -3615,12 +3622,13 @@ static grub_err_t ventoy_cmd_sel_auto_install(grub_extcmd_context_t ctxt, int ar
...
@@ -3615,12 +3622,13 @@ static grub_err_t ventoy_cmd_sel_auto_install(grub_extcmd_context_t ctxt, int ar
node
->
templatepath
[
node
->
cursel
].
path
);
node
->
templatepath
[
node
->
cursel
].
path
);
if
(
file
)
if
(
file
)
{
{
node->filebuf = grub_malloc(file->size +
1
);
node
->
filebuf
=
grub_malloc
(
file
->
size
+
8
);
if
(
node
->
filebuf
)
if
(
node
->
filebuf
)
{
{
grub_file_read
(
file
,
node
->
filebuf
,
file
->
size
);
grub_file_read
(
file
,
node
->
filebuf
,
file
->
size
);
grub_file_close
(
file
);
grub_file_close
(
file
);
node->filebuf[file->size] = 0;
grub_memset
(
node
->
filebuf
+
file
->
size
,
0
,
8
);
node
->
filelen
=
(
int
)
file
->
size
;
node
->
filelen
=
(
int
)
file
->
size
;
ventoy_auto_install_var_expand
(
node
);
ventoy_auto_install_var_expand
(
node
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment