Skip to content

Commit

Permalink
uimage: Use is_tftp_fs() and cache_file() to ease TFTP workaround
Browse files Browse the repository at this point in the history
We have helper functions now to ease file caching when a file
is on TFTP. Use them.

Signed-off-by: Sascha Hauer <[email protected]>
  • Loading branch information
saschahauer committed Jan 25, 2018
1 parent 220e92b commit 0f31aec
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 25 deletions.
47 changes: 22 additions & 25 deletions common/uimage.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ ssize_t uimage_get_size(struct uimage_handle *handle, unsigned int image_no)
}
EXPORT_SYMBOL(uimage_get_size);

static const char uimage_tmp[] = "/.uImage_tmp";

/*
* open a uimage. This will check the header contents and
* return a handle to the uImage
Expand All @@ -99,32 +97,27 @@ struct uimage_handle *uimage_open(const char *filename)
struct image_header *header;
int i;
int ret;
struct stat s;
char *copy = NULL;

if (is_tftp_fs(filename)) {
ret = cache_file(filename, &copy);
if (ret)
return NULL;
filename = copy;
}

again:
fd = open(filename, O_RDONLY);
if (fd < 0) {
printf("could not open: %s\n", errno_str());
free(copy);
return NULL;
}

/*
* Hack around tftp fs. We need lseek for uImage support, but
* this cannot be implemented in tftp fs, so we detect this
* and copy the file to ram if it fails
*/
if (IS_BUILTIN(CONFIG_FS_TFTP) && !can_lseek_backward(fd)) {
close(fd);
ret = copy_file(filename, uimage_tmp, 0);
if (ret)
return NULL;
filename = uimage_tmp;
goto again;
}

handle = xzalloc(sizeof(struct uimage_handle));
header = &handle->header;

handle->copy = copy;

if (read(fd, header, sizeof(*header)) < 0) {
printf("could not read: %s\n", errno_str());
goto err_out;
Expand Down Expand Up @@ -204,9 +197,12 @@ struct uimage_handle *uimage_open(const char *filename)
close(fd);

free(handle->name);
if (handle->copy) {
unlink(handle->copy);
free(handle->copy);
}
free(handle);
if (IS_BUILTIN(CONFIG_FS_TFTP) && !stat(uimage_tmp, &s))
unlink(uimage_tmp);

return NULL;
}
EXPORT_SYMBOL(uimage_open);
Expand All @@ -216,14 +212,15 @@ EXPORT_SYMBOL(uimage_open);
*/
void uimage_close(struct uimage_handle *handle)
{
struct stat s;

close(handle->fd);

if (handle->copy) {
unlink(handle->copy);
free(handle->copy);
}

free(handle->name);
free(handle);

if (IS_BUILTIN(CONFIG_FS_TFTP) && !stat(uimage_tmp, &s))
unlink(uimage_tmp);
}
EXPORT_SYMBOL(uimage_close);

Expand Down
1 change: 1 addition & 0 deletions include/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ struct resource *file_to_sdram(const char *filename, unsigned long adr);
struct uimage_handle {
struct image_header header;
char *name;
char *copy;
struct uimage_handle_data ihd[MAX_MULTI_IMAGE_COUNT];
int nb_data_entries;
size_t data_offset;
Expand Down

0 comments on commit 0f31aec

Please sign in to comment.