blob: ae628e4bd214ec71d46758a472ca7b45786613ff [file] [log] [blame]
Paul Lawrence5f356482014-10-09 14:22:49 +00001/*
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
Yabin Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG ADB
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
Dan Albert59bcbe22015-01-26 17:49:17 -080021#include <fcntl.h>
22#include <inttypes.h>
23#include <stdarg.h>
Dan Albert59bcbe22015-01-26 17:49:17 -080024#include <stdio.h>
25#include <sys/stat.h>
Paul Lawrence5f356482014-10-09 14:22:49 +000026
Elliott Hughes8b249d22016-09-23 15:40:03 -070027#include "android-base/properties.h"
28#include "android-base/stringprintf.h"
Dan Albertdb6fe642015-03-19 15:21:08 -070029
30#include "adb.h"
Elliott Hughesfb596842015-05-01 17:04:38 -070031#include "adb_io.h"
Elliott Hughes8b249d22016-09-23 15:40:03 -070032#include "adb_unique_fd.h"
Dan Albert59bcbe22015-01-26 17:49:17 -080033#include "fs_mgr.h"
Elliott Hughesdedf7672015-03-16 21:58:32 +000034#include "remount_service.h"
Paul Lawrence5f356482014-10-09 14:22:49 +000035
Sami Tolvanen778f5002015-10-20 13:24:24 +010036#include "fec/io.h"
37
Paul Lawrence5f356482014-10-09 14:22:49 +000038struct fstab *fstab;
39
Dan Albert59bcbe22015-01-26 17:49:17 -080040#ifdef ALLOW_ADBD_DISABLE_VERITY
41static const bool kAllowDisableVerity = true;
42#else
43static const bool kAllowDisableVerity = false;
44#endif
45
Paul Lawrence8ba2b022014-12-03 15:31:57 -080046/* Turn verity on/off */
47static int set_verity_enabled_state(int fd, const char *block_device,
48 const char* mount_point, bool enable)
Paul Lawrence5f356482014-10-09 14:22:49 +000049{
Elliott Hughes689011f2015-05-11 11:55:25 -070050 if (!make_block_device_writable(block_device)) {
Elliott Hughesfb596842015-05-01 17:04:38 -070051 WriteFdFmt(fd, "Could not make block device %s writable (%s).\n",
52 block_device, strerror(errno));
Sami Tolvanen778f5002015-10-20 13:24:24 +010053 return -1;
Sami Tolvanen5638a1a2015-01-02 13:30:50 +000054 }
55
Sami Tolvanen778f5002015-10-20 13:24:24 +010056 fec::io fh(block_device, O_RDWR);
57
58 if (!fh) {
Elliott Hughesfb596842015-05-01 17:04:38 -070059 WriteFdFmt(fd, "Could not open block device %s (%s).\n", block_device, strerror(errno));
Sami Tolvanen778f5002015-10-20 13:24:24 +010060 WriteFdFmt(fd, "Maybe run adb root?\n");
61 return -1;
Paul Lawrence5f356482014-10-09 14:22:49 +000062 }
63
Sami Tolvanen778f5002015-10-20 13:24:24 +010064 fec_verity_metadata metadata;
65
66 if (!fh.get_verity_metadata(metadata)) {
67 WriteFdFmt(fd, "Couldn't find verity metadata!\n");
68 return -1;
Paul Lawrence5f356482014-10-09 14:22:49 +000069 }
70
Sami Tolvanen778f5002015-10-20 13:24:24 +010071 if (!enable && metadata.disabled) {
Elliott Hughesfb596842015-05-01 17:04:38 -070072 WriteFdFmt(fd, "Verity already disabled on %s\n", mount_point);
Sami Tolvanen778f5002015-10-20 13:24:24 +010073 return -1;
Paul Lawrence5f356482014-10-09 14:22:49 +000074 }
75
Sami Tolvanen778f5002015-10-20 13:24:24 +010076 if (enable && !metadata.disabled) {
Elliott Hughesfb596842015-05-01 17:04:38 -070077 WriteFdFmt(fd, "Verity already enabled on %s\n", mount_point);
Sami Tolvanen778f5002015-10-20 13:24:24 +010078 return -1;
Paul Lawrence8ba2b022014-12-03 15:31:57 -080079 }
80
Sami Tolvanen778f5002015-10-20 13:24:24 +010081 if (!fh.set_verity_status(enable)) {
Elliott Hughesfb596842015-05-01 17:04:38 -070082 WriteFdFmt(fd, "Could not set verity %s flag on device %s with error %s\n",
83 enable ? "enabled" : "disabled",
84 block_device, strerror(errno));
Sami Tolvanen778f5002015-10-20 13:24:24 +010085 return -1;
Paul Lawrence5f356482014-10-09 14:22:49 +000086 }
87
Elliott Hughesfb596842015-05-01 17:04:38 -070088 WriteFdFmt(fd, "Verity %s on %s\n", enable ? "enabled" : "disabled", mount_point);
Sami Tolvanen778f5002015-10-20 13:24:24 +010089 return 0;
Paul Lawrence5f356482014-10-09 14:22:49 +000090}
91
Elliott Hughes8b249d22016-09-23 15:40:03 -070092void set_verity_enabled_state_service(int fd, void* cookie) {
93 unique_fd closer(fd);
94
Paul Lawrence8ba2b022014-12-03 15:31:57 -080095 bool enable = (cookie != NULL);
Elliott Hughes8b249d22016-09-23 15:40:03 -070096 if (!kAllowDisableVerity) {
Elliott Hughesfb596842015-05-01 17:04:38 -070097 WriteFdFmt(fd, "%s-verity only works for userdebug builds\n",
98 enable ? "enable" : "disable");
Paul Lawrence5f356482014-10-09 14:22:49 +000099 }
100
Elliott Hughes8b249d22016-09-23 15:40:03 -0700101 if (!android::base::GetBoolProperty("ro.secure", false)) {
102 WriteFdFmt(fd, "verity not enabled - ENG build\n");
103 return;
104 }
105
106 if (!android::base::GetBoolProperty("ro.debuggable", false)) {
107 WriteFdFmt(fd, "verity cannot be disabled/enabled - USER build\n");
108 return;
109 }
110
111 std::string fstab_filename = "/fstab." + android::base::GetProperty("ro.hardware", "");
112
113 fstab = fs_mgr_read_fstab(fstab_filename.c_str());
114 if (!fstab) {
115 WriteFdFmt(fd, "Failed to open %s\nMaybe run adb root?\n", fstab_filename.c_str());
116 return;
117 }
118
119 // Loop through entries looking for ones that vold manages.
120 bool any_changed = false;
121 for (int i = 0; i < fstab->num_entries; i++) {
122 if (fs_mgr_is_verified(&fstab->recs[i])) {
123 if (!set_verity_enabled_state(fd, fstab->recs[i].blk_device,
124 fstab->recs[i].mount_point,
125 enable)) {
126 any_changed = true;
127 }
128 }
129 }
130
131 if (any_changed) {
132 WriteFdFmt(fd, "Now reboot your device for settings to take effect\n");
133 }
Paul Lawrence5f356482014-10-09 14:22:49 +0000134}