| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 1 | /* | 
 | 2 | ** Copyright 2008, The Android Open Source Project | 
 | 3 | ** | 
| Dave Allison | d937073 | 2014-01-30 14:19:23 -0800 | [diff] [blame] | 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 | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 7 | ** | 
| Dave Allison | d937073 | 2014-01-30 14:19:23 -0800 | [diff] [blame] | 8 | **     http://www.apache.org/licenses/LICENSE-2.0 | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 9 | ** | 
| Dave Allison | d937073 | 2014-01-30 14:19:23 -0800 | [diff] [blame] | 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 | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 14 | ** limitations under the License. | 
 | 15 | */ | 
 | 16 |  | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 17 | #include "utils.h" | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 18 |  | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 19 | #include <errno.h> | 
 | 20 | #include <fcntl.h> | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 21 | #include <fts.h> | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 22 | #include <stdlib.h> | 
 | 23 | #include <sys/stat.h> | 
 | 24 | #include <sys/wait.h> | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 25 | #include <sys/xattr.h> | 
| Jeff Sharkey | ed909ae | 2017-03-22 21:27:40 -0600 | [diff] [blame] | 26 | #include <sys/statvfs.h> | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 27 |  | 
| Elliott Hughes | e4ec9eb | 2015-12-04 15:39:32 -0800 | [diff] [blame] | 28 | #include <android-base/logging.h> | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 29 | #include <android-base/stringprintf.h> | 
 | 30 | #include <cutils/fs.h> | 
