blob: be04777528ea9ca2277247f416e3b20694faee1b [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 }
Joe Onorato568bc322009-06-26 17:19:11 -0400110 if (true) {
111 LOGD("Writing entity: prefix='%s' key='%s' dataSize=%d", m_keyPrefix.string(), key.string(),
112 dataSize);
113 }
Joe Onorato06290a42009-06-18 20:10:37 -0700114
Joe Onorato4535e402009-05-15 09:07:06 -0400115 entity_header_v1 header;
116 ssize_t keyLen;
117
Joe Onorato06290a42009-06-18 20:10:37 -0700118 keyLen = k.length();
Joe Onorato4535e402009-05-15 09:07:06 -0400119
Joe Onoratod2110db2009-05-19 13:41:21 -0700120 header.type = tolel(BACKUP_HEADER_ENTITY_V1);
Joe Onorato4535e402009-05-15 09:07:06 -0400121 header.keyLen = tolel(keyLen);
122 header.dataSize = tolel(dataSize);
123
124 amt = write(m_fd, &header, sizeof(entity_header_v1));
125 if (amt != sizeof(entity_header_v1)) {
126 m_status = errno;
127 return m_status;
128 }
129 m_pos += amt;
130
Joe Onorato06290a42009-06-18 20:10:37 -0700131 amt = write(m_fd, k.string(), keyLen+1);
Joe Onorato4535e402009-05-15 09:07:06 -0400132 if (amt != keyLen+1) {
133 m_status = errno;
134 return m_status;
135 }
136 m_pos += amt;
137
138 amt = write_padding_for(keyLen+1);
139
140 m_entityCount++;
141
142 return amt;
143}
144
145status_t
146BackupDataWriter::WriteEntityData(const void* data, size_t size)
147{
148 if (m_status != NO_ERROR) {
149 return m_status;
150 }
151
152 // We don't write padding here, because they're allowed to call this several
153 // times with smaller buffers. We write it at the end of WriteEntityHeader
154 // instead.
155 ssize_t amt = write(m_fd, data, size);
156 if (amt != (ssize_t)size) {
157 m_status = errno;
158 return m_status;
159 }
160 m_pos += amt;
161 return NO_ERROR;
162}
163
Joe Onorato06290a42009-06-18 20:10:37 -0700164void
165BackupDataWriter::SetKeyPrefix(const String8& keyPrefix)
166{
167 m_keyPrefix = keyPrefix;
168}
Joe Onorato4535e402009-05-15 09:07:06 -0400169
Joe Onorato2e1da322009-05-15 18:20:19 -0400170
171BackupDataReader::BackupDataReader(int fd)
172 :m_fd(fd),
Joe Onorato5f15d152009-06-16 16:31:35 -0400173 m_done(false),
Joe Onorato2e1da322009-05-15 18:20:19 -0400174 m_status(NO_ERROR),
175 m_pos(0),
176 m_entityCount(0)
177{
178 memset(&m_header, 0, sizeof(m_header));
179}
180
181BackupDataReader::~BackupDataReader()
182{
183}
184
185status_t
186BackupDataReader::Status()
187{
188 return m_status;
189}
190
191#define CHECK_SIZE(actual, expected) \
192 do { \
193 if ((actual) != (expected)) { \
194 if ((actual) == 0) { \
195 m_status = EIO; \
196 } else { \
197 m_status = errno; \
198 } \
199 return m_status; \
200 } \
201 } while(0)
202#define SKIP_PADDING() \
203 do { \
204 status_t err = skip_padding(); \
205 if (err != NO_ERROR) { \
206 m_status = err; \
207 return err; \
208 } \
209 } while(0)
210
211status_t
Joe Onorato5f15d152009-06-16 16:31:35 -0400212BackupDataReader::ReadNextHeader(bool* done, int* type)
Joe Onorato2e1da322009-05-15 18:20:19 -0400213{
Joe Onorato5f15d152009-06-16 16:31:35 -0400214 *done = m_done;
Joe Onorato2e1da322009-05-15 18:20:19 -0400215 if (m_status != NO_ERROR) {
216 return m_status;
217 }
218
219 int amt;
220
Joe Onorato5f15d152009-06-16 16:31:35 -0400221 // No error checking here, in case we're at the end of the stream. Just let read() fail.
222 skip_padding();
Joe Onorato2e1da322009-05-15 18:20:19 -0400223 amt = read(m_fd, &m_header, sizeof(m_header));
Joe Onorato5f15d152009-06-16 16:31:35 -0400224 *done = m_done = (amt == 0);
Joe Onorato2e1da322009-05-15 18:20:19 -0400225 CHECK_SIZE(amt, sizeof(m_header));
Joe Onorato5d605dc2009-06-18 18:23:43 -0700226 m_pos += sizeof(m_header);
227 if (type) {
228 *type = m_header.type;
229 }
Joe Onorato2e1da322009-05-15 18:20:19 -0400230
231 // validate and fix up the fields.
232 m_header.type = fromlel(m_header.type);
233 switch (m_header.type)
234 {
Joe Onoratod2110db2009-05-19 13:41:21 -0700235 case BACKUP_HEADER_ENTITY_V1:
Joe Onorato5d605dc2009-06-18 18:23:43 -0700236 {
Joe Onorato2e1da322009-05-15 18:20:19 -0400237 m_header.entity.keyLen = fromlel(m_header.entity.keyLen);
238 if (m_header.entity.keyLen <= 0) {
239 LOGD("Entity header at %d has keyLen<=0: 0x%08x\n", (int)m_pos,
240 (int)m_header.entity.keyLen);
241 m_status = EINVAL;
242 }
243 m_header.entity.dataSize = fromlel(m_header.entity.dataSize);
Joe Onorato2e1da322009-05-15 18:20:19 -0400244 m_entityCount++;
Joe Onorato5d605dc2009-06-18 18:23:43 -0700245
246 // read the rest of the header (filename)
247 size_t size = m_header.entity.keyLen;
248 char* buf = m_key.lockBuffer(size);
249 if (buf == NULL) {
250 m_status = ENOMEM;
251 return m_status;
252 }
253 int amt = read(m_fd, buf, size+1);
254 CHECK_SIZE(amt, (int)size+1);
255 m_key.unlockBuffer(size);
256 m_pos += size+1;
257 SKIP_PADDING();
258 m_dataEndPos = m_pos + m_header.entity.dataSize;
259
Joe Onorato2e1da322009-05-15 18:20:19 -0400260 break;
Joe Onorato5d605dc2009-06-18 18:23:43 -0700261 }
Joe Onorato2e1da322009-05-15 18:20:19 -0400262 default:
263 LOGD("Chunk header at %d has invalid type: 0x%08x", (int)m_pos, (int)m_header.type);
264 m_status = EINVAL;
265 }
Joe Onorato2e1da322009-05-15 18:20:19 -0400266
267 return m_status;
268}
269
Joe Onorato2e1da322009-05-15 18:20:19 -0400270bool
271BackupDataReader::HasEntities()
272{
Joe Onoratod2110db2009-05-19 13:41:21 -0700273 return m_status == NO_ERROR && m_header.type == BACKUP_HEADER_ENTITY_V1;
Joe Onorato2e1da322009-05-15 18:20:19 -0400274}
275
276status_t
277BackupDataReader::ReadEntityHeader(String8* key, size_t* dataSize)
278{
279 if (m_status != NO_ERROR) {
280 return m_status;
281 }
Joe Onoratod2110db2009-05-19 13:41:21 -0700282 if (m_header.type != BACKUP_HEADER_ENTITY_V1) {
Joe Onorato2e1da322009-05-15 18:20:19 -0400283 return EINVAL;
284 }
Joe Onorato5d605dc2009-06-18 18:23:43 -0700285 *key = m_key;
Joe Onorato2e1da322009-05-15 18:20:19 -0400286 *dataSize = m_header.entity.dataSize;
Joe Onorato2e1da322009-05-15 18:20:19 -0400287 return NO_ERROR;
288}
289
290status_t
Joe Onoratod2110db2009-05-19 13:41:21 -0700291BackupDataReader::SkipEntityData()
292{
293 if (m_status != NO_ERROR) {
294 return m_status;
295 }
296 if (m_header.type != BACKUP_HEADER_ENTITY_V1) {
297 return EINVAL;
298 }
299 if (m_header.entity.dataSize > 0) {
Joe Onorato5f15d152009-06-16 16:31:35 -0400300 int pos = lseek(m_fd, m_dataEndPos, SEEK_SET);
Joe Onoratoee5bbb72009-07-13 14:44:07 -0700301 if (pos == -1) {
302 return errno;
303 }
Joe Onoratod2110db2009-05-19 13:41:21 -0700304 }
Joe Onoratoee5bbb72009-07-13 14:44:07 -0700305 SKIP_PADDING();
306 return NO_ERROR;
Joe Onoratod2110db2009-05-19 13:41:21 -0700307}
308
Joe Onoratoefd0fab2009-06-17 16:20:55 -0700309ssize_t
Joe Onorato2e1da322009-05-15 18:20:19 -0400310BackupDataReader::ReadEntityData(void* data, size_t size)
311{
312 if (m_status != NO_ERROR) {
Joe Onorato5d605dc2009-06-18 18:23:43 -0700313 return -1;
Joe Onorato2e1da322009-05-15 18:20:19 -0400314 }
Joe Onorato5f15d152009-06-16 16:31:35 -0400315 int remaining = m_dataEndPos - m_pos;
Joe Onoratoefd0fab2009-06-17 16:20:55 -0700316 //LOGD("ReadEntityData size=%d m_pos=0x%x m_dataEndPos=0x%x remaining=%d\n",
317 // size, m_pos, m_dataEndPos, remaining);
Joe Onorato5f15d152009-06-16 16:31:35 -0400318 if (remaining <= 0) {
319 return 0;
320 }
Joe Onorato06290a42009-06-18 20:10:37 -0700321 if (((int)size) > remaining) {
Joe Onorato5d605dc2009-06-18 18:23:43 -0700322 size = remaining;
323 }
324 //LOGD(" reading %d bytes", size);
Joe Onorato2e1da322009-05-15 18:20:19 -0400325 int amt = read(m_fd, data, size);
Joe Onorato5d605dc2009-06-18 18:23:43 -0700326 if (amt < 0) {
327 m_status = errno;
328 return -1;
329 }
330 m_pos += amt;
Joe Onoratoefd0fab2009-06-17 16:20:55 -0700331 return amt;
Joe Onorato2e1da322009-05-15 18:20:19 -0400332}
333
334status_t
Joe Onorato2e1da322009-05-15 18:20:19 -0400335BackupDataReader::skip_padding()
336{
337 ssize_t amt;
338 ssize_t paddingSize;
339
340 paddingSize = padding_extra(m_pos);
341 if (paddingSize > 0) {
342 uint32_t padding;
343 amt = read(m_fd, &padding, paddingSize);
344 CHECK_SIZE(amt, paddingSize);
345 m_pos += amt;
346 }
347 return NO_ERROR;
348}
349
350
Joe Onorato4535e402009-05-15 09:07:06 -0400351} // namespace android