summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libsparse')
-rw-r--r--libsparse/Android.mk7
-rw-r--r--libsparse/append2simg.c140
2 files changed, 145 insertions, 2 deletions
diff --git a/libsparse/Android.mk b/libsparse/Android.mk
index 02ab412bc..0abe33d49 100644
--- a/libsparse/Android.mk
+++ b/libsparse/Android.mk
@@ -88,15 +88,18 @@ LOCAL_CFLAGS := -Werror
88include $(BUILD_EXECUTABLE) 88include $(BUILD_EXECUTABLE)
89 89
90 90
91ifneq ($(HOST_OS),windows)
92
91include $(CLEAR_VARS) 93include $(CLEAR_VARS)
92LOCAL_SRC_FILES := simg2simg.c 94LOCAL_SRC_FILES := append2simg.c
93LOCAL_MODULE := simg2simg 95LOCAL_MODULE := append2simg
94LOCAL_STATIC_LIBRARIES := \ 96LOCAL_STATIC_LIBRARIES := \
95 libsparse_host \ 97 libsparse_host \
96 libz 98 libz
97LOCAL_CFLAGS := -Werror 99LOCAL_CFLAGS := -Werror
98include $(BUILD_HOST_EXECUTABLE) 100include $(BUILD_HOST_EXECUTABLE)
99 101
102endif
100 103
101include $(CLEAR_VARS) 104include $(CLEAR_VARS)
102LOCAL_MODULE := simg_dump.py 105LOCAL_MODULE := simg_dump.py
diff --git a/libsparse/append2simg.c b/libsparse/append2simg.c
new file mode 100644
index 000000000..65e6cc29b
--- /dev/null
+++ b/libsparse/append2simg.c
@@ -0,0 +1,140 @@
1/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define _FILE_OFFSET_BITS 64
18#define _LARGEFILE64_SOURCE 1
19#define _GNU_SOURCE
20
21#include <errno.h>
22#include <fcntl.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <unistd.h>
27
28#include <sparse/sparse.h>
29#include "sparse_file.h"
30#include "backed_block.h"
31
32#ifndef O_BINARY
33#define O_BINARY 0
34#endif
35
36#if defined(__APPLE__) && defined(__MACH__)
37#define lseek64 lseek
38#endif
39#if defined(__APPLE__) && defined(__MACH__)
40#define lseek64 lseek
41#define off64_t off_t
42#endif
43
44void usage()
45{
46 fprintf(stderr, "Usage: append2simg <output> <input>\n");
47}
48
49int main(int argc, char *argv[])
50{
51 int output;
52 int output_block;
53 char *output_path;
54 struct sparse_file *sparse_output;
55
56 int input;
57 char *input_path;
58 off64_t input_len;
59
60 int tmp_fd;
61 char *tmp_path;
62
63 int ret;
64
65 if (argc == 3) {
66 output_path = argv[1];
67 input_path = argv[2];
68 } else {
69 usage();
70 exit(-1);
71 }
72
73 ret = asprintf(&tmp_path, "%s.append2simg", output_path);
74 if (ret < 0) {
75 fprintf(stderr, "Couldn't allocate filename\n");
76 exit(-1);
77 }
78
79 output = open(output_path, O_RDWR | O_BINARY);
80 if (output < 0) {
81 fprintf(stderr, "Couldn't open output file (%s)\n", strerror(errno));
82 exit(-1);
83 }
84
85 sparse_output = sparse_file_import_auto(output, true);
86 if (!sparse_output) {
87 fprintf(stderr, "Couldn't import output file\n");
88 exit(-1);
89 }
90
91 input = open(input_path, O_RDONLY | O_BINARY);
92 if (input < 0) {
93 fprintf(stderr, "Couldn't open input file (%s)\n", strerror(errno));
94 exit(-1);
95 }
96
97 input_len = lseek64(input, 0, SEEK_END);
98 if (input_len < 0) {
99 fprintf(stderr, "Couldn't get input file length (%s)\n", strerror(errno));
100 exit(-1);
101 } else if (input_len % sparse_output->block_size) {
102 fprintf(stderr, "Input file is not a multiple of the output file's block size");
103 exit(-1);
104 }
105 lseek64(input, 0, SEEK_SET);
106
107 output_block = sparse_output->len / sparse_output->block_size;
108 if (sparse_file_add_fd(sparse_output, input, 0, input_len, output_block) < 0) {
109 fprintf(stderr, "Couldn't add input file\n");
110 exit(-1);
111 }
112 sparse_output->len += input_len;
113
114 tmp_fd = open(tmp_path, O_WRONLY | O_CREAT | O_BINARY, 0664);
115 if (tmp_fd < 0) {
116 fprintf(stderr, "Couldn't open temporary file (%s)\n", strerror(errno));
117 exit(-1);
118 }
119
120 lseek64(output, 0, SEEK_SET);
121 if (sparse_file_write(sparse_output, tmp_fd, false, true, false) < 0) {
122 fprintf(stderr, "Failed to write sparse file\n");
123 exit(-1);
124 }
125
126 sparse_file_destroy(sparse_output);
127 close(tmp_fd);
128 close(output);
129 close(input);
130
131 ret = rename(tmp_path, output_path);
132 if (ret < 0) {
133 fprintf(stderr, "Failed to rename temporary file (%s)\n", strerror(errno));
134 exit(-1);
135 }
136
137 free(tmp_path);
138
139 exit(0);
140}