| Jeff Sharkey | 871a8f2 | 2017-02-21 18:30:28 -0700 | [diff] [blame] | 31 | #include <cutils/properties.h> | 
| Mark Salyzyn | 7823e12 | 2016-09-29 08:08:05 -0700 | [diff] [blame] | 32 | #include <log/log.h> | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 33 | #include <private/android_filesystem_config.h> | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 34 |  | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 35 | #include "globals.h"  // extern variables. | 
 | 36 |  | 
 | 37 | #ifndef LOG_TAG | 
 | 38 | #define LOG_TAG "installd" | 
 | 39 | #endif | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 40 |  | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 41 | #define DEBUG_XATTRS 0 | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 42 |  | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 43 | using android::base::StringPrintf; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 44 |  | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 45 | namespace android { | 
 | 46 | namespace installd { | 
 | 47 |  | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 48 | /** | 
 | 49 |  * Check that given string is valid filename, and that it attempts no | 
 | 50 |  * parent or child directory traversal. | 
 | 51 |  */ | 
| Jeff Sharkey | 423e746 | 2016-12-09 18:18:43 -0700 | [diff] [blame] | 52 | bool is_valid_filename(const std::string& name) { | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 53 |     if (name.empty() || (name == ".") || (name == "..") | 
 | 54 |             || (name.find('/') != std::string::npos)) { | 
 | 55 |         return false; | 
 | 56 |     } else { | 
 | 57 |         return true; | 
 | 58 |     } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 59 | } | 
 | 60 |  | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 61 | static void check_package_name(const char* package_name) { | 
 | 62 |     CHECK(is_valid_filename(package_name)); | 
| Jeff Sharkey | 423e746 | 2016-12-09 18:18:43 -0700 | [diff] [blame] | 63 |     CHECK(is_valid_package_name(package_name)); | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 64 | } | 
 | 65 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 66 | /** | 
| Jeff Sharkey | d792118 | 2015-04-30 15:58:19 -0700 | [diff] [blame] | 67 |  * Create the path name where package app contents should be stored for | 
 | 68 |  * the given volume UUID and package name.  An empty UUID is assumed to | 
 | 69 |  * be internal storage. | 
 | 70 |  */ | 
 | 71 | std::string create_data_app_package_path(const char* volume_uuid, | 
 | 72 |         const char* package_name) { | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 73 |     check_package_name(package_name); | 
| Jeff Sharkey | d792118 | 2015-04-30 15:58:19 -0700 | [diff] [blame] | 74 |     return StringPrintf("%s/%s", | 
 | 75 |             create_data_app_path(volume_uuid).c_str(), package_name); | 
 | 76 | } | 
 | 77 |  | 
 | 78 | /** | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 79 |  * Create the path name where package data should be stored for the given | 
 | 80 |  * volume UUID, package name, and user ID. An empty UUID is assumed to be | 
 | 81 |  * internal storage. | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 82 |  */ | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 83 | std::string create_data_user_ce_package_path(const char* volume_uuid, | 
| Jeff Sharkey | d792118 | 2015-04-30 15:58:19 -0700 | [diff] [blame] | 84 |         userid_t user, const char* package_name) { | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 85 |     check_package_name(package_name); | 
| Jeff Sharkey | d792118 | 2015-04-30 15:58:19 -0700 | [diff] [blame] | 86 |     return StringPrintf("%s/%s", | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 87 |             create_data_user_ce_path(volume_uuid, user).c_str(), package_name); | 
 | 88 | } | 
 | 89 |  | 
 | 90 | std::string create_data_user_ce_package_path(const char* volume_uuid, userid_t user, | 
 | 91 |         const char* package_name, ino_t ce_data_inode) { | 
 | 92 |     // For testing purposes, rely on the inode when defined; this could be | 
 | 93 |     // optimized to use access() in the future. | 
 | 94 |     auto fallback = create_data_user_ce_package_path(volume_uuid, user, package_name); | 
 | 95 |     if (ce_data_inode != 0) { | 
 | 96 |         auto user_path = create_data_user_ce_path(volume_uuid, user); | 
 | 97 |         DIR* dir = opendir(user_path.c_str()); | 
 | 98 |         if (dir == nullptr) { | 
 | 99 |             PLOG(ERROR) << "Failed to opendir " << user_path; | 
 | 100 |             return fallback; | 
 | 101 |         } | 
 | 102 |  | 
 | 103 |         struct dirent* ent; | 
 | 104 |         while ((ent = readdir(dir))) { | 
 | 105 |             if (ent->d_ino == ce_data_inode) { | 
| Jeff Sharkey | 1d992f9 | 2016-04-13 13:45:47 -0600 | [diff] [blame] | 106 |                 auto resolved = StringPrintf("%s/%s", user_path.c_str(), ent->d_name); | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 107 | #if DEBUG_XATTRS | 
| Jeff Sharkey | 1d992f9 | 2016-04-13 13:45:47 -0600 | [diff] [blame] | 108 |                 if (resolved != fallback) { | 
 | 109 |                     LOG(DEBUG) << "Resolved path " << resolved << " for inode " << ce_data_inode | 
 | 110 |                             << " instead of " << fallback; | 
 | 111 |                 } | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 112 | #endif | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 113 |                 closedir(dir); | 
| Jeff Sharkey | 1d992f9 | 2016-04-13 13:45:47 -0600 | [diff] [blame] | 114 |                 return resolved; | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 115 |             } | 
 | 116 |         } | 
| Jeff Sharkey | 1d992f9 | 2016-04-13 13:45:47 -0600 | [diff] [blame] | 117 |         LOG(WARNING) << "Failed to resolve inode " << ce_data_inode << "; using " << fallback; | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 118 |         closedir(dir); | 
 | 119 |         return fallback; | 
 | 120 |     } else { | 
 | 121 |         return fallback; | 
 | 122 |     } | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 123 | } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 124 |  | 
| Jeff Sharkey | 63ec2d6 | 2015-11-09 13:10:36 -0800 | [diff] [blame] | 125 | std::string create_data_user_de_package_path(const char* volume_uuid, | 
 | 126 |         userid_t user, const char* package_name) { | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 127 |     check_package_name(package_name); | 
| Jeff Sharkey | 63ec2d6 | 2015-11-09 13:10:36 -0800 | [diff] [blame] | 128 |     return StringPrintf("%s/%s", | 
 | 129 |             create_data_user_de_path(volume_uuid, user).c_str(), package_name); | 
 | 130 | } | 
 | 131 |  | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 132 | int create_pkg_path(char path[PKG_PATH_MAX], const char *pkgname, | 
 | 133 |         const char *postfix, userid_t userid) { | 
| Jeff Sharkey | 423e746 | 2016-12-09 18:18:43 -0700 | [diff] [blame] | 134 |     if (!is_valid_package_name(pkgname)) { | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 135 |         path[0] = '\0'; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 136 |         return -1; | 
 | 137 |     } | 
 | 138 |  | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 139 |     std::string _tmp(create_data_user_ce_package_path(nullptr, userid, pkgname) + postfix); | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 140 |     const char* tmp = _tmp.c_str(); | 
 | 141 |     if (strlen(tmp) >= PKG_PATH_MAX) { | 
 | 142 |         path[0] = '\0'; | 
 | 143 |         return -1; | 
 | 144 |     } else { | 
 | 145 |         strcpy(path, tmp); | 
 | 146 |         return 0; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 147 |     } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 148 | } | 
 | 149 |  | 
| Jeff Sharkey | 41ea424 | 2015-04-09 11:34:03 -0700 | [diff] [blame] | 150 | std::string create_data_path(const char* volume_uuid) { | 
 | 151 |     if (volume_uuid == nullptr) { | 
 | 152 |         return "/data"; | 
| Jeff Sharkey | 871a8f2 | 2017-02-21 18:30:28 -0700 | [diff] [blame] | 153 |     } else if (!strcmp(volume_uuid, "TEST")) { | 
 | 154 |         CHECK(property_get_bool("ro.debuggable", false)); | 
 | 155 |         return "/data/local/tmp"; | 
| Jeff Sharkey | 41ea424 | 2015-04-09 11:34:03 -0700 | [diff] [blame] | 156 |     } else { | 
 | 157 |         CHECK(is_valid_filename(volume_uuid)); | 
 | 158 |         return StringPrintf("/mnt/expand/%s", volume_uuid); | 
 | 159 |     } | 
 | 160 | } | 
 | 161 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 162 | /** | 
| Jeff Sharkey | d792118 | 2015-04-30 15:58:19 -0700 | [diff] [blame] | 163 |  * Create the path name for app data. | 
 | 164 |  */ | 
 | 165 | std::string create_data_app_path(const char* volume_uuid) { | 
 | 166 |     return StringPrintf("%s/app", create_data_path(volume_uuid).c_str()); | 
 | 167 | } | 
 | 168 |  | 
 | 169 | /** | 
| Jeff Sharkey | abe4fe5 | 2013-07-10 16:55:46 -0700 | [diff] [blame] | 170 |  * Create the path name for user data for a certain userid. | 
| cjbao | 75d4e57 | 2017-04-12 00:12:24 +0800 | [diff] [blame] | 171 |  * Keep same implementation as vold to minimize path walking overhead | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 172 |  */ | 
| Jeff Sharkey | 2f720f7 | 2016-04-10 20:51:40 -0600 | [diff] [blame] | 173 | std::string create_data_user_ce_path(const char* volume_uuid, userid_t userid) { | 
| Jeff Sharkey | 41ea424 | 2015-04-09 11:34:03 -0700 | [diff] [blame] | 174 |     std::string data(create_data_path(volume_uuid)); | 
| cjbao | 75d4e57 | 2017-04-12 00:12:24 +0800 | [diff] [blame] | 175 |     if (volume_uuid == nullptr && userid == 0) { | 
 | 176 |         std::string legacy = StringPrintf("%s/data", data.c_str()); | 
 | 177 |         struct stat sb; | 
 | 178 |         if (lstat(legacy.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) { | 
 | 179 |             /* /data/data is dir, return /data/data for legacy system */ | 
 | 180 |             return legacy; | 
| Jeff Sharkey | 41ea424 | 2015-04-09 11:34:03 -0700 | [diff] [blame] | 181 |         } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 182 |     } | 
| cjbao | 75d4e57 | 2017-04-12 00:12:24 +0800 | [diff] [blame] | 183 |     return StringPrintf("%s/user/%u", data.c_str(), userid); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 184 | } | 
 | 185 |  | 
 | 186 | /** | 
| Jeff Sharkey | 63ec2d6 | 2015-11-09 13:10:36 -0800 | [diff] [blame] | 187 |  * Create the path name for device encrypted user data for a certain userid. | 
 | 188 |  */ | 
 | 189 | std::string create_data_user_de_path(const char* volume_uuid, userid_t userid) { | 
 | 190 |     std::string data(create_data_path(volume_uuid)); | 
 | 191 |     return StringPrintf("%s/user_de/%u", data.c_str(), userid); | 
 | 192 | } | 
 | 193 |  | 
 | 194 | /** | 
| Jeff Sharkey | abe4fe5 | 2013-07-10 16:55:46 -0700 | [diff] [blame] | 195 |  * Create the path name for media for a certain userid. | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 196 |  */ | 
| Jeff Sharkey | 41ea424 | 2015-04-09 11:34:03 -0700 | [diff] [blame] | 197 | std::string create_data_media_path(const char* volume_uuid, userid_t userid) { | 
 | 198 |     return StringPrintf("%s/media/%u", create_data_path(volume_uuid).c_str(), userid); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 199 | } | 
 | 200 |  | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 201 | std::string create_data_media_obb_path(const char* volume_uuid, const char* package_name) { | 
 | 202 |     return StringPrintf("%s/media/obb/%s", create_data_path(volume_uuid).c_str(), package_name); | 
 | 203 | } | 
 | 204 |  | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 205 | std::string create_data_media_package_path(const char* volume_uuid, userid_t userid, | 
 | 206 |         const char* data_type, const char* package_name) { | 
 | 207 |     return StringPrintf("%s/Android/%s/%s", create_data_media_path(volume_uuid, userid).c_str(), | 
 | 208 |             data_type, package_name); | 
 | 209 | } | 
 | 210 |  | 
| Jeff Sharkey | 379a12b | 2016-04-14 20:45:06 -0600 | [diff] [blame] | 211 | std::string create_data_misc_legacy_path(userid_t userid) { | 
 | 212 |     return StringPrintf("%s/misc/user/%u", create_data_path(nullptr).c_str(), userid); | 
 | 213 | } | 
 | 214 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 215 | std::string create_primary_cur_profile_dir_path(userid_t userid) { | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 216 |     return StringPrintf("%s/cur/%u", android_profiles_dir.path, userid); | 
 | 217 | } | 
 | 218 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 219 | std::string create_primary_current_profile_package_dir_path(userid_t user, | 
 | 220 |         const std::string& package_name) { | 
| Calin Juravle | 76268c5 | 2017-03-09 13:19:42 -0800 | [diff] [blame] | 221 |     check_package_name(package_name.c_str()); | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 222 |     return StringPrintf("%s/%s", | 
 | 223 |             create_primary_cur_profile_dir_path(user).c_str(), package_name.c_str()); | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 224 | } | 
 | 225 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 226 | std::string create_primary_ref_profile_dir_path() { | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 227 |     return StringPrintf("%s/ref", android_profiles_dir.path); | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 228 | } | 
 | 229 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 230 | std::string create_primary_reference_profile_package_dir_path(const std::string& package_name) { | 
| Calin Juravle | 76268c5 | 2017-03-09 13:19:42 -0800 | [diff] [blame] | 231 |     check_package_name(package_name.c_str()); | 
 | 232 |     return StringPrintf("%s/ref/%s", android_profiles_dir.path, package_name.c_str()); | 
| Calin Juravle | 6a1648e | 2016-02-01 12:12:16 +0000 | [diff] [blame] | 233 | } | 
 | 234 |  | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 235 | std::string create_data_dalvik_cache_path() { | 
 | 236 |     return "/data/dalvik-cache"; | 
 | 237 | } | 
 | 238 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 239 | // Keep profile paths in sync with ActivityThread and LoadedApk. | 
 | 240 | const std::string PROFILE_EXT = ".prof"; | 
 | 241 | const std::string PRIMARY_PROFILE_NAME = "primary" + PROFILE_EXT; | 
| Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 242 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 243 | std::string create_current_profile_path(userid_t user, const std::string& location, | 
 | 244 |         bool is_secondary_dex) { | 
 | 245 |     if (is_secondary_dex) { | 
 | 246 |         // Secondary dex profiles are stored next to the dex files using .prof extension. | 
 | 247 |         return StringPrintf("%s%s", location.c_str(), PROFILE_EXT.c_str()); | 
 | 248 |     } else { | 
 | 249 |         // Profiles for primary apks are under /data/misc/profiles/cur. | 
 | 250 |         std::string profile_dir = create_primary_current_profile_package_dir_path(user, location); | 
 | 251 |         return StringPrintf("%s/%s", profile_dir.c_str(), PRIMARY_PROFILE_NAME.c_str()); | 
 | 252 |     } | 
 | 253 | } | 
 | 254 |  | 
 | 255 | std::string create_reference_profile_path(const std::string& location, bool is_secondary_dex) { | 
 | 256 |     if (is_secondary_dex) { | 
 | 257 |         // Secondary dex reference profiles are stored next to the dex files under the oat folder. | 
 | 258 |         size_t dirIndex = location.rfind('/'); | 
 | 259 |         CHECK(dirIndex != std::string::npos) | 
 | 260 |                 << "Unexpected dir structure for secondary dex " << location; | 
 | 261 |  | 
 | 262 |         std::string dex_dir = location.substr(0, dirIndex); | 
 | 263 |         std::string dex_name = location.substr(dirIndex +1); | 
 | 264 |         return StringPrintf("%s/oat/%s%s", | 
 | 265 |                 dex_dir.c_str(), dex_name.c_str(), PROFILE_EXT.c_str()); | 
 | 266 |     } else { | 
 | 267 |         // Reference profiles for primary apks are stored in /data/misc/profile/ref. | 
 | 268 |         std::string profile_dir = create_primary_reference_profile_package_dir_path(location); | 
 | 269 |         return StringPrintf("%s/%s", profile_dir.c_str(), PRIMARY_PROFILE_NAME.c_str()); | 
 | 270 |     } | 
| Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 271 | } | 
 | 272 |  | 
| Jeff Sharkey | e363724 | 2015-04-08 20:56:42 -0700 | [diff] [blame] | 273 | std::vector<userid_t> get_known_users(const char* volume_uuid) { | 
 | 274 |     std::vector<userid_t> users; | 
 | 275 |  | 
 | 276 |     // We always have an owner | 
 | 277 |     users.push_back(0); | 
 | 278 |  | 
 | 279 |     std::string path(create_data_path(volume_uuid) + "/" + SECONDARY_USER_PREFIX); | 
 | 280 |     DIR* dir = opendir(path.c_str()); | 
 | 281 |     if (dir == NULL) { | 
 | 282 |         // Unable to discover other users, but at least return owner | 
 | 283 |         PLOG(ERROR) << "Failed to opendir " << path; | 
 | 284 |         return users; | 
 | 285 |     } | 
 | 286 |  | 
 | 287 |     struct dirent* ent; | 
 | 288 |     while ((ent = readdir(dir))) { | 
 | 289 |         if (ent->d_type != DT_DIR) { | 
 | 290 |             continue; | 
 | 291 |         } | 
 | 292 |  | 
 | 293 |         char* end; | 
 | 294 |         userid_t user = strtol(ent->d_name, &end, 10); | 
 | 295 |         if (*end == '\0' && user != 0) { | 
 | 296 |             LOG(DEBUG) << "Found valid user " << user; | 
 | 297 |             users.push_back(user); | 
 | 298 |         } | 
 | 299 |     } | 
 | 300 |     closedir(dir); | 
 | 301 |  | 
 | 302 |     return users; | 
 | 303 | } | 
 | 304 |  | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 305 | int calculate_tree_size(const std::string& path, int64_t* size, | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 306 |         int32_t include_gid, int32_t exclude_gid, bool exclude_apps) { | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 307 |     FTS *fts; | 
 | 308 |     FTSENT *p; | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 309 |     int64_t matchedSize = 0; | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 310 |     char *argv[] = { (char*) path.c_str(), nullptr }; | 
| Jeff Sharkey | b26786d | 2017-03-11 19:40:29 -0700 | [diff] [blame] | 311 |     if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) { | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 312 |         if (errno != ENOENT) { | 
 | 313 |             PLOG(ERROR) << "Failed to fts_open " << path; | 
 | 314 |         } | 
 | 315 |         return -1; | 
 | 316 |     } | 
 | 317 |     while ((p = fts_read(fts)) != NULL) { | 
 | 318 |         switch (p->fts_info) { | 
 | 319 |         case FTS_D: | 
 | 320 |         case FTS_DEFAULT: | 
 | 321 |         case FTS_F: | 
 | 322 |         case FTS_SL: | 
 | 323 |         case FTS_SLNONE: | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 324 |             int32_t uid = p->fts_statp->st_uid; | 
 | 325 |             int32_t gid = p->fts_statp->st_gid; | 
 | 326 |             int32_t user_uid = multiuser_get_app_id(uid); | 
 | 327 |             int32_t user_gid = multiuser_get_app_id(gid); | 
 | 328 |             if (exclude_apps && ((user_uid >= AID_APP_START && user_uid <= AID_APP_END) | 
 | 329 |                     || (user_gid >= AID_CACHE_GID_START && user_gid <= AID_CACHE_GID_END) | 
 | 330 |                     || (user_gid >= AID_SHARED_GID_START && user_gid <= AID_SHARED_GID_END))) { | 
 | 331 |                 // Don't traverse inside or measure | 
 | 332 |                 fts_set(fts, p, FTS_SKIP); | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 333 |                 break; | 
 | 334 |             } | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 335 |             if (include_gid != -1 && gid != include_gid) { | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 336 |                 break; | 
 | 337 |             } | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 338 |             if (exclude_gid != -1 && gid == exclude_gid) { | 
 | 339 |                 break; | 
 | 340 |             } | 
 | 341 |             matchedSize += (p->fts_statp->st_blocks * 512); | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 342 |             break; | 
 | 343 |         } | 
 | 344 |     } | 
 | 345 |     fts_close(fts); | 
| Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 346 | #if MEASURE_DEBUG | 
 | 347 |     if ((include_gid == -1) && (exclude_gid == -1)) { | 
 | 348 |         LOG(DEBUG) << "Measured " << path << " size " << matchedSize; | 
 | 349 |     } else { | 
 | 350 |         LOG(DEBUG) << "Measured " << path << " size " << matchedSize << "; include " << include_gid | 
 | 351 |                 << " exclude " << exclude_gid; | 
 | 352 |     } | 
 | 353 | #endif | 
 | 354 |     *size += matchedSize; | 
| Jeff Sharkey | 3dfae0c | 2016-12-12 17:32:56 -0700 | [diff] [blame] | 355 |     return 0; | 
 | 356 | } | 
 | 357 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 358 | int create_move_path(char path[PKG_PATH_MAX], | 
 | 359 |     const char* pkgname, | 
 | 360 |     const char* leaf, | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 361 |     userid_t userid ATTRIBUTE_UNUSED) | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 362 | { | 
 | 363 |     if ((android_data_dir.len + strlen(PRIMARY_USER_PREFIX) + strlen(pkgname) + strlen(leaf) + 1) | 
 | 364 |             >= PKG_PATH_MAX) { | 
 | 365 |         return -1; | 
 | 366 |     } | 
 | 367 |  | 
 | 368 |     sprintf(path, "%s%s%s/%s", android_data_dir.path, PRIMARY_USER_PREFIX, pkgname, leaf); | 
 | 369 |     return 0; | 
 | 370 | } | 
 | 371 |  | 
 | 372 | /** | 
 | 373 |  * Checks whether the package name is valid. Returns -1 on error and | 
 | 374 |  * 0 on success. | 
 | 375 |  */ | 
| Jeff Sharkey | 423e746 | 2016-12-09 18:18:43 -0700 | [diff] [blame] | 376 | bool is_valid_package_name(const std::string& packageName) { | 
| Jeff Sharkey | 367ace2 | 2017-03-07 22:12:03 -0700 | [diff] [blame] | 377 |     // This logic is borrowed from PackageParser.java | 
 | 378 |     bool hasSep = false; | 
 | 379 |     bool front = true; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 380 |  | 
| Jeff Sharkey | 367ace2 | 2017-03-07 22:12:03 -0700 | [diff] [blame] | 381 |     auto it = packageName.begin(); | 
 | 382 |     for (; it != packageName.end() && *it != '-'; it++) { | 
 | 383 |         char c = *it; | 
 | 384 |         if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) { | 
 | 385 |             front = false; | 
 | 386 |             continue; | 
 | 387 |         } | 
 | 388 |         if (!front) { | 
 | 389 |             if ((c >= '0' && c <= '9') || c == '_') { | 
 | 390 |                 continue; | 
 | 391 |             } | 
 | 392 |         } | 
 | 393 |         if (c == '.') { | 
 | 394 |             hasSep = true; | 
 | 395 |             front = true; | 
 | 396 |             continue; | 
 | 397 |         } | 
 | 398 |         LOG(WARNING) << "Bad package character " << c << " in " << packageName; | 
| Jeff Sharkey | 423e746 | 2016-12-09 18:18:43 -0700 | [diff] [blame] | 399 |         return false; | 
| Jeff Sharkey | c03de09 | 2015-04-07 18:14:05 -0700 | [diff] [blame] | 400 |     } | 
 | 401 |  | 
| Jeff Sharkey | ab7ac8d | 2017-03-08 12:39:46 -0700 | [diff] [blame] | 402 |     if (front) { | 
| Jeff Sharkey | 367ace2 | 2017-03-07 22:12:03 -0700 | [diff] [blame] | 403 |         LOG(WARNING) << "Missing separator in " << packageName; | 
 | 404 |         return false; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 405 |     } | 
 | 406 |  | 
| Jeff Sharkey | 367ace2 | 2017-03-07 22:12:03 -0700 | [diff] [blame] | 407 |     for (; it != packageName.end(); it++) { | 
 | 408 |         char c = *it; | 
 | 409 |         if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) continue; | 
 | 410 |         if ((c >= '0' && c <= '9') || c == '_' || c == '-' || c == '=') continue; | 
 | 411 |         LOG(WARNING) << "Bad suffix character " << c << " in " << packageName; | 
 | 412 |         return false; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 413 |     } | 
 | 414 |  | 
