david/ipxe
Archived
1
0

[Settings] Add settings hierarchy

Add the notion of the settings hierarchy, complete with
register/unregister routines.

Rename set->store and get->fetch to avoid naming conflicts with get/put
as used in reference counting.
This commit is contained in:
Michael Brown 2008-03-20 21:01:32 +00:00
parent a48b4d9948
commit 260b93bb72
5 changed files with 320 additions and 209 deletions

View File

@ -47,8 +47,6 @@ static struct named_setting named_settings[0]
static struct named_setting named_settings_end[0] static struct named_setting named_settings_end[0]
__table_end ( struct named_setting, named_settings ); __table_end ( struct named_setting, named_settings );
struct setting_type setting_type_hex __setting_type;
/** /**
* Obtain printable version of a settings tag number * Obtain printable version of a settings tag number
* *
@ -75,45 +73,117 @@ static inline char * setting_tag_name ( unsigned int tag ) {
****************************************************************************** ******************************************************************************
*/ */
/** List of all registered settings */
static struct list_head all_settings = {
&interactive_settings.list, &interactive_settings.list
};
// Dummy routine just for testing // Dummy routine just for testing
static int dummy_set ( struct settings *settings, unsigned int tag, int simple_settings_store ( struct settings *settings, unsigned int tag,
const void *data, size_t len ) { const void *data, size_t len ) {
DBGC ( settings, "Settings %p: set %s to:\n", DBGC ( settings, "Settings %p: store %s to:\n",
settings, setting_tag_name ( tag ) ); settings, setting_tag_name ( tag ) );
DBGC_HD ( settings, data, len ); DBGC_HD ( settings, data, len );
return 0; return 0;
} }
// Dummy routine just for testing // Dummy routine just for testing
static int dummy_get ( struct settings *settings, unsigned int tag, int simple_settings_fetch ( struct settings *settings, unsigned int tag,
void *data, size_t len ) { void *data, size_t len ) {
unsigned int i; unsigned int i;
DBGC ( settings, "Settings %p: get %s\n", DBGC ( settings, "Settings %p: fetch %s\n",
settings, setting_tag_name ( tag ) ); settings, setting_tag_name ( tag ) );
for ( i = 0 ; i < len ; i++ ) for ( i = 0 ; i < len ; i++ )
*( ( ( uint8_t * ) data ) + i ) = i; *( ( ( uint8_t * ) data ) + i ) = i;
return ( len ? len : 8 ); return ( len ? len : 8 );
} }
struct settings_operations dummy_settings_operations = { // Dummy routine just for testing
.set = dummy_set, static void apply_settings ( void ) {
.get = dummy_get, }
/** Simple settings operations */
struct settings_operations simple_settings_operations = {
.store = simple_settings_store,
.fetch = simple_settings_fetch,
}; };
/** Interactively-edited settings */ /** Root settings block */
struct settings interactive_settings = { struct settings settings_root = {
.refcnt = NULL, .refcnt = NULL,
.name = "", .name = "",
.list = { &all_settings, &all_settings }, .siblings = LIST_HEAD_INIT ( settings_root.siblings ),
.op = &dummy_settings_operations, .children = LIST_HEAD_INIT ( settings_root.children ),
.op = &simple_settings_operations,
}; };
/**
* Register settings block
*
* @v settings Settings block
* @v parent Parent settings block, or NULL
* @ret rc Return status code
*/
int register_settings ( struct settings *settings, struct settings *parent ) {
/* NULL parent => add to settings root */
assert ( settings != NULL );
if ( parent == NULL )
parent = &settings_root;
/* Add to list of settings */
ref_get ( settings->refcnt );
ref_get ( parent->refcnt );
settings->parent = parent;
list_add_tail ( &settings->siblings, &parent->children );
DBGC ( settings, "Settings %p registered\n", settings );
/* Apply potentially-updated settings */
apply_settings();
return 0;
}
/**
* Unregister settings block
*
* @v settings Settings block
*/
void unregister_settings ( struct settings *settings ) {
/* Remove from list of settings */
ref_put ( settings->refcnt );
ref_put ( settings->parent->refcnt );
list_del ( &settings->siblings );
DBGC ( settings, "Settings %p unregistered\n", settings );
/* Apply potentially-updated settings */
apply_settings();
}
/**
* Find child named settings block
*
* @v parent Parent settings block
* @v name Name within this parent
* @ret settings Settings block, or NULL
*/
struct settings * find_child_settings ( struct settings *parent,
const char *name ) {
struct settings *settings;
size_t len;
/* Look for a child whose name matches the initial component */
list_for_each_entry ( settings, &parent->children, siblings ) {
len = strlen ( settings->name );
if ( strncmp ( name, settings->name, len ) != 0 )
continue;
if ( name[len] == 0 )
return settings;
if ( name[len] == '.' )
return find_child_settings ( settings,
( name + len + 1 ) );
}
return NULL;
}
/** /**
* Find named settings block * Find named settings block
* *
@ -121,13 +191,12 @@ struct settings interactive_settings = {
* @ret settings Settings block, or NULL * @ret settings Settings block, or NULL
*/ */
struct settings * find_settings ( const char *name ) { struct settings * find_settings ( const char *name ) {
struct settings *settings;
list_for_each_entry ( settings, &all_settings, list ) { /* If name is empty, use the root */
if ( strcasecmp ( name, settings->name ) == 0 ) if ( ! *name )
return settings; return &settings_root;
}
return NULL; return find_child_settings ( &settings_root, name );
} }
/****************************************************************************** /******************************************************************************
@ -138,7 +207,7 @@ struct settings * find_settings ( const char *name ) {
*/ */
/** /**
* Get value of setting * Fetch value of setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -149,24 +218,30 @@ struct settings * find_settings ( const char *name ) {
* The actual length of the setting will be returned even if * The actual length of the setting will be returned even if
* the buffer was too small. * the buffer was too small.
*/ */
int get_setting ( struct settings *settings, unsigned int tag, int fetch_setting ( struct settings *settings, unsigned int tag,
void *data, size_t len ) { void *data, size_t len ) {
struct settings *child;
int ret; int ret;
if ( settings ) { /* NULL settings implies starting at the global settings root */
return settings->op->get ( settings, tag, data, len ); if ( ! settings )
} else { settings = &settings_root;
list_for_each_entry ( settings, &all_settings, list ) {
if ( ( ret = settings->op->get ( settings, tag, /* Try this block first */
data, len ) ) >= 0 ) if ( ( ret = settings->op->fetch ( settings, tag, data, len ) ) >= 0)
return ret;
/* Recurse into each child block in turn */
list_for_each_entry ( child, &settings->children, siblings ) {
if ( ( ret = fetch_setting ( settings, tag, data, len ) ) >= 0)
return ret; return ret;
} }
return -ENOENT; return -ENOENT;
} }
}
/** /**
* Get length of setting * Fetch length of setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -175,12 +250,12 @@ int get_setting ( struct settings *settings, unsigned int tag,
* This function can also be used as an existence check for the * This function can also be used as an existence check for the
* setting. * setting.
*/ */
int get_setting_len ( struct settings *settings, unsigned int tag ) { int fetch_setting_len ( struct settings *settings, unsigned int tag ) {
return get_setting ( settings, tag, NULL, 0 ); return fetch_setting ( settings, tag, NULL, 0 );
} }
/** /**
* Get value of string setting * Fetch value of string setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -192,25 +267,25 @@ int get_setting_len ( struct settings *settings, unsigned int tag ) {
* The returned length will be the length of the underlying setting * The returned length will be the length of the underlying setting
* data. * data.
*/ */
int get_string_setting ( struct settings *settings, unsigned int tag, int fetch_string_setting ( struct settings *settings, unsigned int tag,
char *data, size_t len ) { char *data, size_t len ) {
memset ( data, 0, len ); memset ( data, 0, len );
return get_setting ( settings, tag, data, ( len - 1 ) ); return fetch_setting ( settings, tag, data, ( len - 1 ) );
} }
/** /**
* Get value of IPv4 address setting * Fetch value of IPv4 address setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
* @v inp IPv4 address to fill in * @v inp IPv4 address to fill in
* @ret len Length of setting, or negative error * @ret len Length of setting, or negative error
*/ */
int get_ipv4_setting ( struct settings *settings, unsigned int tag, int fetch_ipv4_setting ( struct settings *settings, unsigned int tag,
struct in_addr *inp ) { struct in_addr *inp ) {
int len; int len;
len = get_setting ( settings, tag, inp, sizeof ( *inp ) ); len = fetch_setting ( settings, tag, inp, sizeof ( *inp ) );
if ( len < 0 ) if ( len < 0 )
return len; return len;
if ( len != sizeof ( *inp ) ) if ( len != sizeof ( *inp ) )
@ -219,14 +294,14 @@ int get_ipv4_setting ( struct settings *settings, unsigned int tag,
} }
/** /**
* Get value of signed integer setting * Fetch value of signed integer setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
* @v value Integer value to fill in * @v value Integer value to fill in
* @ret len Length of setting, or negative error * @ret len Length of setting, or negative error
*/ */
int get_int_setting ( struct settings *settings, unsigned int tag, int fetch_int_setting ( struct settings *settings, unsigned int tag,
long *value ) { long *value ) {
union { union {
long value; long value;
@ -237,7 +312,7 @@ int get_int_setting ( struct settings *settings, unsigned int tag,
int i; int i;
buf.value = 0; buf.value = 0;
len = get_setting ( settings, tag, &buf, sizeof ( buf ) ); len = fetch_setting ( settings, tag, &buf, sizeof ( buf ) );
if ( len < 0 ) if ( len < 0 )
return len; return len;
if ( len > ( int ) sizeof ( buf ) ) if ( len > ( int ) sizeof ( buf ) )
@ -252,19 +327,19 @@ int get_int_setting ( struct settings *settings, unsigned int tag,
} }
/** /**
* Get value of unsigned integer setting * Fetch value of unsigned integer setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
* @v value Integer value to fill in * @v value Integer value to fill in
* @ret len Length of setting, or negative error * @ret len Length of setting, or negative error
*/ */
int get_uint_setting ( struct settings *settings, unsigned int tag, int fetch_uint_setting ( struct settings *settings, unsigned int tag,
unsigned long *value ) { unsigned long *value ) {
long svalue; long svalue;
int len; int len;
len = get_int_setting ( settings, tag, &svalue ); len = fetch_int_setting ( settings, tag, &svalue );
if ( len < 0 ) if ( len < 0 )
return len; return len;
@ -281,7 +356,7 @@ int get_uint_setting ( struct settings *settings, unsigned int tag,
*/ */
/** /**
* Set value of typed setting * Store value of typed setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -289,18 +364,18 @@ int get_uint_setting ( struct settings *settings, unsigned int tag,
* @v value Formatted setting data, or NULL * @v value Formatted setting data, or NULL
* @ret rc Return status code * @ret rc Return status code
*/ */
int set_typed_setting ( struct settings *settings, int store_typed_setting ( struct settings *settings,
unsigned int tag, struct setting_type *type, unsigned int tag, struct setting_type *type,
const char *value ) { const char *value ) {
/* NULL value implies deletion. Avoid imposing the burden of /* NULL value implies deletion. Avoid imposing the burden of
* checking for NULL values on each typed setting's setf() * checking for NULL values on each typed setting's storef()
* method. * method.
*/ */
if ( ! value ) if ( ! value )
return delete_setting ( settings, tag ); return delete_setting ( settings, tag );
return type->setf ( settings, tag, value ); return type->storef ( settings, tag, value );
} }
/** /**
@ -314,7 +389,7 @@ static struct named_setting * find_named_setting ( const char *name ) {
for ( setting = named_settings ; setting < named_settings_end ; for ( setting = named_settings ; setting < named_settings_end ;
setting++ ) { setting++ ) {
if ( strcasecmp ( name, setting->name ) == 0 ) if ( strcmp ( name, setting->name ) == 0 )
return setting; return setting;
} }
return NULL; return NULL;
@ -330,7 +405,7 @@ static struct setting_type * find_setting_type ( const char *name ) {
struct setting_type *type; struct setting_type *type;
for ( type = setting_types ; type < setting_types_end ; type++ ) { for ( type = setting_types ; type < setting_types_end ; type++ ) {
if ( strcasecmp ( name, type->name ) == 0 ) if ( strcmp ( name, type->name ) == 0 )
return type; return type;
} }
return NULL; return NULL;
@ -360,7 +435,7 @@ static int parse_setting_name ( const char *name, struct settings **settings,
char *tmp; char *tmp;
/* Set defaults */ /* Set defaults */
*settings = NULL; *settings = &settings_root;
*tag = 0; *tag = 0;
*type = &setting_type_hex; *type = &setting_type_hex;
@ -420,13 +495,13 @@ static int parse_setting_name ( const char *name, struct settings **settings,
} }
/** /**
* Parse and set value of named setting * Parse and store value of named setting
* *
* @v name Name of setting * @v name Name of setting
* @v value Formatted setting data, or NULL * @v value Formatted setting data, or NULL
* @ret rc Return status code * @ret rc Return status code
*/ */
int set_named_setting ( const char *name, const char *value ) { int store_named_setting ( const char *name, const char *value ) {
struct settings *settings; struct settings *settings;
unsigned int tag; unsigned int tag;
struct setting_type *type; struct setting_type *type;
@ -435,20 +510,18 @@ int set_named_setting ( const char *name, const char *value ) {
if ( ( rc = parse_setting_name ( name, &settings, &tag, if ( ( rc = parse_setting_name ( name, &settings, &tag,
&type ) ) != 0 ) &type ) ) != 0 )
return rc; return rc;
if ( settings == NULL ) return store_typed_setting ( settings, tag, type, value );
return -ENODEV;
return set_typed_setting ( settings, tag, type, value );
} }
/** /**
* Get and format value of named setting * Fetch and format value of named setting
* *
* @v name Name of setting * @v name Name of setting
* @v buf Buffer to contain formatted value * @v buf Buffer to contain formatted value
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
int get_named_setting ( const char *name, char *buf, size_t len ) { int fetch_named_setting ( const char *name, char *buf, size_t len ) {
struct settings *settings; struct settings *settings;
unsigned int tag; unsigned int tag;
struct setting_type *type; struct setting_type *type;
@ -457,7 +530,7 @@ int get_named_setting ( const char *name, char *buf, size_t len ) {
if ( ( rc = parse_setting_name ( name, &settings, &tag, if ( ( rc = parse_setting_name ( name, &settings, &tag,
&type ) ) != 0 ) &type ) ) != 0 )
return rc; return rc;
return get_typed_setting ( settings, tag, type, buf, len ); return fetch_typed_setting ( settings, tag, type, buf, len );
} }
/****************************************************************************** /******************************************************************************
@ -468,20 +541,20 @@ int get_named_setting ( const char *name, char *buf, size_t len ) {
*/ */
/** /**
* Parse and set value of string setting * Parse and store value of string setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
* @v value Formatted setting data * @v value Formatted setting data
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_string ( struct settings *settings, unsigned int tag, static int storef_string ( struct settings *settings, unsigned int tag,
const char *value ) { const char *value ) {
return set_setting ( settings, tag, value, strlen ( value ) ); return store_setting ( settings, tag, value, strlen ( value ) );
} }
/** /**
* Get and format value of string setting * Fetch and format value of string setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -489,37 +562,37 @@ static int setf_string ( struct settings *settings, unsigned int tag,
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
static int getf_string ( struct settings *settings, unsigned int tag, static int fetchf_string ( struct settings *settings, unsigned int tag,
char *buf, size_t len ) { char *buf, size_t len ) {
return get_string_setting ( settings, tag, buf, len ); return fetch_string_setting ( settings, tag, buf, len );
} }
/** A string setting type */ /** A string setting type */
struct setting_type setting_type_string __setting_type = { struct setting_type setting_type_string __setting_type = {
.name = "string", .name = "string",
.setf = setf_string, .storef = storef_string,
.getf = getf_string, .fetchf = fetchf_string,
}; };
/** /**
* Parse and set value of IPv4 address setting * Parse and store value of IPv4 address setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
* @v value Formatted setting data * @v value Formatted setting data
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_ipv4 ( struct settings *settings, unsigned int tag, static int storef_ipv4 ( struct settings *settings, unsigned int tag,
const char *value ) { const char *value ) {
struct in_addr ipv4; struct in_addr ipv4;
if ( inet_aton ( value, &ipv4 ) == 0 ) if ( inet_aton ( value, &ipv4 ) == 0 )
return -EINVAL; return -EINVAL;
return set_setting ( settings, tag, &ipv4, sizeof ( ipv4 ) ); return store_setting ( settings, tag, &ipv4, sizeof ( ipv4 ) );
} }
/** /**
* Get and format value of IPv4 address setting * Fetch and format value of IPv4 address setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -527,12 +600,12 @@ static int setf_ipv4 ( struct settings *settings, unsigned int tag,
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
static int getf_ipv4 ( struct settings *settings, unsigned int tag, static int fetchf_ipv4 ( struct settings *settings, unsigned int tag,
char *buf, size_t len ) { char *buf, size_t len ) {
struct in_addr ipv4; struct in_addr ipv4;
int rc; int rc;
if ( ( rc = get_ipv4_setting ( settings, tag, &ipv4 ) ) < 0 ) if ( ( rc = fetch_ipv4_setting ( settings, tag, &ipv4 ) ) < 0 )
return rc; return rc;
return snprintf ( buf, len, inet_ntoa ( ipv4 ) ); return snprintf ( buf, len, inet_ntoa ( ipv4 ) );
} }
@ -540,12 +613,12 @@ static int getf_ipv4 ( struct settings *settings, unsigned int tag,
/** An IPv4 address setting type */ /** An IPv4 address setting type */
struct setting_type setting_type_ipv4 __setting_type = { struct setting_type setting_type_ipv4 __setting_type = {
.name = "ipv4", .name = "ipv4",
.setf = setf_ipv4, .storef = storef_ipv4,
.getf = getf_ipv4, .fetchf = fetchf_ipv4,
}; };
/** /**
* Parse and set value of integer setting * Parse and store value of integer setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -553,7 +626,7 @@ struct setting_type setting_type_ipv4 __setting_type = {
* @v size Integer size, in bytes * @v size Integer size, in bytes
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_int ( struct settings *settings, unsigned int tag, static int storef_int ( struct settings *settings, unsigned int tag,
const char *value, unsigned int size ) { const char *value, unsigned int size ) {
union { union {
uint32_t num; uint32_t num;
@ -564,12 +637,12 @@ static int setf_int ( struct settings *settings, unsigned int tag,
u.num = htonl ( strtoul ( value, &endp, 0 ) ); u.num = htonl ( strtoul ( value, &endp, 0 ) );
if ( *endp ) if ( *endp )
return -EINVAL; return -EINVAL;
return set_setting ( settings, tag, return store_setting ( settings, tag,
&u.bytes[ sizeof ( u ) - size ], size ); &u.bytes[ sizeof ( u ) - size ], size );
} }
/** /**
* Parse and set value of 8-bit integer setting * Parse and store value of 8-bit integer setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -577,13 +650,13 @@ static int setf_int ( struct settings *settings, unsigned int tag,
* @v size Integer size, in bytes * @v size Integer size, in bytes
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_int8 ( struct settings *settings, unsigned int tag, static int storef_int8 ( struct settings *settings, unsigned int tag,
const char *value ) { const char *value ) {
return setf_int ( settings, tag, value, 1 ); return storef_int ( settings, tag, value, 1 );
} }
/** /**
* Parse and set value of 16-bit integer setting * Parse and store value of 16-bit integer setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -591,13 +664,13 @@ static int setf_int8 ( struct settings *settings, unsigned int tag,
* @v size Integer size, in bytes * @v size Integer size, in bytes
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_int16 ( struct settings *settings, unsigned int tag, static int storef_int16 ( struct settings *settings, unsigned int tag,
const char *value ) { const char *value ) {
return setf_int ( settings, tag, value, 2 ); return storef_int ( settings, tag, value, 2 );
} }
/** /**
* Parse and set value of 32-bit integer setting * Parse and store value of 32-bit integer setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -605,13 +678,13 @@ static int setf_int16 ( struct settings *settings, unsigned int tag,
* @v size Integer size, in bytes * @v size Integer size, in bytes
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_int32 ( struct settings *settings, unsigned int tag, static int storef_int32 ( struct settings *settings, unsigned int tag,
const char *value ) { const char *value ) {
return setf_int ( settings, tag, value, 4 ); return storef_int ( settings, tag, value, 4 );
} }
/** /**
* Get and format value of signed integer setting * Fetch and format value of signed integer setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -619,18 +692,18 @@ static int setf_int32 ( struct settings *settings, unsigned int tag,
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
static int getf_int ( struct settings *settings, unsigned int tag, static int fetchf_int ( struct settings *settings, unsigned int tag,
char *buf, size_t len ) { char *buf, size_t len ) {
long value; long value;
int rc; int rc;
if ( ( rc = get_int_setting ( settings, tag, &value ) ) < 0 ) if ( ( rc = fetch_int_setting ( settings, tag, &value ) ) < 0 )
return rc; return rc;
return snprintf ( buf, len, "%ld", value ); return snprintf ( buf, len, "%ld", value );
} }
/** /**
* Get and format value of unsigned integer setting * Fetch and format value of unsigned integer setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -638,12 +711,12 @@ static int getf_int ( struct settings *settings, unsigned int tag,
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
static int getf_uint ( struct settings *settings, unsigned int tag, static int fetchf_uint ( struct settings *settings, unsigned int tag,
char *buf, size_t len ) { char *buf, size_t len ) {
unsigned long value; unsigned long value;
int rc; int rc;
if ( ( rc = get_uint_setting ( settings, tag, &value ) ) < 0 ) if ( ( rc = fetch_uint_setting ( settings, tag, &value ) ) < 0 )
return rc; return rc;
return snprintf ( buf, len, "%#lx", value ); return snprintf ( buf, len, "%#lx", value );
} }
@ -651,54 +724,54 @@ static int getf_uint ( struct settings *settings, unsigned int tag,
/** A signed 8-bit integer setting type */ /** A signed 8-bit integer setting type */
struct setting_type setting_type_int8 __setting_type = { struct setting_type setting_type_int8 __setting_type = {
.name = "int8", .name = "int8",
.setf = setf_int8, .storef = storef_int8,
.getf = getf_int, .fetchf = fetchf_int,
}; };
/** A signed 16-bit integer setting type */ /** A signed 16-bit integer setting type */
struct setting_type setting_type_int16 __setting_type = { struct setting_type setting_type_int16 __setting_type = {
.name = "int16", .name = "int16",
.setf = setf_int16, .storef = storef_int16,
.getf = getf_int, .fetchf = fetchf_int,
}; };
/** A signed 32-bit integer setting type */ /** A signed 32-bit integer setting type */
struct setting_type setting_type_int32 __setting_type = { struct setting_type setting_type_int32 __setting_type = {
.name = "int32", .name = "int32",
.setf = setf_int32, .storef = storef_int32,
.getf = getf_int, .fetchf = fetchf_int,
}; };
/** An unsigned 8-bit integer setting type */ /** An unsigned 8-bit integer setting type */
struct setting_type setting_type_uint8 __setting_type = { struct setting_type setting_type_uint8 __setting_type = {
.name = "uint8", .name = "uint8",
.setf = setf_int8, .storef = storef_int8,
.getf = getf_uint, .fetchf = fetchf_uint,
}; };
/** An unsigned 16-bit integer setting type */ /** An unsigned 16-bit integer setting type */
struct setting_type setting_type_uint16 __setting_type = { struct setting_type setting_type_uint16 __setting_type = {
.name = "uint16", .name = "uint16",
.setf = setf_int16, .storef = storef_int16,
.getf = getf_uint, .fetchf = fetchf_uint,
}; };
/** An unsigned 32-bit integer setting type */ /** An unsigned 32-bit integer setting type */
struct setting_type setting_type_uint32 __setting_type = { struct setting_type setting_type_uint32 __setting_type = {
.name = "uint32", .name = "uint32",
.setf = setf_int32, .storef = storef_int32,
.getf = getf_uint, .fetchf = fetchf_uint,
}; };
/** /**
* Parse and set value of hex string setting * Parse and store value of hex string setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
* @v value Formatted setting data * @v value Formatted setting data
* @ret rc Return status code * @ret rc Return status code
*/ */
static int setf_hex ( struct settings *settings, unsigned int tag, static int storef_hex ( struct settings *settings, unsigned int tag,
const char *value ) { const char *value ) {
char *ptr = ( char * ) value; char *ptr = ( char * ) value;
uint8_t bytes[ strlen ( value ) ]; /* cannot exceed strlen(value) */ uint8_t bytes[ strlen ( value ) ]; /* cannot exceed strlen(value) */
@ -708,7 +781,7 @@ static int setf_hex ( struct settings *settings, unsigned int tag,
bytes[len++] = strtoul ( ptr, &ptr, 16 ); bytes[len++] = strtoul ( ptr, &ptr, 16 );
switch ( *ptr ) { switch ( *ptr ) {
case '\0' : case '\0' :
return set_setting ( settings, tag, bytes, len ); return store_setting ( settings, tag, bytes, len );
case ':' : case ':' :
ptr++; ptr++;
break; break;
@ -719,7 +792,7 @@ static int setf_hex ( struct settings *settings, unsigned int tag,
} }
/** /**
* Get and format value of hex string setting * Fetch and format value of hex string setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -727,21 +800,21 @@ static int setf_hex ( struct settings *settings, unsigned int tag,
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
static int getf_hex ( struct settings *settings, unsigned int tag, static int fetchf_hex ( struct settings *settings, unsigned int tag,
char *buf, size_t len ) { char *buf, size_t len ) {
int raw_len; int raw_len;
int check_len; int check_len;
int used = 0; int used = 0;
int i; int i;
raw_len = get_setting_len ( settings, tag ); raw_len = fetch_setting_len ( settings, tag );
if ( raw_len < 0 ) if ( raw_len < 0 )
return raw_len; return raw_len;
{ {
uint8_t raw[raw_len]; uint8_t raw[raw_len];
check_len = get_setting ( settings, tag, raw, sizeof ( raw ) ); check_len = fetch_setting ( settings, tag, raw, sizeof (raw) );
assert ( check_len == raw_len ); assert ( check_len == raw_len );
if ( len ) if ( len )
@ -758,8 +831,8 @@ static int getf_hex ( struct settings *settings, unsigned int tag,
/** A hex-string setting */ /** A hex-string setting */
struct setting_type setting_type_hex __setting_type = { struct setting_type setting_type_hex __setting_type = {
.name = "hex", .name = "hex",
.setf = setf_hex, .storef = storef_hex,
.getf = getf_hex, .fetchf = fetchf_hex,
}; };
/****************************************************************************** /******************************************************************************
@ -773,31 +846,31 @@ struct setting_type setting_type_hex __setting_type = {
struct named_setting basic_named_settings[] __named_setting = { struct named_setting basic_named_settings[] __named_setting = {
{ {
.name = "ip", .name = "ip",
.description = "IPv4 address of this interface", .description = "IPv4 address",
.tag = DHCP_EB_YIADDR, .tag = DHCP_EB_YIADDR,
.type = &setting_type_ipv4, .type = &setting_type_ipv4,
}, },
{ {
.name = "subnet-mask", .name = "netmask",
.description = "IPv4 subnet mask", .description = "IPv4 subnet mask",
.tag = DHCP_SUBNET_MASK, .tag = DHCP_SUBNET_MASK,
.type = &setting_type_ipv4, .type = &setting_type_ipv4,
}, },
{ {
.name = "routers", .name = "gateway",
.description = "Default gateway", .description = "Default gateway",
.tag = DHCP_ROUTERS, .tag = DHCP_ROUTERS,
.type = &setting_type_ipv4, .type = &setting_type_ipv4,
}, },
{ {
.name = "domain-name-servers", .name = "dns",
.description = "DNS server", .description = "DNS server",
.tag = DHCP_DNS_SERVERS, .tag = DHCP_DNS_SERVERS,
.type = &setting_type_ipv4, .type = &setting_type_ipv4,
}, },
{ {
.name = "hostname", .name = "hostname",
.description = "Host name of this machine", .description = "Host name",
.tag = DHCP_HOST_NAME, .tag = DHCP_HOST_NAME,
.type = &setting_type_string, .type = &setting_type_string,
}, },
@ -815,13 +888,13 @@ struct named_setting basic_named_settings[] __named_setting = {
}, },
{ {
.name = "username", .name = "username",
.description = "User name for authentication", .description = "User name",
.tag = DHCP_EB_USERNAME, .tag = DHCP_EB_USERNAME,
.type = &setting_type_string, .type = &setting_type_string,
}, },
{ {
.name = "password", .name = "password",
.description = "Password for authentication", .description = "Password",
.tag = DHCP_EB_PASSWORD, .tag = DHCP_EB_PASSWORD,
.type = &setting_type_string, .type = &setting_type_string,
}, },
@ -833,7 +906,7 @@ struct named_setting basic_named_settings[] __named_setting = {
}, },
{ {
.name = "priority", .name = "priority",
.description = "Priority of these options", .description = "Priority of these settings",
.tag = DHCP_EB_PRIORITY, .tag = DHCP_EB_PRIORITY,
.type = &setting_type_int8, .type = &setting_type_int8,
}, },

View File

@ -5,7 +5,7 @@
#include <gpxe/settings_ui.h> #include <gpxe/settings_ui.h>
static int config_exec ( int argc, char **argv ) { static int config_exec ( int argc, char **argv ) {
struct settings *settings; struct settings *settings = NULL;
int rc; int rc;
if ( argc > 2 ) { if ( argc > 2 ) {
@ -20,8 +20,6 @@ static int config_exec ( int argc, char **argv ) {
printf ( "No such scope \"%s\"\n", argv[1] ); printf ( "No such scope \"%s\"\n", argv[1] );
return 1; return 1;
} }
} else {
settings = &interactive_settings;
} }
if ( ( rc = settings_ui ( settings ) ) != 0 ) { if ( ( rc = settings_ui ( settings ) ) != 0 ) {

View File

@ -16,7 +16,8 @@ static int show_exec ( int argc, char **argv ) {
return 1; return 1;
} }
if ( ( rc = get_named_setting ( argv[1], buf, sizeof ( buf ) ) ) < 0 ){ if ( ( rc = fetch_named_setting ( argv[1], buf,
sizeof ( buf ) ) ) < 0 ){
printf ( "Could not find \"%s\": %s\n", printf ( "Could not find \"%s\": %s\n",
argv[1], strerror ( rc ) ); argv[1], strerror ( rc ) );
return 1; return 1;
@ -34,7 +35,7 @@ static int set_exec ( int argc, char **argv ) {
return 1; return 1;
} }
if ( ( rc = set_named_setting ( argv[1], argv[2] ) ) != 0 ) { if ( ( rc = store_named_setting ( argv[1], argv[2] ) ) != 0 ) {
printf ( "Could not set \"%s\"=\"%s\": %s\n", printf ( "Could not set \"%s\"=\"%s\": %s\n",
argv[1], argv[2], strerror ( rc ) ); argv[1], argv[2], strerror ( rc ) );
return 1; return 1;

View File

@ -114,7 +114,7 @@ static void load_setting ( struct setting_widget *widget ) {
widget->editing = 0; widget->editing = 0;
/* Read current setting value */ /* Read current setting value */
if ( get_typed_setting ( widget->settings, widget->setting->tag, if ( fetch_typed_setting ( widget->settings, widget->setting->tag,
widget->setting->type, widget->value, widget->setting->type, widget->value,
sizeof ( widget->value ) ) < 0 ) { sizeof ( widget->value ) ) < 0 ) {
widget->value[0] = '\0'; widget->value[0] = '\0';
@ -133,7 +133,7 @@ static void load_setting ( struct setting_widget *widget ) {
* @v widget Setting widget * @v widget Setting widget
*/ */
static int save_setting ( struct setting_widget *widget ) { static int save_setting ( struct setting_widget *widget ) {
return set_typed_setting ( widget->settings, widget->setting->tag, return store_typed_setting ( widget->settings, widget->setting->tag,
widget->setting->type, widget->value ); widget->setting->type, widget->value );
} }

View File

@ -25,9 +25,9 @@ struct settings_operations {
* @v len Length of setting data * @v len Length of setting data
* @ret rc Return status code * @ret rc Return status code
*/ */
int ( * set ) ( struct settings *settings, unsigned int tag, int ( * store ) ( struct settings *settings, unsigned int tag,
const void *data, size_t len ); const void *data, size_t len );
/** Get value of setting /** Fetch value of setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -38,7 +38,7 @@ struct settings_operations {
* The actual length of the setting will be returned even if * The actual length of the setting will be returned even if
* the buffer was too small. * the buffer was too small.
*/ */
int ( * get ) ( struct settings *settings, unsigned int tag, int ( * fetch ) ( struct settings *settings, unsigned int tag,
void *data, size_t len ); void *data, size_t len );
}; };
@ -47,9 +47,13 @@ struct settings {
/** Reference counter */ /** Reference counter */
struct refcnt *refcnt; struct refcnt *refcnt;
/** Name */ /** Name */
char name[16]; const char *name;
/** List of all settings */ /** Parent settings block */
struct list_head list; struct settings *parent;
/** Sibling settings blocks */
struct list_head siblings;
/** Child settings blocks */
struct list_head children;
/** Settings block operations */ /** Settings block operations */
struct settings_operations *op; struct settings_operations *op;
}; };
@ -73,9 +77,9 @@ struct setting_type {
* @v value Formatted setting data * @v value Formatted setting data
* @ret rc Return status code * @ret rc Return status code
*/ */
int ( * setf ) ( struct settings *settings, unsigned int tag, int ( * storef ) ( struct settings *settings, unsigned int tag,
const char *value ); const char *value );
/** Get and format value of setting /** Fetch and format value of setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -83,7 +87,7 @@ struct setting_type {
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
int ( * getf ) ( struct settings *settings, unsigned int tag, int ( * fetchf ) ( struct settings *settings, unsigned int tag,
char *buf, size_t len ); char *buf, size_t len );
}; };
@ -100,9 +104,7 @@ struct setting_type {
struct named_setting { struct named_setting {
/** Name /** Name
* *
* This is the human-readable name for the setting. Where * This is the human-readable name for the setting.
* possible, it should match the name used in dhcpd.conf (see
* dhcp-options(5)).
*/ */
const char *name; const char *name;
/** Description */ /** Description */
@ -120,28 +122,65 @@ struct named_setting {
/** Declare a configuration setting */ /** Declare a configuration setting */
#define __named_setting __table ( struct named_setting, named_settings, 01 ) #define __named_setting __table ( struct named_setting, named_settings, 01 )
extern struct settings interactive_settings; extern int simple_settings_store ( struct settings *settings, unsigned int tag,
const void *data, size_t len );
extern int get_setting ( struct settings *settings, unsigned int tag, extern int simple_settings_fetch ( struct settings *settings, unsigned int tag,
void *data, size_t len ); void *data, size_t len );
extern int get_setting_len ( struct settings *settings, unsigned int tag ); extern struct settings_operations simple_settings_operations;
extern int get_string_setting ( struct settings *settings, unsigned int tag,
extern int register_settings ( struct settings *settings,
struct settings *parent );
extern void unregister_settings ( struct settings *settings );
extern int fetch_setting ( struct settings *settings, unsigned int tag,
void *data, size_t len );
extern int fetch_setting_len ( struct settings *settings, unsigned int tag );
extern int fetch_string_setting ( struct settings *settings, unsigned int tag,
char *data, size_t len ); char *data, size_t len );
extern int get_ipv4_setting ( struct settings *settings, unsigned int tag, extern int fetch_ipv4_setting ( struct settings *settings, unsigned int tag,
struct in_addr *inp ); struct in_addr *inp );
extern int get_int_setting ( struct settings *settings, unsigned int tag, extern int fetch_int_setting ( struct settings *settings, unsigned int tag,
long *value ); long *value );
extern int get_uint_setting ( struct settings *settings, unsigned int tag, extern int fetch_uint_setting ( struct settings *settings, unsigned int tag,
unsigned long *value ); unsigned long *value );
extern struct settings * find_settings ( const char *name ); extern struct settings * find_settings ( const char *name );
extern int set_typed_setting ( struct settings *settings, extern int store_typed_setting ( struct settings *settings,
unsigned int tag, struct setting_type *type, unsigned int tag, struct setting_type *type,
const char *value ); const char *value );
extern int set_named_setting ( const char *name, const char *value ); extern int store_named_setting ( const char *name, const char *value );
extern int get_named_setting ( const char *name, char *buf, size_t len ); extern int fetch_named_setting ( const char *name, char *buf, size_t len );
extern struct setting_type setting_type_ __setting_type;
extern struct setting_type setting_type_string __setting_type;
extern struct setting_type setting_type_ipv4 __setting_type;
extern struct setting_type setting_type_int8 __setting_type;
extern struct setting_type setting_type_int16 __setting_type;
extern struct setting_type setting_type_int32 __setting_type;
extern struct setting_type setting_type_uint8 __setting_type;
extern struct setting_type setting_type_uint16 __setting_type;
extern struct setting_type setting_type_uint32 __setting_type;
extern struct setting_type setting_type_hex __setting_type;
/** /**
* Set value of setting * Initialise a settings block
*
* @v settings Settings block
* @v op Settings block operations
* @v refcnt Containing object reference counter, or NULL
* @v name Settings block name
*/
static inline void settings_init ( struct settings *settings,
struct settings_operations *op,
struct refcnt *refcnt,
const char *name ) {
INIT_LIST_HEAD ( &settings->siblings );
INIT_LIST_HEAD ( &settings->children );
settings->op = op;
settings->refcnt = refcnt;
settings->name = name;
}
/**
* Store value of setting
* *
* @v settings Settings block * @v settings Settings block
* @v tag Setting tag number * @v tag Setting tag number
@ -149,9 +188,9 @@ extern int get_named_setting ( const char *name, char *buf, size_t len );
* @v len Length of setting data * @v len Length of setting data
* @ret rc Return status code * @ret rc Return status code
*/ */
static inline int set_setting ( struct settings *settings, unsigned int tag, static inline int store_setting ( struct settings *settings, unsigned int tag,
const void *data, size_t len ) { const void *data, size_t len ) {
return settings->op->set ( settings, tag, data, len ); return settings->op->store ( settings, tag, data, len );
} }
/** /**
@ -163,11 +202,11 @@ static inline int set_setting ( struct settings *settings, unsigned int tag,
*/ */
static inline int delete_setting ( struct settings *settings, static inline int delete_setting ( struct settings *settings,
unsigned int tag ) { unsigned int tag ) {
return set_setting ( settings, tag, NULL, 0 ); return store_setting ( settings, tag, NULL, 0 );
} }
/** /**
* Get and format value of setting * Fetch and format value of setting
* *
* @v settings Settings block, or NULL to search all blocks * @v settings Settings block, or NULL to search all blocks
* @v tag Setting tag number * @v tag Setting tag number
@ -176,11 +215,11 @@ static inline int delete_setting ( struct settings *settings,
* @v len Length of buffer * @v len Length of buffer
* @ret len Length of formatted value, or negative error * @ret len Length of formatted value, or negative error
*/ */
static inline int get_typed_setting ( struct settings *settings, static inline int fetch_typed_setting ( struct settings *settings,
unsigned int tag, unsigned int tag,
struct setting_type *type, struct setting_type *type,
char *buf, size_t len ) { char *buf, size_t len ) {
return type->getf ( settings, tag, buf, len ); return type->fetchf ( settings, tag, buf, len );
} }
/** /**
@ -190,7 +229,7 @@ static inline int get_typed_setting ( struct settings *settings,
* @ret rc Return status code * @ret rc Return status code
*/ */
static inline int delete_named_setting ( const char *name ) { static inline int delete_named_setting ( const char *name ) {
return set_named_setting ( name, NULL ); return store_named_setting ( name, NULL );
} }
#endif /* _GPXE_SETTINGS_H */ #endif /* _GPXE_SETTINGS_H */