X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=lib%2Ffile%2Ffile.c;h=6028005712788c9b8dd8c4d552561f211f2fcdcd;hb=refs%2Ftags%2Fv1.10.2;hp=6a270a301c47df9e2608e55fb9c3bbad2123dba4;hpb=86c9d34380b0074dab1ba89a569a94280d6999c4;p=petitboot diff --git a/lib/file/file.c b/lib/file/file.c index 6a270a3..6028005 100644 --- a/lib/file/file.c +++ b/lib/file/file.c @@ -33,38 +33,55 @@ static const int max_file_size = 1024 * 1024; -int copy_file_secure_dest(void *ctx, - const char *source_file, char **destination_file) { - int result = 0; +int copy_file_secure_dest(void *ctx, const char *source_file, + char **destination_file) +{ + char readlink_buffer[MAX_FILENAME_SIZE + 1]; + char dest_filename[MAX_FILENAME_SIZE + 1] = ""; char template[] = "/tmp/petitbootXXXXXX"; - char dest_filename[MAX_FILENAME_SIZE] = ""; - FILE *source_handle = fopen(source_file, "r"); - int destination_fd = mkstemp(template); - FILE *destination_handle = fdopen(destination_fd, "w"); - if (!source_handle || !(destination_handle)) { - // handle open error - pb_log("%s: failed: unable to open source file '%s'\n", + FILE *destination_handle, *source_handle; + int destination_fd, result = 0; + unsigned char *buffer; + ssize_t r; + size_t l1; + + source_handle = fopen(source_file, "r"); + if (!source_handle) { + pb_log("%s: unable to open source file '%s': %m\n", __func__, source_file); + return -1; + } + + destination_fd = mkstemp(template); + if (destination_fd < 0) { + pb_log_fn("unable to create temp file, %m\n"); + fclose(source_handle); + return -1; + } + destination_handle = fdopen(destination_fd, "w"); + if (!destination_handle) { + pb_log_fn("unable to open destination file, %m\n"); + fclose(source_handle); + close(destination_fd); return -1; } - size_t l1; - unsigned char *buffer; buffer = talloc_array(ctx, unsigned char, FILE_XFER_BUFFER_SIZE); if (!buffer) { pb_log("%s: failed: unable to allocate file transfer buffer\n", __func__); - return -1; + result = -1; + goto out; } /* Copy data */ - while ((l1 = fread(buffer, 1, sizeof buffer, source_handle)) > 0) { + while ((l1 = fread(buffer, 1, FILE_XFER_BUFFER_SIZE, source_handle)) > 0) { size_t l2 = fwrite(buffer, 1, l1, destination_handle); if (l2 < l1) { if (ferror(destination_handle)) { /* General error */ result = -1; - pb_log("%s: failed: unknown fault\n", __func__); + pb_log_fn("failed: unknown fault\n"); } else { /* No space on destination device */ @@ -76,32 +93,29 @@ int copy_file_secure_dest(void *ctx, } } - talloc_free(buffer); - if (result) { - dest_filename[0] = '\0'; + *destination_file = NULL; + goto out; } - else { - ssize_t r; - char readlink_buffer[MAX_FILENAME_SIZE]; - snprintf(readlink_buffer, MAX_FILENAME_SIZE, "/proc/self/fd/%d", - destination_fd); - r = readlink(readlink_buffer, dest_filename, - MAX_FILENAME_SIZE); - if (r < 0) { - /* readlink failed */ - result = -1; - pb_log("%s: failed: unable to obtain temporary filename" - "\n", __func__); - } - dest_filename[r] = '\0'; + + snprintf(readlink_buffer, MAX_FILENAME_SIZE, "/proc/self/fd/%d", + destination_fd); + r = readlink(readlink_buffer, dest_filename, MAX_FILENAME_SIZE); + if (r < 0) { + /* readlink failed */ + result = -1; + r = 0; + pb_log("%s: failed: unable to obtain temporary filename\n", + __func__); } + dest_filename[r] = '\0'; + *destination_file = talloc_strdup(ctx, dest_filename); +out: + talloc_free(buffer); fclose(source_handle); fclose(destination_handle); - - *destination_file = talloc_strdup(ctx, dest_filename); - + close(destination_fd); return result; }