Skip to content

Commit

Permalink
[settings] Eliminate call to fetchf_named_setting() in expand_settings()
Browse files Browse the repository at this point in the history
Use parse_setting_name() and fetchf_setting_copy() in
expand_settings(), to eliminate the call to fetchf_named_setting().

This change also eliminates the potentially large stack-allocated
buffer in expand_settings().

Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Jul 19, 2013
1 parent a5be7c4 commit 129a706
Showing 1 changed file with 25 additions and 22 deletions.
47 changes: 25 additions & 22 deletions src/core/settings.c
Expand Up @@ -2014,15 +2014,18 @@ struct setting_type setting_type_busdevfn __setting_type = {
* eventually free() it.
*/
char * expand_settings ( const char *string ) {
struct settings *settings;
struct setting setting;
char *expstr;
char *start;
char *end;
char *head;
char *name;
char *tail;
int setting_len;
int new_len;
char *value;
char *tmp;
int new_len;
int rc;

/* Obtain temporary modifiable copy of string */
expstr = strdup ( string );
Expand Down Expand Up @@ -2052,27 +2055,27 @@ char * expand_settings ( const char *string ) {
*end = '\0';
tail = ( end + 1 );

/* Determine setting length */
setting_len = fetchf_named_setting ( name, NULL, 0, NULL, 0 );
if ( setting_len < 0 )
setting_len = 0; /* Treat error as empty setting */

/* Read setting into temporary buffer */
{
char setting_buf[ setting_len + 1 ];

setting_buf[0] = '\0';
fetchf_named_setting ( name, NULL, 0, setting_buf,
sizeof ( setting_buf ) );

/* Construct expanded string and discard old string */
tmp = expstr;
new_len = asprintf ( &expstr, "%s%s%s",
head, setting_buf, tail );
free ( tmp );
if ( new_len < 0 )
return NULL;
/* Expand setting */
if ( ( rc = parse_setting_name ( name, find_child_settings,
&settings,
&setting ) ) != 0 ) {
/* Treat invalid setting names as empty */
value = NULL;
} else {
/* Fetch and format setting value. Ignore
* errors; treat non-existent settings as empty.
*/
fetchf_setting_copy ( settings, &setting, &value );
}

/* Construct expanded string and discard old string */
tmp = expstr;
new_len = asprintf ( &expstr, "%s%s%s",
head, ( value ? value : "" ), tail );
free ( value );
free ( tmp );
if ( new_len < 0 )
return NULL;
}

return expstr;
Expand Down

0 comments on commit 129a706

Please sign in to comment.