| Jeff Sharkey | 423e746 | 2016-12-09 18:18:43 -0700 | [diff] [blame] | 415 |     return true; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 416 | } | 
 | 417 |  | 
| Narayan Kamath | 3aee2c5 | 2014-06-10 13:16:47 +0100 | [diff] [blame] | 418 | static int _delete_dir_contents(DIR *d, | 
 | 419 |                                 int (*exclusion_predicate)(const char *name, const int is_dir)) | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 420 | { | 
 | 421 |     int result = 0; | 
 | 422 |     struct dirent *de; | 
 | 423 |     int dfd; | 
 | 424 |  | 
 | 425 |     dfd = dirfd(d); | 
 | 426 |  | 
 | 427 |     if (dfd < 0) return -1; | 
 | 428 |  | 
 | 429 |     while ((de = readdir(d))) { | 
 | 430 |         const char *name = de->d_name; | 
 | 431 |  | 
| Narayan Kamath | 3aee2c5 | 2014-06-10 13:16:47 +0100 | [diff] [blame] | 432 |             /* check using the exclusion predicate, if provided */ | 
 | 433 |         if (exclusion_predicate && exclusion_predicate(name, (de->d_type == DT_DIR))) { | 
 | 434 |             continue; | 
 | 435 |         } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 436 |  | 
 | 437 |         if (de->d_type == DT_DIR) { | 
| Chih-Hung Hsieh | 99d9fb1 | 2014-09-11 14:44:46 -0700 | [diff] [blame] | 438 |             int subfd; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 439 |             DIR *subdir; | 
 | 440 |  | 
 | 441 |                 /* always skip "." and ".." */ | 
 | 442 |             if (name[0] == '.') { | 
 | 443 |                 if (name[1] == 0) continue; | 
 | 444 |                 if ((name[1] == '.') && (name[2] == 0)) continue; | 
 | 445 |             } | 
 | 446 |  | 
| Nick Kralevich | 8b7acac | 2015-08-10 13:43:00 -0700 | [diff] [blame] | 447 |             subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 448 |             if (subfd < 0) { | 
 | 449 |                 ALOGE("Couldn't openat %s: %s\n", name, strerror(errno)); | 
 | 450 |                 result = -1; | 
 | 451 |                 continue; | 
 | 452 |             } | 
 | 453 |             subdir = fdopendir(subfd); | 
 | 454 |             if (subdir == NULL) { | 
 | 455 |                 ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno)); | 
 | 456 |                 close(subfd); | 
 | 457 |                 result = -1; | 
 | 458 |                 continue; | 
 | 459 |             } | 
| Narayan Kamath | 3aee2c5 | 2014-06-10 13:16:47 +0100 | [diff] [blame] | 460 |             if (_delete_dir_contents(subdir, exclusion_predicate)) { | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 461 |                 result = -1; | 
 | 462 |             } | 
 | 463 |             closedir(subdir); | 
 | 464 |             if (unlinkat(dfd, name, AT_REMOVEDIR) < 0) { | 
 | 465 |                 ALOGE("Couldn't unlinkat %s: %s\n", name, strerror(errno)); | 
 | 466 |                 result = -1; | 
 | 467 |             } | 
 | 468 |         } else { | 
 | 469 |             if (unlinkat(dfd, name, 0) < 0) { | 
 | 470 |                 ALOGE("Couldn't unlinkat %s: %s\n", name, strerror(errno)); | 
 | 471 |                 result = -1; | 
 | 472 |             } | 
 | 473 |         } | 
 | 474 |     } | 
 | 475 |  | 
 | 476 |     return result; | 
 | 477 | } | 
 | 478 |  | 
