blob: 0868cff6c177ce6eebf22957b0b3244ab4830739 [file] [log] [blame]
Joe Onorato4535e402009-05-15 09:07:06 -04001/*
2 * Copyright (C) 2009 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
Joe Onorato2e1da322009-05-15 18:20:19 -040017#define LOG_TAG "backup_data"
18
Mathias Agopian8ae23352009-06-04 13:53:57 -070019#include <utils/BackupHelpers.h>
Joe Onorato4535e402009-05-15 09:07:06 -040020#include <utils/ByteOrder.h>
21
22#include <stdio.h>
23#include <unistd.h>
24
Joe Onorato2e1da322009-05-15 18:20:19 -040025#include <cutils/log.h>
26
Joe Onorato4535e402009-05-15 09:07:06 -040027namespace android {
28
29/*
30 * File Format (v1):
31 *
32 * All ints are stored little-endian.
33 *
34 * - An app_header_v1 struct.
35 * - The name of the package, utf-8, null terminated, padded to 4-byte boundary.
36 * - A sequence of zero or more key/value paires (entities), each with
37 * - A entity_header_v1 struct
38 * - The key, utf-8, null terminated, padded to 4-byte boundary.
39 * - The value, padded to 4 byte boundary
40 */
41
Joe Onorato4535e402009-05-15 09:07:06 -040042const static int ROUND_UP[4] = { 0, 3, 2, 1 };
43
44static inline size_t
45round_up(size_t n)
46{
47 return n + ROUND_UP[n % 4];
48}
49
50static inline size_t
51padding_extra(size_t n)
52{
53 return ROUND_UP[n % 4];
54}
55
56BackupDataWriter::BackupDataWriter(int fd)
57 :m_fd(fd),
58 m_status(NO_ERROR),
59 m_pos(0),
60 m_entityCount(0)
61{
62}
63
64BackupDataWriter::~BackupDataWriter()
65{
66}
67
68// Pad out anything they've previously written to the next 4 byte boundary.
69status_t
70BackupDataWriter::write_padding_for(int n)
71{
72 ssize_t amt;
73 ssize_t paddingSize;
74
75 paddingSize = padding_extra(n);
76 if (paddingSize > 0) {
77 uint32_t padding = 0xbcbcbcbc;
78 amt = write(m_fd, &padding, paddingSize);
79 if (amt != paddingSize) {
80 m_status = errno;
81 return m_status;
82 }
83 m_pos += amt;
84 }
85 return NO_ERROR;
86}
87
88status_t
Joe Onorato4535e402009-05-15 09:07:06 -040089BackupDataWriter::WriteEntityHeader(const String8& key, size_t dataSize)
90{
91 if (m_status != NO_ERROR) {
92 return m_status;
93 }
94
95 ssize_t amt;
96
97 amt = write_padding_for(m_pos);
98 if (amt != 0) {
99 return amt;
100 }
101
Joe Onorato06290a42009-06-18 20:10:37 -0700102 String8 k;
103 if (m_keyPrefix.length() > 0) {
104 k = m_keyPrefix;
105 k += ":";
106 k += key;
107 } else {
108 k = key;
109 }
110 LOGD("m_keyPrefix=%s key=%s k=%s", m_keyPrefix.string(), key.string(), k.string());
111
Joe Onorato4535e402009-05-15 09:07:06 -0400112 entity_header_v1 header;
113 ssize_t keyLen;
114
Joe Onorato06290a42009-06-18 20:10:37 -0700115 keyLen = k.length();
Joe Onorato4535e402009-05-15 09:07:06 -0400116
Joe Onoratod2110db2009-05-19 13:41:21 -0700117 header.type = tolel(BACKUP_HEADER_ENTITY_V1);
Joe Onorato4535e402009-05-15 09:07:06 -0400118 header.keyLen = tolel(keyLen);
119 header.dataSize = tolel(dataSize);
120
121 amt = write(m_fd, &header, sizeof(entity_header_v1));
122 if (amt != sizeof(entity_header_v1)) {
123 m_status = errno;
124 return m_status;
125 }
126 m_pos += amt;
127
Joe Onorato06290a42009-06-18 20:10:37 -0700128 amt = write(m_fd, k.string(), keyLen+1);
Joe Onorato4535e402009-05-15 09:07:06 -0400129 if (amt != keyLen+1) {
130 m_status = errno;
131 return m_status;
132 }
133 m_pos += amt;
134
135 amt = write_padding_for(keyLen+1);
136
137 m_entityCount++;
138
139 return amt;
140}
141
142status_t
143BackupDataWriter::WriteEntityData(const void* data, size_t size)
144{
145 if (m_status != NO_ERROR) {
146 return m_status;
147 }
148
149 // We don't write padding here, because they're allowed to call this several
150 // times with smaller buffers. We write it at the end of WriteEntityHeader
151 // instead.
152 ssize_t amt = write(m_fd, data, size);
153 if (amt != (ssize_t)size) {
154 m_status = errno;
155 return m_status;
156 }
157 m_pos += amt;
158 return NO_ERROR;
159}
160
Joe Onorato06290a42009-06-18 20:10:37 -0700161void
162BackupDataWriter::SetKeyPrefix(const String8& keyPrefix)
163{
164 m_keyPrefix = keyPrefix;
165}
Joe Onorato4535e402009-05-15 09:07:06 -0400166
Joe Onorato2e1da322009-05-15 18:20:19 -0400167
168BackupDataReader::BackupDataReader(int fd)
169 :m_fd(fd),
Joe Onorato5f15d152009-06-16 16:31:35 -0400170 m_done(false),
Joe Onorato2e1da322009-05-15 18:20:19 -0400171 m_status(NO_ERROR),
172 m_pos(0),
173 m_entityCount(0)
174{
175 memset(&m_header, 0, sizeof(m_header));
176}
177
178BackupDataReader::~BackupDataReader()
179{
180}
181
182status_t
183BackupDataReader::Status()
184{
185 return m_status;
186}
187
188#define CHECK_SIZE(actual, expected) \
189 do { \
190 if ((actual) != (expected)) { \
191 if ((actual) == 0) { \
192 m_status = EIO; \
193 } else { \
194 m_status = errno; \
195 } \
196 return m_status; \
197 } \
198 } while(0)
199#define SKIP_PADDING() \
200 do { \
201 status_t err = skip_padding(); \
202 if (err != NO_ERROR) { \
203 m_status = err; \
204 return err; \
205 } \
206 } while(0)
207
208status_t
Joe Onorato5f15d152009-06-16 16:31:35 -0400209BackupDataReader::ReadNextHeader(bool* done, int* type)
Joe Onorato2e1da322009-05-15 18:20:19 -0400210{
Joe Onorato5f15d152009-06-16 16:31:35 -0400211 *done = m_done;
Joe Onorato2e1da322009-05-15 18:20:19 -0400212 if (m_status != NO_ERROR) {
213 return m_status;
214 }
215
216 int amt;
217
Joe Onorato5f15d152009-06-16 16:31:35 -0400218 // No error checking here, in case we're at the end of the stream. Just let read() fail.
219 skip_padding();
Joe Onorato2e1da322009-05-15 18:20:19 -0400220 amt = read(m_fd, &m_header, sizeof(m_header));
Joe Onorato5f15d152009-06-16 16:31:35 -0400221 *done = m_done = (amt == 0);
Joe Onorato2e1da322009-05-15 18:20:19 -0400222 CHECK_SIZE(amt, sizeof(m_header));
Joe Onorato5d605dc2009-06-18 18:23:43 -0700223 m_pos += sizeof(m_header);
224 if (type) {
225 *type = m_header.type;
226 }
Joe Onorato2e1da322009-05-15 18:20:19 -0400227
228 // validate and fix up the fields.
229 m_header.type = fromlel(m_header.type);
230 switch (m_header.type)
231 {
Joe Onoratod2110db2009-05-19 13:41:21 -0700232 case BACKUP_HEADER_ENTITY_V1:
Joe Onorato5d605dc2009-06-18 18:23:43 -0700233 {
Joe Onorato2e1da322009-05-15 18:20:19 -0400234 m_header.entity.keyLen = fromlel(m_header.entity.keyLen);
235 if (m_header.entity.keyLen <= 0) {
236 LOGD("Entity header at %d has keyLen<=0: 0x%08x\n", (int)m_pos,
237 (int)m_header.entity.keyLen);
238 m_status = EINVAL;
239 }
240 m_header.entity.dataSize = fromlel(m_header.entity.dataSize);
Joe Onorato2e1da322009-05-15 18:20:19 -0400241 m_entityCount++;
Joe Onorato5d605dc2009-06-18 18:23:43 -0700242
243 // read the rest of the header (filename)
244 size_t size = m_header.entity.keyLen;
245 char* buf = m_key.lockBuffer(size);
246 if (buf == NULL) {
247 m_status = ENOMEM;
248 return m_status;
249 }
250 int amt = read(m_fd, buf, size+1);
251 CHECK_SIZE(amt, (int)size+1);
252 m_key.unlockBuffer(size);
253 m_pos += size+1;
254 SKIP_PADDING();
255 m_dataEndPos = m_pos + m_header.entity.dataSize;
256
Joe Onorato2e1da322009-05-15 18:20:19 -0400257 break;
Joe Onorato5d605dc2009-06-18 18:23:43 -0700258 }
Joe Onorato2e1da322009-05-15 18:20:19 -0400259 default:
260 LOGD("Chunk header at %d has invalid type: 0x%08x", (int)m_pos, (int)m_header.type);
261 m_status = EINVAL;
262 }
Joe Onorato2e1da322009-05-15 18:20:19 -0400263
264 return m_status;
265}
266
Joe Onorato2e1da322009-05-15 18:20:19 -0400267bool
268BackupDataReader::HasEntities()
269{
Joe Onoratod2110db2009-05-19 13:41:21 -0700270 return m_status == NO_ERROR && m_header.type == BACKUP_HEADER_ENTITY_V1;
Joe Onorato2e1da322009-05-15 18:20:19 -0400271}
272
273status_t
274BackupDataReader::ReadEntityHeader(String8* key, size_t* dataSize)
275{
276 if (m_status != NO_ERROR) {
277 return m_status;
278 }
Joe Onoratod2110db2009-05-19 13:41:21 -0700279 if (m_header.type != BACKUP_HEADER_ENTITY_V1) {
Joe Onorato2e1da322009-05-15 18:20:19 -0400280 return EINVAL;
281 }
Joe Onorato5d605dc2009-06-18 18:23:43 -0700282 *key = m_key;
Joe Onorato2e1da322009-05-15 18:20:19 -0400283 *dataSize = m_header.entity.dataSize;
Joe Onorato2e1da322009-05-15 18:20:19 -0400284 return NO_ERROR;
285}
286
287status_t
Joe Onoratod2110db2009-05-19 13:41:21 -0700288BackupDataReader::SkipEntityData()
289{
290 if (m_status != NO_ERROR) {
291 return m_status;
292 }
293 if (m_header.type != BACKUP_HEADER_ENTITY_V1) {
294 return EINVAL;
295 }
296 if (m_header.entity.dataSize > 0) {
Joe Onorato5f15d152009-06-16 16:31:35 -0400297 int pos = lseek(m_fd, m_dataEndPos, SEEK_SET);
Joe Onoratod2110db2009-05-19 13:41:21 -0700298 return pos == -1 ? (int)errno : (int)NO_ERROR;
299 } else {
300 return NO_ERROR;
301 }
302}
303
Joe Onoratoefd0fab2009-06-17 16:20:55 -0700304ssize_t
Joe Onorato2e1da322009-05-15 18:20:19 -0400305BackupDataReader::ReadEntityData(void* data, size_t size)
306{
307 if (m_status != NO_ERROR) {
Joe Onorato5d605dc2009-06-18 18:23:43 -0700308 return -1;
Joe Onorato2e1da322009-05-15 18:20:19 -0400309 }
Joe Onorato5f15d152009-06-16 16:31:35 -0400310 int remaining = m_dataEndPos - m_pos;
Joe Onoratoefd0fab2009-06-17 16:20:55 -0700311 //LOGD("ReadEntityData size=%d m_pos=0x%x m_dataEndPos=0x%x remaining=%d\n",
312 // size, m_pos, m_dataEndPos, remaining);
Joe Onorato5f15d152009-06-16 16:31:35 -0400313 if (remaining <= 0) {
314 return 0;
315 }
Joe Onorato06290a42009-06-18 20:10:37 -0700316 if (((int)size) > remaining) {
Joe Onorato5d605dc2009-06-18 18:23:43 -0700317 size = remaining;
318 }
319 //LOGD(" reading %d bytes", size);
Joe Onorato2e1da322009-05-15 18:20:19 -0400320 int amt = read(m_fd, data, size);
Joe Onorato5d605dc2009-06-18 18:23:43 -0700321 if (amt < 0) {
322 m_status = errno;
323 return -1;
324 }
325 m_pos += amt;
Joe Onoratoefd0fab2009-06-17 16:20:55 -0700326 return amt;
Joe Onorato2e1da322009-05-15 18:20:19 -0400327}
328
329status_t
Joe Onorato2e1da322009-05-15 18:20:19 -0400330BackupDataReader::skip_padding()
331{
332 ssize_t amt;
333 ssize_t paddingSize;
334
335 paddingSize = padding_extra(m_pos);
336 if (paddingSize > 0) {
337 uint32_t padding;
338 amt = read(m_fd, &padding, paddingSize);
339 CHECK_SIZE(amt, paddingSize);
340 m_pos += amt;
341 }
342 return NO_ERROR;
343}
344
345
Joe Onorato4535e402009-05-15 09:07:06 -0400346} // namespace android