blob: 502629be7cc96ad0b29be291eb7538b2e543ef37 [file] [log] [blame]
Andres Morales963295e2014-07-10 15:40:24 -07001/*
2 * Copyright (C) 2014 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
Andres Morales68d4acd2014-07-01 19:40:41 -070017package com.android.server;
18
19import android.Manifest;
Guang Zhu514c5802014-09-12 15:14:00 -070020import android.app.ActivityManager;
Andres Morales68d4acd2014-07-01 19:40:41 -070021import android.content.Context;
22import android.content.pm.PackageManager;
23import android.os.Binder;
24import android.os.IBinder;
25import android.os.RemoteException;
26import android.os.SystemProperties;
Andres Morales6429f312014-08-04 16:35:15 -070027import android.os.UserHandle;
Xiaohui Chenf0660782015-09-02 14:25:19 -070028import android.os.UserManager;
Steven Ngdc20ba62016-04-26 18:19:04 +010029import android.provider.Settings;
Andres Morales68d4acd2014-07-01 19:40:41 -070030import android.service.persistentdata.IPersistentDataBlockService;
Andres Morales74e9b182016-02-22 12:33:33 -080031import android.service.persistentdata.PersistentDataBlockManager;
Andres Morales963295e2014-07-10 15:40:24 -070032import android.util.Slog;
Guang Zhu514c5802014-09-12 15:14:00 -070033
Andres Morales68d4acd2014-07-01 19:40:41 -070034import com.android.internal.R;
Guang Zhu514c5802014-09-12 15:14:00 -070035
Andres Morales963295e2014-07-10 15:40:24 -070036import libcore.io.IoUtils;
Andres Morales68d4acd2014-07-01 19:40:41 -070037
38import java.io.DataInputStream;
39import java.io.DataOutputStream;
40import java.io.File;
41import java.io.FileInputStream;
42import java.io.FileNotFoundException;
43import java.io.FileOutputStream;
44import java.io.IOException;
45import java.nio.ByteBuffer;
46import java.nio.channels.FileChannel;
Andres Morales28301302014-11-12 07:56:46 -080047import java.security.MessageDigest;
48import java.security.NoSuchAlgorithmException;
49import java.util.Arrays;
Andres Morales68d4acd2014-07-01 19:40:41 -070050
51/**
52 * Service for reading and writing blocks to a persistent partition.
Andres Morales963295e2014-07-10 15:40:24 -070053 * This data will live across factory resets not initiated via the Settings UI.
54 * When a device is factory reset through Settings this data is wiped.
Andres Morales68d4acd2014-07-01 19:40:41 -070055 *
56 * Allows writing one block at a time. Namely, each time
57 * {@link android.service.persistentdata.IPersistentDataBlockService}.write(byte[] data)
58 * is called, it will overwite the data that was previously written on the block.
59 *
60 * Clients can query the size of the currently written block via
61 * {@link android.service.persistentdata.IPersistentDataBlockService}.getTotalDataSize().
62 *
63 * Clients can any number of bytes from the currently written block up to its total size by invoking
64 * {@link android.service.persistentdata.IPersistentDataBlockService}.read(byte[] data)
65 */
66public class PersistentDataBlockService extends SystemService {
67 private static final String TAG = PersistentDataBlockService.class.getSimpleName();
68
69 private static final String PERSISTENT_DATA_BLOCK_PROP = "ro.frp.pst";
70 private static final int HEADER_SIZE = 8;
Andres Morales963295e2014-07-10 15:40:24 -070071 // Magic number to mark block device as adhering to the format consumed by this service
Andres Morales28301302014-11-12 07:56:46 -080072 private static final int PARTITION_TYPE_MARKER = 0x19901873;
Andres Morales963295e2014-07-10 15:40:24 -070073 // Limit to 100k as blocks larger than this might cause strain on Binder.
Andres Morales963295e2014-07-10 15:40:24 -070074 private static final int MAX_DATA_BLOCK_SIZE = 1024 * 100;
Andres Morales28301302014-11-12 07:56:46 -080075 public static final int DIGEST_SIZE_BYTES = 32;
Andres Morales5ca4cc52015-03-19 16:37:54 -070076 private static final String OEM_UNLOCK_PROP = "sys.oem_unlock_allowed";
Andres Morales74e9b182016-02-22 12:33:33 -080077 private static final String FLASH_LOCK_PROP = "ro.boot.flash.locked";
78 private static final String FLASH_LOCK_LOCKED = "1";
79 private static final String FLASH_LOCK_UNLOCKED = "0";
Andres Morales68d4acd2014-07-01 19:40:41 -070080
81 private final Context mContext;
82 private final String mDataBlockFile;
Andres Morales963295e2014-07-10 15:40:24 -070083 private final Object mLock = new Object();
Andres Morales6429f312014-08-04 16:35:15 -070084
Andres Moralesa31c23d2014-10-30 15:31:31 -070085 private int mAllowedUid = -1;
Andres Morales963295e2014-07-10 15:40:24 -070086 private long mBlockDeviceSize;
Andres Morales68d4acd2014-07-01 19:40:41 -070087
88 public PersistentDataBlockService(Context context) {
89 super(context);
90 mContext = context;
91 mDataBlockFile = SystemProperties.get(PERSISTENT_DATA_BLOCK_PROP);
Andres Morales963295e2014-07-10 15:40:24 -070092 mBlockDeviceSize = -1; // Load lazily
Xiaohui Chenf0660782015-09-02 14:25:19 -070093 mAllowedUid = getAllowedUid(UserHandle.USER_SYSTEM);
Andres Morales6429f312014-08-04 16:35:15 -070094 }
95
Andres Moralesa31c23d2014-10-30 15:31:31 -070096 private int getAllowedUid(int userHandle) {
Andres Morales6429f312014-08-04 16:35:15 -070097 String allowedPackage = mContext.getResources()
Andres Morales68d4acd2014-07-01 19:40:41 -070098 .getString(R.string.config_persistentDataPackageName);
99 PackageManager pm = mContext.getPackageManager();
100 int allowedUid = -1;
101 try {
Jeff Sharkeyc5967e92016-01-07 18:50:29 -0700102 allowedUid = pm.getPackageUidAsUser(allowedPackage,
103 PackageManager.MATCH_SYSTEM_ONLY, userHandle);
Andres Morales68d4acd2014-07-01 19:40:41 -0700104 } catch (PackageManager.NameNotFoundException e) {
105 // not expected
Andres Morales963295e2014-07-10 15:40:24 -0700106 Slog.e(TAG, "not able to find package " + allowedPackage, e);
Andres Morales68d4acd2014-07-01 19:40:41 -0700107 }
Andres Moralesa31c23d2014-10-30 15:31:31 -0700108 return allowedUid;
Andres Morales68d4acd2014-07-01 19:40:41 -0700109 }
110
111 @Override
112 public void onStart() {
Andres Morales28301302014-11-12 07:56:46 -0800113 enforceChecksumValidity();
Andres Morales1ce7d172015-01-07 14:24:57 -0800114 formatIfOemUnlockEnabled();
Andres Morales68d4acd2014-07-01 19:40:41 -0700115 publishBinderService(Context.PERSISTENT_DATA_BLOCK_SERVICE, mService);
116 }
117
Andres Morales1ce7d172015-01-07 14:24:57 -0800118 private void formatIfOemUnlockEnabled() {
Andres Morales5ca4cc52015-03-19 16:37:54 -0700119 boolean enabled = doGetOemUnlockEnabled();
120 if (enabled) {
Andres Morales1ce7d172015-01-07 14:24:57 -0800121 synchronized (mLock) {
Andres Moralesc8f952c2015-03-19 08:34:55 -0700122 formatPartitionLocked(true);
Andres Morales1ce7d172015-01-07 14:24:57 -0800123 }
124 }
Andres Morales5ca4cc52015-03-19 16:37:54 -0700125
126 SystemProperties.set(OEM_UNLOCK_PROP, enabled ? "1" : "0");
Andres Morales1ce7d172015-01-07 14:24:57 -0800127 }
128
Andres Morales68d4acd2014-07-01 19:40:41 -0700129 private void enforceOemUnlockPermission() {
130 mContext.enforceCallingOrSelfPermission(
131 Manifest.permission.OEM_UNLOCK_STATE,
132 "Can't access OEM unlock state");
133 }
134
135 private void enforceUid(int callingUid) {
Andres Moralesa31c23d2014-10-30 15:31:31 -0700136 if (callingUid != mAllowedUid) {
Andres Morales68d4acd2014-07-01 19:40:41 -0700137 throw new SecurityException("uid " + callingUid + " not allowed to access PST");
138 }
139 }
140
Xiaohui Chenf0660782015-09-02 14:25:19 -0700141 private void enforceIsAdmin() {
142 final int userId = UserHandle.getCallingUserId();
143 final boolean isAdmin = UserManager.get(mContext).isUserAdmin(userId);
144 if (!isAdmin) {
145 throw new SecurityException(
146 "Only the Admin user is allowed to change OEM unlock state");
Andres Moralesa31c23d2014-10-30 15:31:31 -0700147 }
148 }
Andres Morales963295e2014-07-10 15:40:24 -0700149 private int getTotalDataSizeLocked(DataInputStream inputStream) throws IOException {
Andres Morales28301302014-11-12 07:56:46 -0800150 // skip over checksum
151 inputStream.skipBytes(DIGEST_SIZE_BYTES);
152
Andres Morales68d4acd2014-07-01 19:40:41 -0700153 int totalDataSize;
154 int blockId = inputStream.readInt();
Andres Morales963295e2014-07-10 15:40:24 -0700155 if (blockId == PARTITION_TYPE_MARKER) {
Andres Morales68d4acd2014-07-01 19:40:41 -0700156 totalDataSize = inputStream.readInt();
157 } else {
158 totalDataSize = 0;
159 }
160 return totalDataSize;
161 }
162
Andres Morales963295e2014-07-10 15:40:24 -0700163 private long getBlockDeviceSize() {
164 synchronized (mLock) {
165 if (mBlockDeviceSize == -1) {
166 mBlockDeviceSize = nativeGetBlockDeviceSize(mDataBlockFile);
Andres Morales68d4acd2014-07-01 19:40:41 -0700167 }
168 }
169
170 return mBlockDeviceSize;
171 }
172
Andres Morales28301302014-11-12 07:56:46 -0800173 private boolean enforceChecksumValidity() {
174 byte[] storedDigest = new byte[DIGEST_SIZE_BYTES];
175
176 synchronized (mLock) {
177 byte[] digest = computeDigestLocked(storedDigest);
178 if (digest == null || !Arrays.equals(storedDigest, digest)) {
179 Slog.i(TAG, "Formatting FRP partition...");
Andres Moralesc8f952c2015-03-19 08:34:55 -0700180 formatPartitionLocked(false);
Andres Morales28301302014-11-12 07:56:46 -0800181 return false;
182 }
183 }
184
185 return true;
186 }
187
188 private boolean computeAndWriteDigestLocked() {
189 byte[] digest = computeDigestLocked(null);
190 if (digest != null) {
191 DataOutputStream outputStream;
192 try {
193 outputStream = new DataOutputStream(
194 new FileOutputStream(new File(mDataBlockFile)));
195 } catch (FileNotFoundException e) {
196 Slog.e(TAG, "partition not available?", e);
197 return false;
198 }
199
200 try {
201 outputStream.write(digest, 0, DIGEST_SIZE_BYTES);
202 outputStream.flush();
203 } catch (IOException e) {
204 Slog.e(TAG, "failed to write block checksum", e);
205 return false;
206 } finally {
207 IoUtils.closeQuietly(outputStream);
208 }
209 return true;
210 } else {
211 return false;
212 }
213 }
214
215 private byte[] computeDigestLocked(byte[] storedDigest) {
216 DataInputStream inputStream;
217 try {
218 inputStream = new DataInputStream(new FileInputStream(new File(mDataBlockFile)));
219 } catch (FileNotFoundException e) {
220 Slog.e(TAG, "partition not available?", e);
221 return null;
222 }
223
224 MessageDigest md;
225 try {
226 md = MessageDigest.getInstance("SHA-256");
227 } catch (NoSuchAlgorithmException e) {
228 // won't ever happen -- every implementation is required to support SHA-256
229 Slog.e(TAG, "SHA-256 not supported?", e);
230 IoUtils.closeQuietly(inputStream);
231 return null;
232 }
233
234 try {
235 if (storedDigest != null && storedDigest.length == DIGEST_SIZE_BYTES) {
236 inputStream.read(storedDigest);
237 } else {
238 inputStream.skipBytes(DIGEST_SIZE_BYTES);
239 }
240
241 int read;
242 byte[] data = new byte[1024];
243 md.update(data, 0, DIGEST_SIZE_BYTES); // include 0 checksum in digest
244 while ((read = inputStream.read(data)) != -1) {
245 md.update(data, 0, read);
246 }
247 } catch (IOException e) {
248 Slog.e(TAG, "failed to read partition", e);
249 return null;
250 } finally {
251 IoUtils.closeQuietly(inputStream);
252 }
253
254 return md.digest();
255 }
256
Andres Moralesc8f952c2015-03-19 08:34:55 -0700257 private void formatPartitionLocked(boolean setOemUnlockEnabled) {
Andres Morales28301302014-11-12 07:56:46 -0800258 DataOutputStream outputStream;
259 try {
260 outputStream = new DataOutputStream(new FileOutputStream(new File(mDataBlockFile)));
261 } catch (FileNotFoundException e) {
262 Slog.e(TAG, "partition not available?", e);
263 return;
264 }
265
266 byte[] data = new byte[DIGEST_SIZE_BYTES];
267 try {
268 outputStream.write(data, 0, DIGEST_SIZE_BYTES);
269 outputStream.writeInt(PARTITION_TYPE_MARKER);
270 outputStream.writeInt(0); // data size
271 outputStream.flush();
272 } catch (IOException e) {
273 Slog.e(TAG, "failed to format block", e);
274 return;
275 } finally {
276 IoUtils.closeQuietly(outputStream);
277 }
278
Andres Moralesc8f952c2015-03-19 08:34:55 -0700279 doSetOemUnlockEnabledLocked(setOemUnlockEnabled);
Andres Morales28301302014-11-12 07:56:46 -0800280 computeAndWriteDigestLocked();
281 }
282
283 private void doSetOemUnlockEnabledLocked(boolean enabled) {
284 FileOutputStream outputStream;
285 try {
286 outputStream = new FileOutputStream(new File(mDataBlockFile));
287 } catch (FileNotFoundException e) {
288 Slog.e(TAG, "partition not available", e);
289 return;
290 }
291
292 try {
293 FileChannel channel = outputStream.getChannel();
294
295 channel.position(getBlockDeviceSize() - 1);
296
297 ByteBuffer data = ByteBuffer.allocate(1);
298 data.put(enabled ? (byte) 1 : (byte) 0);
299 data.flip();
300 channel.write(data);
301 outputStream.flush();
302 } catch (IOException e) {
303 Slog.e(TAG, "unable to access persistent partition", e);
304 return;
305 } finally {
Andres Morales5ca4cc52015-03-19 16:37:54 -0700306 SystemProperties.set(OEM_UNLOCK_PROP, enabled ? "1" : "0");
Andres Morales28301302014-11-12 07:56:46 -0800307 IoUtils.closeQuietly(outputStream);
308 }
309 }
310
Andres Morales1ce7d172015-01-07 14:24:57 -0800311 private boolean doGetOemUnlockEnabled() {
312 DataInputStream inputStream;
313 try {
314 inputStream = new DataInputStream(new FileInputStream(new File(mDataBlockFile)));
315 } catch (FileNotFoundException e) {
316 Slog.e(TAG, "partition not available");
317 return false;
318 }
319
320 try {
321 synchronized (mLock) {
322 inputStream.skip(getBlockDeviceSize() - 1);
323 return inputStream.readByte() != 0;
324 }
325 } catch (IOException e) {
326 Slog.e(TAG, "unable to access persistent partition", e);
327 return false;
328 } finally {
329 IoUtils.closeQuietly(inputStream);
330 }
331 }
332
Andres Morales963295e2014-07-10 15:40:24 -0700333 private native long nativeGetBlockDeviceSize(String path);
334 private native int nativeWipe(String path);
Andres Morales68d4acd2014-07-01 19:40:41 -0700335
336 private final IBinder mService = new IPersistentDataBlockService.Stub() {
337 @Override
338 public int write(byte[] data) throws RemoteException {
339 enforceUid(Binder.getCallingUid());
340
341 // Need to ensure we don't write over the last byte
Andres Morales963295e2014-07-10 15:40:24 -0700342 long maxBlockSize = getBlockDeviceSize() - HEADER_SIZE - 1;
343 if (data.length > maxBlockSize) {
344 // partition is ~500k so shouldn't be a problem to downcast
345 return (int) -maxBlockSize;
Andres Morales68d4acd2014-07-01 19:40:41 -0700346 }
347
348 DataOutputStream outputStream;
349 try {
350 outputStream = new DataOutputStream(new FileOutputStream(new File(mDataBlockFile)));
351 } catch (FileNotFoundException e) {
Andres Morales963295e2014-07-10 15:40:24 -0700352 Slog.e(TAG, "partition not available?", e);
Andres Morales68d4acd2014-07-01 19:40:41 -0700353 return -1;
354 }
355
356 ByteBuffer headerAndData = ByteBuffer.allocate(data.length + HEADER_SIZE);
Andres Morales963295e2014-07-10 15:40:24 -0700357 headerAndData.putInt(PARTITION_TYPE_MARKER);
Andres Morales68d4acd2014-07-01 19:40:41 -0700358 headerAndData.putInt(data.length);
359 headerAndData.put(data);
360
Andres Morales28301302014-11-12 07:56:46 -0800361 synchronized (mLock) {
Andres Morales68d4acd2014-07-01 19:40:41 -0700362 try {
Andres Morales28301302014-11-12 07:56:46 -0800363 byte[] checksum = new byte[DIGEST_SIZE_BYTES];
364 outputStream.write(checksum, 0, DIGEST_SIZE_BYTES);
365 outputStream.write(headerAndData.array());
366 outputStream.flush();
Andres Morales68d4acd2014-07-01 19:40:41 -0700367 } catch (IOException e) {
Andres Morales28301302014-11-12 07:56:46 -0800368 Slog.e(TAG, "failed writing to the persistent data block", e);
369 return -1;
370 } finally {
371 IoUtils.closeQuietly(outputStream);
372 }
373
374 if (computeAndWriteDigestLocked()) {
375 return data.length;
376 } else {
377 return -1;
Andres Morales68d4acd2014-07-01 19:40:41 -0700378 }
379 }
380 }
381
382 @Override
Andres Morales963295e2014-07-10 15:40:24 -0700383 public byte[] read() {
Andres Morales68d4acd2014-07-01 19:40:41 -0700384 enforceUid(Binder.getCallingUid());
Andres Morales28301302014-11-12 07:56:46 -0800385 if (!enforceChecksumValidity()) {
386 return new byte[0];
387 }
Andres Morales68d4acd2014-07-01 19:40:41 -0700388
389 DataInputStream inputStream;
390 try {
391 inputStream = new DataInputStream(new FileInputStream(new File(mDataBlockFile)));
392 } catch (FileNotFoundException e) {
Andres Morales963295e2014-07-10 15:40:24 -0700393 Slog.e(TAG, "partition not available?", e);
394 return null;
Andres Morales68d4acd2014-07-01 19:40:41 -0700395 }
396
397 try {
Andres Morales963295e2014-07-10 15:40:24 -0700398 synchronized (mLock) {
399 int totalDataSize = getTotalDataSizeLocked(inputStream);
400
401 if (totalDataSize == 0) {
402 return new byte[0];
403 }
404
405 byte[] data = new byte[totalDataSize];
406 int read = inputStream.read(data, 0, totalDataSize);
407 if (read < totalDataSize) {
408 // something went wrong, not returning potentially corrupt data
409 Slog.e(TAG, "failed to read entire data block. bytes read: " +
410 read + "/" + totalDataSize);
411 return null;
412 }
413 return data;
414 }
Andres Morales68d4acd2014-07-01 19:40:41 -0700415 } catch (IOException e) {
Andres Morales963295e2014-07-10 15:40:24 -0700416 Slog.e(TAG, "failed to read data", e);
417 return null;
Andres Morales68d4acd2014-07-01 19:40:41 -0700418 } finally {
419 try {
420 inputStream.close();
421 } catch (IOException e) {
Andres Morales963295e2014-07-10 15:40:24 -0700422 Slog.e(TAG, "failed to close OutputStream");
423 }
424 }
425 }
426
427 @Override
428 public void wipe() {
429 enforceOemUnlockPermission();
430
431 synchronized (mLock) {
432 int ret = nativeWipe(mDataBlockFile);
433
434 if (ret < 0) {
435 Slog.e(TAG, "failed to wipe persistent partition");
Andres Morales68d4acd2014-07-01 19:40:41 -0700436 }
437 }
438 }
439
440 @Override
Steven Ngdc20ba62016-04-26 18:19:04 +0100441 public void setOemUnlockEnabled(boolean enabled) throws SecurityException {
Guang Zhu514c5802014-09-12 15:14:00 -0700442 // do not allow monkey to flip the flag
443 if (ActivityManager.isUserAMonkey()) {
444 return;
445 }
Steven Ngdc20ba62016-04-26 18:19:04 +0100446 // Do not allow oem unlock modification if it has been disallowed.
447 if (Settings.Global.getInt(getContext().getContentResolver(),
448 Settings.Global.OEM_UNLOCK_DISALLOWED, 0) == 1) {
449 throw new SecurityException("OEM unlock has been disallowed.");
450 }
Andres Morales68d4acd2014-07-01 19:40:41 -0700451 enforceOemUnlockPermission();
Xiaohui Chenf0660782015-09-02 14:25:19 -0700452 enforceIsAdmin();
Andres Morales68d4acd2014-07-01 19:40:41 -0700453
Andres Morales28301302014-11-12 07:56:46 -0800454 synchronized (mLock) {
455 doSetOemUnlockEnabledLocked(enabled);
456 computeAndWriteDigestLocked();
Andres Morales68d4acd2014-07-01 19:40:41 -0700457 }
458 }
459
460 @Override
461 public boolean getOemUnlockEnabled() {
462 enforceOemUnlockPermission();
Andres Morales1ce7d172015-01-07 14:24:57 -0800463 return doGetOemUnlockEnabled();
Andres Morales68d4acd2014-07-01 19:40:41 -0700464 }
465
466 @Override
Andres Morales74e9b182016-02-22 12:33:33 -0800467 public int getFlashLockState() {
468 enforceOemUnlockPermission();
469 String locked = SystemProperties.get(FLASH_LOCK_PROP);
470 switch (locked) {
471 case FLASH_LOCK_LOCKED:
472 return PersistentDataBlockManager.FLASH_LOCK_LOCKED;
473 case FLASH_LOCK_UNLOCKED:
474 return PersistentDataBlockManager.FLASH_LOCK_UNLOCKED;
475 default:
476 return PersistentDataBlockManager.FLASH_LOCK_UNKNOWN;
477 }
478 }
479
480 @Override
Andres Morales68d4acd2014-07-01 19:40:41 -0700481 public int getDataBlockSize() {
Craig Lafayette66445a62015-03-27 09:01:43 -0400482 enforcePersistentDataBlockAccess();
Andres Morales68d4acd2014-07-01 19:40:41 -0700483
484 DataInputStream inputStream;
485 try {
486 inputStream = new DataInputStream(new FileInputStream(new File(mDataBlockFile)));
487 } catch (FileNotFoundException e) {
Andres Morales963295e2014-07-10 15:40:24 -0700488 Slog.e(TAG, "partition not available");
Andres Morales68d4acd2014-07-01 19:40:41 -0700489 return 0;
490 }
491
492 try {
Andres Morales963295e2014-07-10 15:40:24 -0700493 synchronized (mLock) {
494 return getTotalDataSizeLocked(inputStream);
495 }
Andres Morales68d4acd2014-07-01 19:40:41 -0700496 } catch (IOException e) {
Andres Morales963295e2014-07-10 15:40:24 -0700497 Slog.e(TAG, "error reading data block size");
Andres Morales68d4acd2014-07-01 19:40:41 -0700498 return 0;
499 } finally {
Andres Morales963295e2014-07-10 15:40:24 -0700500 IoUtils.closeQuietly(inputStream);
Andres Morales68d4acd2014-07-01 19:40:41 -0700501 }
502 }
Andres Morales963295e2014-07-10 15:40:24 -0700503
Craig Lafayette66445a62015-03-27 09:01:43 -0400504 private void enforcePersistentDataBlockAccess() {
505 if (mContext.checkCallingPermission(Manifest.permission.ACCESS_PDB_STATE)
506 != PackageManager.PERMISSION_GRANTED) {
507 enforceUid(Binder.getCallingUid());
508 }
509 }
510
Andres Morales963295e2014-07-10 15:40:24 -0700511 @Override
512 public long getMaximumDataBlockSize() {
513 long actualSize = getBlockDeviceSize() - HEADER_SIZE - 1;
514 return actualSize <= MAX_DATA_BLOCK_SIZE ? actualSize : MAX_DATA_BLOCK_SIZE;
515 }
Andres Morales68d4acd2014-07-01 19:40:41 -0700516 };
517}