| Calin Juravle | b06f98a | 2016-03-28 15:11:01 +0100 | [diff] [blame] | 479 | int delete_dir_contents(const std::string& pathname, bool ignore_if_missing) { | 
 | 480 |     return delete_dir_contents(pathname.c_str(), 0, NULL, ignore_if_missing); | 
| Jeff Sharkey | ebf728f | 2015-11-18 14:15:17 -0700 | [diff] [blame] | 481 | } | 
 | 482 |  | 
| Calin Juravle | b06f98a | 2016-03-28 15:11:01 +0100 | [diff] [blame] | 483 | int delete_dir_contents_and_dir(const std::string& pathname, bool ignore_if_missing) { | 
 | 484 |     return delete_dir_contents(pathname.c_str(), 1, NULL, ignore_if_missing); | 
| Jeff Sharkey | ebf728f | 2015-11-18 14:15:17 -0700 | [diff] [blame] | 485 | } | 
 | 486 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 487 | int delete_dir_contents(const char *pathname, | 
 | 488 |                         int also_delete_dir, | 
| Calin Juravle | b06f98a | 2016-03-28 15:11:01 +0100 | [diff] [blame] | 489 |                         int (*exclusion_predicate)(const char*, const int), | 
 | 490 |                         bool ignore_if_missing) | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 491 | { | 
 | 492 |     int res = 0; | 
 | 493 |     DIR *d; | 
 | 494 |  | 
 | 495 |     d = opendir(pathname); | 
 | 496 |     if (d == NULL) { | 
| Calin Juravle | b06f98a | 2016-03-28 15:11:01 +0100 | [diff] [blame] | 497 |         if (ignore_if_missing && (errno == ENOENT)) { | 
 | 498 |             return 0; | 
 | 499 |         } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 500 |         ALOGE("Couldn't opendir %s: %s\n", pathname, strerror(errno)); | 
 | 501 |         return -errno; | 
 | 502 |     } | 
| Narayan Kamath | 3aee2c5 | 2014-06-10 13:16:47 +0100 | [diff] [blame] | 503 |     res = _delete_dir_contents(d, exclusion_predicate); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 504 |     closedir(d); | 
 | 505 |     if (also_delete_dir) { | 
 | 506 |         if (rmdir(pathname)) { | 
 | 507 |             ALOGE("Couldn't rmdir %s: %s\n", pathname, strerror(errno)); | 
 | 508 |             res = -1; | 
 | 509 |         } | 
 | 510 |     } | 
 | 511 |     return res; | 
 | 512 | } | 
 | 513 |  | 
 | 514 | int delete_dir_contents_fd(int dfd, const char *name) | 
 | 515 | { | 
 | 516 |     int fd, res; | 
 | 517 |     DIR *d; | 
 | 518 |  | 
| Nick Kralevich | 8b7acac | 2015-08-10 13:43:00 -0700 | [diff] [blame] | 519 |     fd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 520 |     if (fd < 0) { | 
 | 521 |         ALOGE("Couldn't openat %s: %s\n", name, strerror(errno)); | 
 | 522 |         return -1; | 
 | 523 |     } | 
 | 524 |     d = fdopendir(fd); | 
 | 525 |     if (d == NULL) { | 
 | 526 |         ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno)); | 
 | 527 |         close(fd); | 
 | 528 |         return -1; | 
 | 529 |     } | 
 | 530 |     res = _delete_dir_contents(d, 0); | 
 | 531 |     closedir(d); | 
 | 532 |     return res; | 
 | 533 | } | 
 | 534 |  | 
