summaryrefslogtreecommitdiffstats
path: root/src/core/settings.c
diff options
context:
space:
mode:
authorMichael Brown2013-07-19 15:53:38 +0200
committerMichael Brown2013-07-19 16:15:28 +0200
commit72fb55e437474f1322ae6c748ab0df75e5eb84b6 (patch)
tree92dfebcce96b3ed40dfbac43256c6d8e76527167 /src/core/settings.c
parent[settings] Expose parse_setting_name() (diff)
downloadipxe-72fb55e437474f1322ae6c748ab0df75e5eb84b6.tar.gz
ipxe-72fb55e437474f1322ae6c748ab0df75e5eb84b6.tar.xz
ipxe-72fb55e437474f1322ae6c748ab0df75e5eb84b6.zip
[settings] Change "not-found" semantics of fetch_setting_copy()
fetch_settings_copy() currently returns success and a NULL data pointer to indicate a non-existent setting. This is intended to allow the caller to differentiate between a non-existent setting and an error in allocating memory for the copy of the setting. The underlying settings blocks' fetch() methods provide no way to perform an existence check separate from an attempt to fetch the setting. A "non-existent setting" therefore means simply a setting for which an error was encountered when attempting to fetch from every settings block within the subtree. Since any underlying error within a settings block (e.g. a GuestRPC failure when attempting to retrieve a VMware GuestInfo setting) will produce the effect of a "non-existent setting", it seems somewhat meaningless to give special treatment to memory allocation errors within fetch_setting_copy(). Remove the special treatment and simplify the semantics of fetch_setting_copy() by directly passing through any underlying error (including non-existence) encountered while fetching the setting. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/core/settings.c')
-rw-r--r--src/core/settings.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/core/settings.c b/src/core/settings.c
index a0a09d4e..0be1a2dd 100644
--- a/src/core/settings.c
+++ b/src/core/settings.c
@@ -722,11 +722,6 @@ int fetch_setting_len ( struct settings *settings, struct setting *setting ) {
*
* The caller is responsible for eventually freeing the allocated
* buffer.
- *
- * To allow the caller to distinguish between a non-existent setting
- * and an error in allocating memory for the copy, this function will
- * return success (and a NULL buffer pointer) for a non-existent
- * setting.
*/
int fetch_setting_copy ( struct settings *settings, struct setting *setting,
void **data ) {
@@ -736,10 +731,10 @@ int fetch_setting_copy ( struct settings *settings, struct setting *setting,
/* Avoid returning uninitialised data on error */
*data = NULL;
- /* Fetch setting length, and return success if non-existent */
+ /* Check existence, and fetch setting length */
len = fetch_setting_len ( settings, setting );
if ( len < 0 )
- return 0;
+ return len;
/* Allocate buffer */
*data = malloc ( len );
@@ -1055,12 +1050,6 @@ int fetchf_setting ( struct settings *settings, struct setting *setting,
goto err_fetch_copy;
}
- /* Return error if setting does not exist */
- if ( ! raw ) {
- ret = -ENOENT;
- goto err_exists;
- }
-
/* Sanity check */
assert ( setting->type != NULL );
assert ( setting->type->format != NULL );
@@ -1071,7 +1060,6 @@ int fetchf_setting ( struct settings *settings, struct setting *setting,
err_format:
free ( raw );
- err_exists:
err_fetch_copy:
return ret;
}