]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[settings] Add fetch_string_setting_copy()
authorMichael Brown <mcb30@etherboot.org>
Tue, 27 Jan 2009 19:13:47 +0000 (19:13 +0000)
committerMichael Brown <mcb30@etherboot.org>
Tue, 27 Jan 2009 19:13:47 +0000 (19:13 +0000)
src/core/settings.c
src/include/gpxe/settings.h

index 2d9c096e01d3214a795da9f0c6994516c1d3c57a..09033bd91de8e04bfdc31539a2395969ee89f05c 100644 (file)
@@ -389,6 +389,38 @@ int fetch_string_setting ( struct settings *settings, struct setting *setting,
                               ( ( len > 0 ) ? ( len - 1 ) : 0 ) );
 }
 
+/**
+ * Fetch value of string setting
+ *
+ * @v settings         Settings block, or NULL to search all blocks
+ * @v setting          Setting to fetch
+ * @v data             Buffer to allocate and fill with setting string data
+ * @ret len            Length of string setting, or negative error
+ *
+ * The resulting string is guaranteed to be correctly NUL-terminated.
+ * The returned length will be the length of the underlying setting
+ * data.  The caller is responsible for eventually freeing the
+ * allocated buffer.
+ */
+int fetch_string_setting_copy ( struct settings *settings,
+                               struct setting *setting,
+                               char **data ) {
+       int len;
+       int check_len;
+
+       len = fetch_setting_len ( settings, setting );
+       if ( len < 0 )
+               return len;
+
+       *data = malloc ( len + 1 );
+       if ( ! *data )
+               return -ENOMEM;
+
+       fetch_string_setting ( settings, setting, *data, ( len + 1 ) );
+       assert ( check_len == len );
+       return len;
+}
+
 /**
  * Fetch value of IPv4 address setting
  *
index 37c01b058db858df954ad54392a8a68734d74c12..e9f0bce5918dd28ec7aa0dc17eeef04a5f22c146 100644 (file)
@@ -175,6 +175,9 @@ extern int fetch_setting_len ( struct settings *settings,
 extern int fetch_string_setting ( struct settings *settings,
                                  struct setting *setting,
                                  char *data, size_t len );
+extern int fetch_string_setting_copy ( struct settings *settings,
+                                      struct setting *setting,
+                                      char **data );
 extern int fetch_ipv4_setting ( struct settings *settings,
                                struct setting *setting, struct in_addr *inp );
 extern int fetch_int_setting ( struct settings *settings,