| Robin Lee | 60fd3fe | 2014-10-07 16:55:02 +0100 | [diff] [blame] | 535 | static int _copy_owner_permissions(int srcfd, int dstfd) | 
 | 536 | { | 
 | 537 |     struct stat st; | 
 | 538 |     if (fstat(srcfd, &st) != 0) { | 
 | 539 |         return -1; | 
 | 540 |     } | 
 | 541 |     if (fchmod(dstfd, st.st_mode) != 0) { | 
 | 542 |         return -1; | 
 | 543 |     } | 
 | 544 |     return 0; | 
 | 545 | } | 
 | 546 |  | 
 | 547 | static int _copy_dir_files(int sdfd, int ddfd, uid_t owner, gid_t group) | 
 | 548 | { | 
 | 549 |     int result = 0; | 
 | 550 |     if (_copy_owner_permissions(sdfd, ddfd) != 0) { | 
 | 551 |         ALOGE("_copy_dir_files failed to copy dir permissions\n"); | 
 | 552 |     } | 
 | 553 |     if (fchown(ddfd, owner, group) != 0) { | 
 | 554 |         ALOGE("_copy_dir_files failed to change dir owner\n"); | 
 | 555 |     } | 
 | 556 |  | 
 | 557 |     DIR *ds = fdopendir(sdfd); | 
 | 558 |     if (ds == NULL) { | 
 | 559 |         ALOGE("Couldn't fdopendir: %s\n", strerror(errno)); | 
 | 560 |         return -1; | 
 | 561 |     } | 
 | 562 |     struct dirent *de; | 
 | 563 |     while ((de = readdir(ds))) { | 
 | 564 |         if (de->d_type != DT_REG) { | 
 | 565 |             continue; | 
 | 566 |         } | 
 | 567 |  | 
 | 568 |         const char *name = de->d_name; | 
 | 569 |         int fsfd = openat(sdfd, name, O_RDONLY | O_NOFOLLOW | O_CLOEXEC); | 
 | 570 |         int fdfd = openat(ddfd, name, O_WRONLY | O_NOFOLLOW | O_CLOEXEC | O_CREAT, 0600); | 
 | 571 |         if (fsfd == -1 || fdfd == -1) { | 
 | 572 |             ALOGW("Couldn't copy %s: %s\n", name, strerror(errno)); | 
 | 573 |         } else { | 
 | 574 |             if (_copy_owner_permissions(fsfd, fdfd) != 0) { | 
 | 575 |                 ALOGE("Failed to change file permissions\n"); | 
 | 576 |             } | 
 | 577 |             if (fchown(fdfd, owner, group) != 0) { | 
 | 578 |                 ALOGE("Failed to change file owner\n"); | 
 | 579 |             } | 
 | 580 |  | 
 | 581 |             char buf[8192]; | 
 | 582 |             ssize_t size; | 
 | 583 |             while ((size = read(fsfd, buf, sizeof(buf))) > 0) { | 
 | 584 |                 write(fdfd, buf, size); | 
 | 585 |             } | 
 | 586 |             if (size < 0) { | 
 | 587 |                 ALOGW("Couldn't copy %s: %s\n", name, strerror(errno)); | 
 | 588 |                 result = -1; | 
 | 589 |             } | 
 | 590 |         } | 
 | 591 |         close(fdfd); | 
 | 592 |         close(fsfd); | 
 | 593 |     } | 
 | 594 |  | 
 | 595 |     return result; | 
 | 596 | } | 
 | 597 |  | 
 | 598 | int copy_dir_files(const char *srcname, | 
 | 599 |                    const char *dstname, | 
 | 600 |                    uid_t owner, | 
 | 601 |                    uid_t group) | 
 | 602 | { | 
 | 603 |     int res = 0; | 
 | 604 |     DIR *ds = NULL; | 
 | 605 |     DIR *dd = NULL; | 
 | 606 |  | 
 | 607 |     ds = opendir(srcname); | 
 | 608 |     if (ds == NULL) { | 
 | 609 |         ALOGE("Couldn't opendir %s: %s\n", srcname, strerror(errno)); | 
 | 610 |         return -errno; | 
 | 611 |     } | 
 | 612 |  | 
 | 613 |     mkdir(dstname, 0600); | 
 | 614 |     dd = opendir(dstname); | 
 | 615 |     if (dd == NULL) { | 
 | 616 |         ALOGE("Couldn't opendir %s: %s\n", dstname, strerror(errno)); | 
 | 617 |         closedir(ds); | 
 | 618 |         return -errno; | 
 | 619 |     } | 
 | 620 |  | 
 | 621 |     int sdfd = dirfd(ds); | 
 | 622 |     int ddfd = dirfd(dd); | 
 | 623 |     if (sdfd != -1 && ddfd != -1) { | 
 | 624 |         res = _copy_dir_files(sdfd, ddfd, owner, group); | 
 | 625 |     } else { | 
 | 626 |         res = -errno; | 
 | 627 |     } | 
 | 628 |     closedir(dd); | 
 | 629 |     closedir(ds); | 
 | 630 |     return res; | 
 | 631 | } | 
 | 632 |  | 
