mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 07:11:32 +00:00
fetch() now knows nothing about struct image; it simply loads a file and
returns the allocated buffer.
This commit is contained in:
parent
2876197306
commit
475d6d1f7c
@ -99,9 +99,7 @@ struct image * find_image ( const char *name ) {
|
||||
* image.
|
||||
*/
|
||||
void free_image ( struct image *image ) {
|
||||
if ( image->free )
|
||||
image->free ( image->data );
|
||||
image->free = NULL;
|
||||
efree ( image->data );
|
||||
image->data = UNULL;
|
||||
image->len = 0;
|
||||
}
|
||||
|
@ -31,14 +31,6 @@ struct image {
|
||||
userptr_t data;
|
||||
/** Length of raw file image */
|
||||
size_t len;
|
||||
/**
|
||||
* Free raw file image
|
||||
*
|
||||
* @v data Raw file image
|
||||
*
|
||||
* Call this method before freeing up the @c struct @c image.
|
||||
*/
|
||||
void ( * free ) ( userptr_t data );
|
||||
|
||||
/** Entry point */
|
||||
physaddr_t entry;
|
||||
|
@ -4,10 +4,13 @@
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* Fetch file as executable/loadable image
|
||||
* Fetch file
|
||||
*
|
||||
*/
|
||||
|
||||
extern int fetch ( struct image *image, const char *filename );
|
||||
#include <stdint.h>
|
||||
#include <gpxe/uaccess.h>
|
||||
|
||||
extern int fetch ( const char *filename, userptr_t *data, size_t *len );
|
||||
|
||||
#endif /* _USR_FETCH_H */
|
||||
|
@ -34,13 +34,18 @@
|
||||
#include <gpxe/dhcp.h>
|
||||
|
||||
/**
|
||||
* Fetch file as executable/loadable image
|
||||
* Fetch file
|
||||
*
|
||||
* @v image Executable/loadable image
|
||||
* @v filename Filename
|
||||
* @v filename Filename to fetch
|
||||
* @ret data Loaded file
|
||||
* @ret len Length of loaded file
|
||||
* @ret rc Return status code
|
||||
*
|
||||
* Fetch file to an external buffer allocated with emalloc(). The
|
||||
* caller is responsible for eventually freeing the buffer with
|
||||
* efree().
|
||||
*/
|
||||
int fetch ( struct image *image, const char *filename ) {
|
||||
int fetch ( const char *filename, userptr_t *data, size_t *len ) {
|
||||
struct buffer buffer;
|
||||
int rc;
|
||||
|
||||
@ -69,10 +74,9 @@ int fetch ( struct image *image, const char *filename ) {
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* Transfer ownserhip of the data buffer to the image */
|
||||
image->data = buffer.addr;
|
||||
image->len = buffer.fill;
|
||||
image->free = efree;
|
||||
/* Fill in buffer address and length */
|
||||
*data = buffer.addr;
|
||||
*len = buffer.fill;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ int imgfetch ( const char *filename, const char *name,
|
||||
strncpy ( image->name, name, ( sizeof ( image->name ) - 1 ) );
|
||||
|
||||
/* Fetch the file */
|
||||
if ( ( rc = fetch ( image, filename ) ) != 0 )
|
||||
if ( ( rc = fetch ( filename, &image->data, &image->len ) ) != 0 )
|
||||
goto err;
|
||||
|
||||
/* Register the image */
|
||||
|
Loading…
Reference in New Issue
Block a user