| Jeff Sharkey | a836c47 | 2017-04-02 23:29:30 -0600 | [diff] [blame] | 633 | int64_t data_disk_free(const std::string& data_path) { | 
| Jeff Sharkey | ed909ae | 2017-03-22 21:27:40 -0600 | [diff] [blame] | 634 |     struct statvfs sfs; | 
 | 635 |     if (statvfs(data_path.c_str(), &sfs) == 0) { | 
| Jeff Sharkey | a836c47 | 2017-04-02 23:29:30 -0600 | [diff] [blame] | 636 |         return sfs.f_bavail * sfs.f_frsize; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 637 |     } else { | 
| Jeff Sharkey | ed909ae | 2017-03-22 21:27:40 -0600 | [diff] [blame] | 638 |         PLOG(ERROR) << "Couldn't statvfs " << data_path; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 639 |         return -1; | 
 | 640 |     } | 
 | 641 | } | 
 | 642 |  | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 643 | int get_path_inode(const std::string& path, ino_t *inode) { | 
 | 644 |     struct stat buf; | 
 | 645 |     memset(&buf, 0, sizeof(buf)); | 
 | 646 |     if (stat(path.c_str(), &buf) != 0) { | 
 | 647 |         PLOG(WARNING) << "Failed to stat " << path; | 
 | 648 |         return -1; | 
 | 649 |     } else { | 
 | 650 |         *inode = buf.st_ino; | 
 | 651 |         return 0; | 
 | 652 |     } | 
 | 653 | } | 
 | 654 |  | 
 | 655 | /** | 
 | 656 |  * Write the inode of a specific child file into the given xattr on the | 
 | 657 |  * parent directory. This allows you to find the child later, even if its | 
 | 658 |  * name is encrypted. | 
 | 659 |  */ | 
 | 660 | int write_path_inode(const std::string& parent, const char* name, const char* inode_xattr) { | 
 | 661 |     ino_t inode = 0; | 
 | 662 |     uint64_t inode_raw = 0; | 
 | 663 |     auto path = StringPrintf("%s/%s", parent.c_str(), name); | 
 | 664 |  | 
 | 665 |     if (get_path_inode(path, &inode) != 0) { | 
 | 666 |         // Path probably doesn't exist yet; ignore | 
 | 667 |         return 0; | 
 | 668 |     } | 
 | 669 |  | 
 | 670 |     // Check to see if already set correctly | 
 | 671 |     if (getxattr(parent.c_str(), inode_xattr, &inode_raw, sizeof(inode_raw)) == sizeof(inode_raw)) { | 
 | 672 |         if (inode_raw == inode) { | 
 | 673 |             // Already set correctly; skip writing | 
 | 674 |             return 0; | 
 | 675 |         } else { | 
 | 676 |             PLOG(WARNING) << "Mismatched inode value; found " << inode | 
 | 677 |                     << " on disk but marked value was " << inode_raw << "; overwriting"; | 
 | 678 |         } | 
 | 679 |     } | 
 | 680 |  | 
 | 681 |     inode_raw = inode; | 
| Jeff Sharkey | 4ed6507 | 2016-07-22 11:38:54 -0600 | [diff] [blame] | 682 |     if (setxattr(parent.c_str(), inode_xattr, &inode_raw, sizeof(inode_raw), 0) != 0 && errno != EOPNOTSUPP) { | 
| Jeff Sharkey | 9a998f4 | 2016-07-14 18:16:22 -0600 | [diff] [blame] | 683 |         PLOG(ERROR) << "Failed to write xattr " << inode_xattr << " at " << parent; | 
 | 684 |         return -1; | 
 | 685 |     } else { | 
 | 686 |         return 0; | 
 | 687 |     } | 
 | 688 | } | 
 | 689 |  | 
 | 690 | /** | 
 | 691 |  * Read the inode of a specific child file from the given xattr on the | 
 | 692 |  * parent directory. Returns a currently valid path for that child, which | 
 | 693 |  * might have an encrypted name. | 
 | 694 |  */ | 
 | 695 | std::string read_path_inode(const std::string& parent, const char* name, const char* inode_xattr) { | 
 | 696 |     ino_t inode = 0; | 
 | 697 |     uint64_t inode_raw = 0; | 
 | 698 |     auto fallback = StringPrintf("%s/%s", parent.c_str(), name); | 
 | 699 |  | 
 | 700 |     // Lookup the inode value written earlier | 
 | 701 |     if (getxattr(parent.c_str(), inode_xattr, &inode_raw, sizeof(inode_raw)) == sizeof(inode_raw)) { | 
 | 702 |         inode = inode_raw; | 
 | 703 |     } | 
 | 704 |  | 
 | 705 |     // For testing purposes, rely on the inode when defined; this could be | 
 | 706 |     // optimized to use access() in the future. | 
 | 707 |     if (inode != 0) { | 
 | 708 |         DIR* dir = opendir(parent.c_str()); | 
 | 709 |         if (dir == nullptr) { | 
 | 710 |             PLOG(ERROR) << "Failed to opendir " << parent; | 
 | 711 |             return fallback; | 
 | 712 |         } | 
 | 713 |  | 
 | 714 |         struct dirent* ent; | 
 | 715 |         while ((ent = readdir(dir))) { | 
 | 716 |             if (ent->d_ino == inode) { | 
 | 717 |                 auto resolved = StringPrintf("%s/%s", parent.c_str(), ent->d_name); | 
 | 718 | #if DEBUG_XATTRS | 
 | 719 |                 if (resolved != fallback) { | 
 | 720 |                     LOG(DEBUG) << "Resolved path " << resolved << " for inode " << inode | 
 | 721 |                             << " instead of " << fallback; | 
 | 722 |                 } | 
 | 723 | #endif | 
 | 724 |                 closedir(dir); | 
 | 725 |                 return resolved; | 
 | 726 |             } | 
 | 727 |         } | 
 | 728 |         LOG(WARNING) << "Failed to resolve inode " << inode << "; using " << fallback; | 
 | 729 |         closedir(dir); | 
 | 730 |         return fallback; | 
 | 731 |     } else { | 
 | 732 |         return fallback; | 
 | 733 |     } | 
 | 734 | } | 
 | 735 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 736 | /** | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 737 |  * Validate that the path is valid in the context of the provided directory. | 
 | 738 |  * The path is allowed to have at most one subdirectory and no indirections | 
 | 739 |  * to top level directories (i.e. have ".."). | 
 | 740 |  */ | 
| Jeff Sharkey | e23a132 | 2015-04-06 16:19:39 -0700 | [diff] [blame] | 741 | static int validate_path(const dir_rec_t* dir, const char* path, int maxSubdirs) { | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 742 |     size_t dir_len = dir->len; | 
 | 743 |     const char* subdir = strchr(path + dir_len, '/'); | 
 | 744 |  | 
 | 745 |     // Only allow the path to have at most one subdirectory. | 
 | 746 |     if (subdir != NULL) { | 
 | 747 |         ++subdir; | 
| Jeff Sharkey | e23a132 | 2015-04-06 16:19:39 -0700 | [diff] [blame] | 748 |         if ((--maxSubdirs == 0) && strchr(subdir, '/') != NULL) { | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 749 |             ALOGE("invalid apk path '%s' (subdir?)\n", path); | 
 | 750 |             return -1; | 
 | 751 |         } | 
 | 752 |     } | 
 | 753 |  | 
 | 754 |     // Directories can't have a period directly after the directory markers to prevent "..". | 
 | 755 |     if ((path[dir_len] == '.') || ((subdir != NULL) && (*subdir == '.'))) { | 
 | 756 |         ALOGE("invalid apk path '%s' (trickery)\n", path); | 
 | 757 |         return -1; | 
 | 758 |     } | 
 | 759 |  | 
 | 760 |     return 0; | 
 | 761 | } | 
 | 762 |  | 
 | 763 | /** | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 764 |  * Checks whether a path points to a system app (.apk file). Returns 0 | 
 | 765 |  * if it is a system app or -1 if it is not. | 
 | 766 |  */ | 
 | 767 | int validate_system_app_path(const char* path) { | 
 | 768 |     size_t i; | 
 | 769 |  | 
 | 770 |     for (i = 0; i < android_system_dirs.count; i++) { | 
 | 771 |         const size_t dir_len = android_system_dirs.dirs[i].len; | 
 | 772 |         if (!strncmp(path, android_system_dirs.dirs[i].path, dir_len)) { | 
| Jeff Sharkey | e23a132 | 2015-04-06 16:19:39 -0700 | [diff] [blame] | 773 |             return validate_path(android_system_dirs.dirs + i, path, 1); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 774 |         } | 
 | 775 |     } | 
 | 776 |  | 
 | 777 |     return -1; | 
 | 778 | } | 
 | 779 |  | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 780 | bool validate_secondary_dex_path(const std::string& pkgname, const std::string& dex_path, | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 781 |         const char* volume_uuid, int uid, int storage_flag) { | 
 | 782 |     CHECK(storage_flag == FLAG_STORAGE_CE || storage_flag == FLAG_STORAGE_DE); | 
 | 783 |  | 
 | 784 |     std::string app_private_dir = storage_flag == FLAG_STORAGE_CE | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 785 |         ? create_data_user_ce_package_path( | 
 | 786 |                 volume_uuid, multiuser_get_user_id(uid), pkgname.c_str()) | 
 | 787 |         : create_data_user_de_package_path( | 
 | 788 |                 volume_uuid, multiuser_get_user_id(uid), pkgname.c_str()); | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 789 |     dir_rec_t dir; | 
 | 790 |     if (get_path_from_string(&dir, app_private_dir.c_str()) != 0) { | 
 | 791 |         LOG(WARNING) << "Could not get dir rec for " << app_private_dir; | 
 | 792 |         return false; | 
 | 793 |     } | 
 | 794 |     // Usually secondary dex files have a nested directory structure. | 
 | 795 |     // Pick at most 10 subdirectories when validating (arbitrary value). | 
 | 796 |     // If the secondary dex file is >10 directory nested then validation will | 
 | 797 |     // fail and the file will not be compiled. | 
| Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 798 |     return validate_path(&dir, dex_path.c_str(), /*max_subdirs*/ 10) == 0; | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 799 | } | 
 | 800 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 801 | /** | 
 | 802 |  * Get the contents of a environment variable that contains a path. Caller | 
 | 803 |  * owns the string that is inserted into the directory record. Returns | 
 | 804 |  * 0 on success and -1 on error. | 
 | 805 |  */ | 
 | 806 | int get_path_from_env(dir_rec_t* rec, const char* var) { | 
 | 807 |     const char* path = getenv(var); | 
 | 808 |     int ret = get_path_from_string(rec, path); | 
 | 809 |     if (ret < 0) { | 
 | 810 |         ALOGW("Problem finding value for environment variable %s\n", var); | 
 | 811 |     } | 
 | 812 |     return ret; | 
 | 813 | } | 
 | 814 |  | 
 | 815 | /** | 
 | 816 |  * Puts the string into the record as a directory. Appends '/' to the end | 
 | 817 |  * of all paths. Caller owns the string that is inserted into the directory | 
 | 818 |  * record. A null value will result in an error. | 
 | 819 |  * | 
 | 820 |  * Returns 0 on success and -1 on error. | 
 | 821 |  */ | 
 | 822 | int get_path_from_string(dir_rec_t* rec, const char* path) { | 
 | 823 |     if (path == NULL) { | 
 | 824 |         return -1; | 
 | 825 |     } else { | 
 | 826 |         const size_t path_len = strlen(path); | 
 | 827 |         if (path_len <= 0) { | 
 | 828 |             return -1; | 
 | 829 |         } | 
 | 830 |  | 
 | 831 |         // Make sure path is absolute. | 
 | 832 |         if (path[0] != '/') { | 
 | 833 |             return -1; | 
 | 834 |         } | 
 | 835 |  | 
 | 836 |         if (path[path_len - 1] == '/') { | 
 | 837 |             // Path ends with a forward slash. Make our own copy. | 
 | 838 |  | 
 | 839 |             rec->path = strdup(path); | 
 | 840 |             if (rec->path == NULL) { | 
 | 841 |                 return -1; | 
 | 842 |             } | 
 | 843 |  | 
 | 844 |             rec->len = path_len; | 
 | 845 |         } else { | 
 | 846 |             // Path does not end with a slash. Generate a new string. | 
 | 847 |             char *dst; | 
 | 848 |  | 
 | 849 |             // Add space for slash and terminating null. | 
 | 850 |             size_t dst_size = path_len + 2; | 
 | 851 |  | 
| Jeff Sharkey | 1980380 | 2015-04-07 12:44:51 -0700 | [diff] [blame] | 852 |             rec->path = (char*) malloc(dst_size); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 853 |             if (rec->path == NULL) { | 
 | 854 |                 return -1; | 
 | 855 |             } | 
 | 856 |  | 
 | 857 |             dst = rec->path; | 
 | 858 |  | 
 | 859 |             if (append_and_increment(&dst, path, &dst_size) < 0 | 
 | 860 |                     || append_and_increment(&dst, "/", &dst_size)) { | 
 | 861 |                 ALOGE("Error canonicalizing path"); | 
 | 862 |                 return -1; | 
 | 863 |             } | 
 | 864 |  | 
 | 865 |             rec->len = dst - rec->path; | 
 | 866 |         } | 
 | 867 |     } | 
 | 868 |     return 0; | 
 | 869 | } | 
 | 870 |  | 
 | 871 | int copy_and_append(dir_rec_t* dst, const dir_rec_t* src, const char* suffix) { | 
 | 872 |     dst->len = src->len + strlen(suffix); | 
 | 873 |     const size_t dstSize = dst->len + 1; | 
 | 874 |     dst->path = (char*) malloc(dstSize); | 
 | 875 |  | 
 | 876 |     if (dst->path == NULL | 
 | 877 |             || snprintf(dst->path, dstSize, "%s%s", src->path, suffix) | 
 | 878 |                     != (ssize_t) dst->len) { | 
 | 879 |         ALOGE("Could not allocate memory to hold appended path; aborting\n"); | 
 | 880 |         return -1; | 
 | 881 |     } | 
 | 882 |  | 
 | 883 |     return 0; | 
 | 884 | } | 
 | 885 |  | 
 | 886 | /** | 
| Narayan Kamath | d845c96 | 2015-06-04 13:20:27 +0100 | [diff] [blame] | 887 |  * Check whether path points to a valid path for an APK file. The path must | 
 | 888 |  * begin with a whitelisted prefix path and must be no deeper than |maxSubdirs| within | 
 | 889 |  * that path. Returns -1 when an invalid path is encountered and 0 when a valid path | 
 | 890 |  * is encountered. | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 891 |  */ | 
| Narayan Kamath | d845c96 | 2015-06-04 13:20:27 +0100 | [diff] [blame] | 892 | static int validate_apk_path_internal(const char *path, int maxSubdirs) { | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 893 |     const dir_rec_t* dir = NULL; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 894 |     if (!strncmp(path, android_app_dir.path, android_app_dir.len)) { | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 895 |         dir = &android_app_dir; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 896 |     } else if (!strncmp(path, android_app_private_dir.path, android_app_private_dir.len)) { | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 897 |         dir = &android_app_private_dir; | 
| Todd Kennedy | 5c1a910 | 2015-11-23 15:18:10 -0800 | [diff] [blame] | 898 |     } else if (!strncmp(path, android_app_ephemeral_dir.path, android_app_ephemeral_dir.len)) { | 
 | 899 |         dir = &android_app_ephemeral_dir; | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 900 |     } else if (!strncmp(path, android_asec_dir.path, android_asec_dir.len)) { | 
| Calin Juravle | c597b6d | 2014-08-19 17:43:05 +0100 | [diff] [blame] | 901 |         dir = &android_asec_dir; | 
| Jeff Sharkey | e23a132 | 2015-04-06 16:19:39 -0700 | [diff] [blame] | 902 |     } else if (!strncmp(path, android_mnt_expand_dir.path, android_mnt_expand_dir.len)) { | 
 | 903 |         dir = &android_mnt_expand_dir; | 
| Narayan Kamath | d845c96 | 2015-06-04 13:20:27 +0100 | [diff] [blame] | 904 |         if (maxSubdirs < 2) { | 
 | 905 |             maxSubdirs = 2; | 
 | 906 |         } | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 907 |     } else { | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 908 |         return -1; | 
 | 909 |     } | 
 | 910 |  | 
| Jeff Sharkey | e23a132 | 2015-04-06 16:19:39 -0700 | [diff] [blame] | 911 |     return validate_path(dir, path, maxSubdirs); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 912 | } | 
 | 913 |  | 
| Narayan Kamath | d845c96 | 2015-06-04 13:20:27 +0100 | [diff] [blame] | 914 | int validate_apk_path(const char* path) { | 
 | 915 |     return validate_apk_path_internal(path, 1 /* maxSubdirs */); | 
 | 916 | } | 
 | 917 |  | 
 | 918 | int validate_apk_path_subdirs(const char* path) { | 
 | 919 |     return validate_apk_path_internal(path, 3 /* maxSubdirs */); | 
 | 920 | } | 
 | 921 |  | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 922 | int append_and_increment(char** dst, const char* src, size_t* dst_size) { | 
 | 923 |     ssize_t ret = strlcpy(*dst, src, *dst_size); | 
 | 924 |     if (ret < 0 || (size_t) ret >= *dst_size) { | 
 | 925 |         return -1; | 
 | 926 |     } | 
 | 927 |     *dst += ret; | 
 | 928 |     *dst_size -= ret; | 
 | 929 |     return 0; | 
 | 930 | } | 
 | 931 |  | 
| Jeff Sharkey | 1980380 | 2015-04-07 12:44:51 -0700 | [diff] [blame] | 932 | char *build_string2(const char *s1, const char *s2) { | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 933 |     if (s1 == NULL || s2 == NULL) return NULL; | 
 | 934 |  | 
 | 935 |     int len_s1 = strlen(s1); | 
 | 936 |     int len_s2 = strlen(s2); | 
 | 937 |     int len = len_s1 + len_s2 + 1; | 
| Jeff Sharkey | 1980380 | 2015-04-07 12:44:51 -0700 | [diff] [blame] | 938 |     char *result = (char *) malloc(len); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 939 |     if (result == NULL) return NULL; | 
 | 940 |  | 
 | 941 |     strcpy(result, s1); | 
 | 942 |     strcpy(result + len_s1, s2); | 
 | 943 |  | 
 | 944 |     return result; | 
 | 945 | } | 
 | 946 |  | 
| Jeff Sharkey | 1980380 | 2015-04-07 12:44:51 -0700 | [diff] [blame] | 947 | char *build_string3(const char *s1, const char *s2, const char *s3) { | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 948 |     if (s1 == NULL || s2 == NULL || s3 == NULL) return NULL; | 
 | 949 |  | 
 | 950 |     int len_s1 = strlen(s1); | 
 | 951 |     int len_s2 = strlen(s2); | 
 | 952 |     int len_s3 = strlen(s3); | 
 | 953 |     int len = len_s1 + len_s2 + len_s3 + 1; | 
| Jeff Sharkey | 1980380 | 2015-04-07 12:44:51 -0700 | [diff] [blame] | 954 |     char *result = (char *) malloc(len); | 
| Mike Lockwood | 94afecf | 2012-10-24 10:45:23 -0700 | [diff] [blame] | 955 |     if (result == NULL) return NULL; | 
 | 956 |  | 
 | 957 |     strcpy(result, s1); | 
 | 958 |     strcpy(result + len_s1, s2); | 
 | 959 |     strcpy(result + len_s1 + len_s2, s3); | 
 | 960 |  | 
 | 961 |     return result; | 
 | 962 | } | 
 | 963 |  | 
| Robin Lee | 095c763 | 2014-04-25 15:05:19 +0100 | [diff] [blame] | 964 | int ensure_config_user_dirs(userid_t userid) { | 
| Robin Lee | 095c763 | 2014-04-25 15:05:19 +0100 | [diff] [blame] | 965 |     // writable by system, readable by any app within the same user | 
| Robin Lee | 60fd3fe | 2014-10-07 16:55:02 +0100 | [diff] [blame] | 966 |     const int uid = multiuser_get_uid(userid, AID_SYSTEM); | 
 | 967 |     const int gid = multiuser_get_uid(userid, AID_EVERYBODY); | 
| Robin Lee | 095c763 | 2014-04-25 15:05:19 +0100 | [diff] [blame] | 968 |  | 
 | 969 |     // Ensure /data/misc/user/<userid> exists | 
| Jeff Sharkey | 379a12b | 2016-04-14 20:45:06 -0600 | [diff] [blame] | 970 |     auto path = create_data_misc_legacy_path(userid); | 
 | 971 |     return fs_prepare_dir(path.c_str(), 0750, uid, gid); | 
| Robin Lee | 095c763 | 2014-04-25 15:05:19 +0100 | [diff] [blame] | 972 | } | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 973 |  | 
 | 974 | int wait_child(pid_t pid) | 
 | 975 | { | 
 | 976 |     int status; | 
 | 977 |     pid_t got_pid; | 
 | 978 |  | 
 | 979 |     while (1) { | 
 | 980 |         got_pid = waitpid(pid, &status, 0); | 
 | 981 |         if (got_pid == -1 && errno == EINTR) { | 
 | 982 |             printf("waitpid interrupted, retrying\n"); | 
 | 983 |         } else { | 
 | 984 |             break; | 
 | 985 |         } | 
 | 986 |     } | 
 | 987 |     if (got_pid != pid) { | 
 | 988 |         ALOGW("waitpid failed: wanted %d, got %d: %s\n", | 
 | 989 |             (int) pid, (int) got_pid, strerror(errno)); | 
 | 990 |         return 1; | 
 | 991 |     } | 
 | 992 |  | 
 | 993 |     if (WIFEXITED(status) && WEXITSTATUS(status) == 0) { | 
 | 994 |         return 0; | 
 | 995 |     } else { | 
 | 996 |         return status;      /* always nonzero */ | 
 | 997 |     } | 
 | 998 | } | 
 | 999 |  | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 1000 | /** | 
 | 1001 |  * Prepare an app cache directory, which offers to fix-up the GID and | 
 | 1002 |  * directory mode flags during a platform upgrade. | 
 | 1003 |  * The app cache directory path will be 'parent'/'name'. | 
 | 1004 |  */ | 
 | 1005 | int prepare_app_cache_dir(const std::string& parent, const char* name, mode_t target_mode, | 
 | 1006 |         uid_t uid, gid_t gid) { | 
 | 1007 |     auto path = StringPrintf("%s/%s", parent.c_str(), name); | 
 | 1008 |     struct stat st; | 
 | 1009 |     if (stat(path.c_str(), &st) != 0) { | 
 | 1010 |         if (errno == ENOENT) { | 
 | 1011 |             // This is fine, just create it | 
 | 1012 |             if (fs_prepare_dir_strict(path.c_str(), target_mode, uid, gid) != 0) { | 
 | 1013 |                 PLOG(ERROR) << "Failed to prepare " << path; | 
 | 1014 |                 return -1; | 
 | 1015 |             } else { | 
 | 1016 |                 return 0; | 
 | 1017 |             } | 
 | 1018 |         } else { | 
 | 1019 |             PLOG(ERROR) << "Failed to stat " << path; | 
 | 1020 |             return -1; | 
 | 1021 |         } | 
 | 1022 |     } | 
 | 1023 |  | 
 | 1024 |     mode_t actual_mode = st.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO | S_ISGID); | 
 | 1025 |     if (st.st_uid != uid) { | 
 | 1026 |         // Mismatched UID is real trouble; we can't recover | 
 | 1027 |         LOG(ERROR) << "Mismatched UID at " << path << ": found " << st.st_uid | 
 | 1028 |                 << " but expected " << uid; | 
 | 1029 |         return -1; | 
 | 1030 |     } else if (st.st_gid == gid && actual_mode == target_mode) { | 
 | 1031 |         // Everything looks good! | 
 | 1032 |         return 0; | 
| Jeff Sharkey | e59c85c | 2017-04-02 21:53:14 -0600 | [diff] [blame] | 1033 |     } else { | 
 | 1034 |         // Mismatched GID/mode is recoverable; fall through to update | 
 | 1035 |         LOG(DEBUG) << "Mismatched cache GID/mode at " << path << ": found " << st.st_gid | 
 | 1036 |                 << " but expected " << gid; | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 1037 |     } | 
 | 1038 |  | 
 | 1039 |     // Directory is owned correctly, but GID or mode mismatch means it's | 
 | 1040 |     // probably a platform upgrade so we need to fix them | 
 | 1041 |     FTS *fts; | 
 | 1042 |     FTSENT *p; | 
 | 1043 |     char *argv[] = { (char*) path.c_str(), nullptr }; | 
| Jeff Sharkey | b26786d | 2017-03-11 19:40:29 -0700 | [diff] [blame] | 1044 |     if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL))) { | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 1045 |         PLOG(ERROR) << "Failed to fts_open " << path; | 
 | 1046 |         return -1; | 
 | 1047 |     } | 
 | 1048 |     while ((p = fts_read(fts)) != NULL) { | 
 | 1049 |         switch (p->fts_info) { | 
 | 1050 |         case FTS_DP: | 
| Jeff Sharkey | e12d596 | 2017-04-03 16:41:02 -0600 | [diff] [blame] | 1051 |             if (chmod(p->fts_path, target_mode) != 0) { | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 1052 |                 PLOG(WARNING) << "Failed to chmod " << p->fts_path; | 
 | 1053 |             } | 
 | 1054 |             // Intentional fall through to also set GID | 
 | 1055 |         case FTS_F: | 
| Jeff Sharkey | e12d596 | 2017-04-03 16:41:02 -0600 | [diff] [blame] | 1056 |             if (chown(p->fts_path, -1, gid) != 0) { | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 1057 |                 PLOG(WARNING) << "Failed to chown " << p->fts_path; | 
 | 1058 |             } | 
 | 1059 |             break; | 
 | 1060 |         case FTS_SL: | 
 | 1061 |         case FTS_SLNONE: | 
| Jeff Sharkey | e12d596 | 2017-04-03 16:41:02 -0600 | [diff] [blame] | 1062 |             if (lchown(p->fts_path, -1, gid) != 0) { | 
| Calin Juravle | 42451c0 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 1063 |                 PLOG(WARNING) << "Failed to chown " << p->fts_path; | 
 | 1064 |             } | 
 | 1065 |             break; | 
 | 1066 |         } | 
 | 1067 |     } | 
 | 1068 |     fts_close(fts); | 
 | 1069 |     return 0; | 
 | 1070 | } | 
 | 1071 |  | 
| Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 1072 | }  // namespace installd | 
 | 1073 | }  // namespace android |