utils.cpp revision 871a8f236ef2a055b9955b47a342b2c44c020ef7
194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/*
294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood** Copyright 2008, The Android Open Source Project
394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood**
4d93707342a61e66bc3eb2145628158452f577f42Dave Allison** Licensed under the Apache License, Version 2.0 (the "License");
5d93707342a61e66bc3eb2145628158452f577f42Dave Allison** you may not use this file except in compliance with the License.
6d93707342a61e66bc3eb2145628158452f577f42Dave Allison** You may obtain a copy of the License at
794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood**
8d93707342a61e66bc3eb2145628158452f577f42Dave Allison**     http://www.apache.org/licenses/LICENSE-2.0
994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood**
10d93707342a61e66bc3eb2145628158452f577f42Dave Allison** Unless required by applicable law or agreed to in writing, software
11d93707342a61e66bc3eb2145628158452f577f42Dave Allison** distributed under the License is distributed on an "AS IS" BASIS,
12d93707342a61e66bc3eb2145628158452f577f42Dave Allison** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13d93707342a61e66bc3eb2145628158452f577f42Dave Allison** See the License for the specific language governing permissions and
1494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood** limitations under the License.
1594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood*/
1694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
1702d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include "utils.h"
1802d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
1902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <errno.h>
2002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <fcntl.h>
213dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey#include <fts.h>
2202d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <stdlib.h>
2302d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <sys/stat.h>
2402d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <sys/wait.h>
259a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey#include <sys/xattr.h>
2602d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
2702d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#if defined(__APPLE__)
2802d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <sys/mount.h>
2902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#else
3002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <sys/statfs.h>
3102d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#endif
3294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
33e4ec9eb7b4c452493589983970ba5ccc501728d1Elliott Hughes#include <android-base/logging.h>
3402d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <android-base/stringprintf.h>
3502d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <cutils/fs.h>
36871a8f236ef2a055b9955b47a342b2c44c020ef7Jeff Sharkey#include <cutils/properties.h>
377823e124e00576e20e47ec717cbe8bc89f0f2bf2Mark Salyzyn#include <log/log.h>
3802d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include <private/android_filesystem_config.h>
3902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
4002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#include "globals.h"  // extern variables.
4194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
4202d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#ifndef LOG_TAG
4302d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#define LOG_TAG "installd"
4402d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe#endif
459a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
46c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey#define CACHE_NOISY(x) //x
479a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey#define DEBUG_XATTRS 0
4894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
49c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkeyusing android::base::StringPrintf;
5094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
5102d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampenamespace android {
5202d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampenamespace installd {
5302d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
5494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
55c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey * Check that given string is valid filename, and that it attempts no
56c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey * parent or child directory traversal.
5794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
58423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkeybool is_valid_filename(const std::string& name) {
59c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey    if (name.empty() || (name == ".") || (name == "..")
60c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey            || (name.find('/') != std::string::npos)) {
61c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        return false;
6294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
63c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        return true;
6494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
65c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey}
6694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
676a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravlestatic void check_package_name(const char* package_name) {
686a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    CHECK(is_valid_filename(package_name));
69423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey    CHECK(is_valid_package_name(package_name));
706a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle}
716a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle
72c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey/**
73d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey * Create the path name where package app contents should be stored for
74d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey * the given volume UUID and package name.  An empty UUID is assumed to
75d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey * be internal storage.
76d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey */
77d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkeystd::string create_data_app_package_path(const char* volume_uuid,
78d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey        const char* package_name) {
796a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    check_package_name(package_name);
80d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey    return StringPrintf("%s/%s",
81d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey            create_data_app_path(volume_uuid).c_str(), package_name);
82d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey}
83d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey
84d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey/**
85c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey * Create the path name where package data should be stored for the given
86c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey * volume UUID, package name, and user ID. An empty UUID is assumed to be
87c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey * internal storage.
88c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey */
892f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkeystd::string create_data_user_ce_package_path(const char* volume_uuid,
90d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey        userid_t user, const char* package_name) {
916a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    check_package_name(package_name);
92d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey    return StringPrintf("%s/%s",
932f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey            create_data_user_ce_path(volume_uuid, user).c_str(), package_name);
942f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey}
952f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey
962f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkeystd::string create_data_user_ce_package_path(const char* volume_uuid, userid_t user,
972f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        const char* package_name, ino_t ce_data_inode) {
982f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    // For testing purposes, rely on the inode when defined; this could be
992f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    // optimized to use access() in the future.
1002f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    auto fallback = create_data_user_ce_package_path(volume_uuid, user, package_name);
1012f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    if (ce_data_inode != 0) {
1022f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        auto user_path = create_data_user_ce_path(volume_uuid, user);
1032f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        DIR* dir = opendir(user_path.c_str());
1042f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        if (dir == nullptr) {
1052f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey            PLOG(ERROR) << "Failed to opendir " << user_path;
1062f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey            return fallback;
1072f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        }
1082f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey
1092f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        struct dirent* ent;
1102f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        while ((ent = readdir(dir))) {
1112f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey            if (ent->d_ino == ce_data_inode) {
1121d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey                auto resolved = StringPrintf("%s/%s", user_path.c_str(), ent->d_name);
1139a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey#if DEBUG_XATTRS
1141d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey                if (resolved != fallback) {
1151d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey                    LOG(DEBUG) << "Resolved path " << resolved << " for inode " << ce_data_inode
1161d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey                            << " instead of " << fallback;
1171d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey                }
1189a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey#endif
1192f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey                closedir(dir);
1201d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey                return resolved;
1212f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey            }
1222f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        }
1231d992f9f7886f98e46f98430d6c1d061cc31fdb3Jeff Sharkey        LOG(WARNING) << "Failed to resolve inode " << ce_data_inode << "; using " << fallback;
1242f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        closedir(dir);
1252f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        return fallback;
1262f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    } else {
1272f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey        return fallback;
1282f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    }
129c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey}
13094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
13163ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkeystd::string create_data_user_de_package_path(const char* volume_uuid,
13263ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey        userid_t user, const char* package_name) {
1336a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    check_package_name(package_name);
13463ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey    return StringPrintf("%s/%s",
13563ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey            create_data_user_de_path(volume_uuid, user).c_str(), package_name);
13663ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey}
13763ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey
138c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkeyint create_pkg_path(char path[PKG_PATH_MAX], const char *pkgname,
139c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        const char *postfix, userid_t userid) {
140423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey    if (!is_valid_package_name(pkgname)) {
141c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        path[0] = '\0';
14294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
14394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
14494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
1452f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkey    std::string _tmp(create_data_user_ce_package_path(nullptr, userid, pkgname) + postfix);
146c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey    const char* tmp = _tmp.c_str();
147c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey    if (strlen(tmp) >= PKG_PATH_MAX) {
148c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        path[0] = '\0';
149c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        return -1;
150c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey    } else {
151c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        strcpy(path, tmp);
152c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey        return 0;
15394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
15494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
15594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
15641ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkeystd::string create_data_path(const char* volume_uuid) {
15741ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey    if (volume_uuid == nullptr) {
15841ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        return "/data";
159871a8f236ef2a055b9955b47a342b2c44c020ef7Jeff Sharkey    } else if (!strcmp(volume_uuid, "TEST")) {
160871a8f236ef2a055b9955b47a342b2c44c020ef7Jeff Sharkey        CHECK(property_get_bool("ro.debuggable", false));
161871a8f236ef2a055b9955b47a342b2c44c020ef7Jeff Sharkey        return "/data/local/tmp";
16294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
16341ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        CHECK(is_valid_filename(volume_uuid));
16441ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        return StringPrintf("/mnt/expand/%s", volume_uuid);
16594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
16641ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey}
16794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
16841ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey/**
169d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey * Create the path name for app data.
170d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey */
171d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkeystd::string create_data_app_path(const char* volume_uuid) {
172d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey    return StringPrintf("%s/app", create_data_path(volume_uuid).c_str());
173d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey}
174d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey
175d792118c493806eeb24a8203f508e6e18fe93bd7Jeff Sharkey/**
17641ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey * Create the path name for user data for a certain userid.
17741ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey */
1782f720f7ec5c9d0b91defc85878e7330b10f8e89aJeff Sharkeystd::string create_data_user_ce_path(const char* volume_uuid, userid_t userid) {
17941ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey    std::string data(create_data_path(volume_uuid));
18041ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey    if (volume_uuid == nullptr) {
18141ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        if (userid == 0) {
18241ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey            return StringPrintf("%s/data", data.c_str());
18341ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        } else {
18441ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey            return StringPrintf("%s/user/%u", data.c_str(), userid);
18594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
18641ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey    } else {
18741ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        return StringPrintf("%s/user/%u", data.c_str(), userid);
18894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
18994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
19094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
19194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
19263ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey * Create the path name for device encrypted user data for a certain userid.
19363ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey */
19463ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkeystd::string create_data_user_de_path(const char* volume_uuid, userid_t userid) {
19563ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey    std::string data(create_data_path(volume_uuid));
19663ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey    return StringPrintf("%s/user_de/%u", data.c_str(), userid);
19763ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey}
19863ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey
19963ec2d64196144b2d15d2baffedccfa011d6494fJeff Sharkey/**
200abe4fe5b46157ecd2a52d28abf938c816c3ce878Jeff Sharkey * Create the path name for media for a certain userid.
20194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
20241ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkeystd::string create_data_media_path(const char* volume_uuid, userid_t userid) {
20341ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey    return StringPrintf("%s/media/%u", create_data_path(volume_uuid).c_str(), userid);
20494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
20594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
206df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkeystd::string create_data_media_obb_path(const char* volume_uuid, const char* package_name) {
207df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    return StringPrintf("%s/media/obb/%s", create_data_path(volume_uuid).c_str(), package_name);
208df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey}
209df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey
2103dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkeystd::string create_data_media_package_path(const char* volume_uuid, userid_t userid,
2113dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        const char* data_type, const char* package_name) {
2123dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    return StringPrintf("%s/Android/%s/%s", create_data_media_path(volume_uuid, userid).c_str(),
2133dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey            data_type, package_name);
2143dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey}
2153dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey
216379a12b0072b322c7f86e690a8e8a220e500861cJeff Sharkeystd::string create_data_misc_legacy_path(userid_t userid) {
217379a12b0072b322c7f86e690a8e8a220e500861cJeff Sharkey    return StringPrintf("%s/misc/user/%u", create_data_path(nullptr).c_str(), userid);
218379a12b0072b322c7f86e690a8e8a220e500861cJeff Sharkey}
219379a12b0072b322c7f86e690a8e8a220e500861cJeff Sharkey
220df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkeystd::string create_data_user_profile_path(userid_t userid) {
2216a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    return StringPrintf("%s/cur/%u", android_profiles_dir.path, userid);
2226a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle}
2236a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle
2246a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravlestd::string create_data_user_profile_package_path(userid_t user, const char* package_name) {
2256a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    check_package_name(package_name);
226df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    return StringPrintf("%s/%s",create_data_user_profile_path(user).c_str(), package_name);
227df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey}
228df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey
229df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkeystd::string create_data_ref_profile_path() {
230df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    return StringPrintf("%s/ref", android_profiles_dir.path);
2316a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle}
2326a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle
2336a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravlestd::string create_data_ref_profile_package_path(const char* package_name) {
2346a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    check_package_name(package_name);
2356a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle    return StringPrintf("%s/ref/%s", android_profiles_dir.path, package_name);
2366a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle}
2376a1648e2f161cb1d7c46aa9d27e8062521a9f314Calin Juravle
2383dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkeystd::string create_data_dalvik_cache_path() {
2393dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    return "/data/dalvik-cache";
2403dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey}
2413dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey
2423dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkeystd::string create_data_misc_foreign_dex_path(userid_t userid) {
2433dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    return StringPrintf("/data/misc/profiles/cur/%d/foreign-dex", userid);
2443dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey}
2453dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey
24690aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkey// Keep profile paths in sync with ActivityThread.
24790aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkeyconstexpr const char* PRIMARY_PROFILE_NAME = "primary.prof";
24890aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkey
24990aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkeystd::string create_primary_profile(const std::string& profile_dir) {
25090aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkey    return StringPrintf("%s/%s", profile_dir.c_str(), PRIMARY_PROFILE_NAME);
25190aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkey}
25290aff26f0135379db19432ae90c40c0831ba5954Jeff Sharkey
253e36372423000a906bafae68844ebc6c42d09335aJeff Sharkeystd::vector<userid_t> get_known_users(const char* volume_uuid) {
254e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    std::vector<userid_t> users;
255e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey
256e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    // We always have an owner
257e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    users.push_back(0);
258e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey
259e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    std::string path(create_data_path(volume_uuid) + "/" + SECONDARY_USER_PREFIX);
260e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    DIR* dir = opendir(path.c_str());
261e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    if (dir == NULL) {
262e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        // Unable to discover other users, but at least return owner
263e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        PLOG(ERROR) << "Failed to opendir " << path;
264e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        return users;
265e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    }
266e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey
267e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    struct dirent* ent;
268e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    while ((ent = readdir(dir))) {
269e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        if (ent->d_type != DT_DIR) {
270e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey            continue;
271e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        }
272e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey
273e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        char* end;
274e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        userid_t user = strtol(ent->d_name, &end, 10);
275e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        if (*end == '\0' && user != 0) {
276e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey            LOG(DEBUG) << "Found valid user " << user;
277e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey            users.push_back(user);
278e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey        }
279e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    }
280e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    closedir(dir);
281e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey
282e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey    return users;
283e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey}
284e36372423000a906bafae68844ebc6c42d09335aJeff Sharkey
2853dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkeyint calculate_tree_size(const std::string& path, int64_t* size,
286df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey        int32_t include_gid, int32_t exclude_gid, bool exclude_apps) {
2873dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    FTS *fts;
2883dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    FTSENT *p;
289df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    int64_t matchedSize = 0;
2903dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    char *argv[] = { (char*) path.c_str(), nullptr };
2913dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_XDEV, NULL))) {
2923dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        if (errno != ENOENT) {
2933dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey            PLOG(ERROR) << "Failed to fts_open " << path;
2943dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        }
2953dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        return -1;
2963dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    }
2973dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    while ((p = fts_read(fts)) != NULL) {
2983dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        switch (p->fts_info) {
2993dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        case FTS_D:
3003dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        case FTS_DEFAULT:
3013dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        case FTS_F:
3023dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        case FTS_SL:
3033dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        case FTS_SLNONE:
304df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            int32_t uid = p->fts_statp->st_uid;
305df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            int32_t gid = p->fts_statp->st_gid;
306df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            int32_t user_uid = multiuser_get_app_id(uid);
307df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            int32_t user_gid = multiuser_get_app_id(gid);
308df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            if (exclude_apps && ((user_uid >= AID_APP_START && user_uid <= AID_APP_END)
309df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey                    || (user_gid >= AID_CACHE_GID_START && user_gid <= AID_CACHE_GID_END)
310df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey                    || (user_gid >= AID_SHARED_GID_START && user_gid <= AID_SHARED_GID_END))) {
311df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey                // Don't traverse inside or measure
312df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey                fts_set(fts, p, FTS_SKIP);
3133dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey                break;
3143dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey            }
315df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            if (include_gid != -1 && gid != include_gid) {
3163dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey                break;
3173dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey            }
318df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            if (exclude_gid != -1 && gid == exclude_gid) {
319df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey                break;
320df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            }
321df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey            matchedSize += (p->fts_statp->st_blocks * 512);
3223dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey            break;
3233dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey        }
3243dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    }
3253dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    fts_close(fts);
326df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey#if MEASURE_DEBUG
327df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    if ((include_gid == -1) && (exclude_gid == -1)) {
328df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey        LOG(DEBUG) << "Measured " << path << " size " << matchedSize;
329df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    } else {
330df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey        LOG(DEBUG) << "Measured " << path << " size " << matchedSize << "; include " << include_gid
331df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey                << " exclude " << exclude_gid;
332df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    }
333df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey#endif
334df2d754b38796e0c49c70e0a67f7d383e3079ff2Jeff Sharkey    *size += matchedSize;
3353dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey    return 0;
3363dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey}
3373dfae0c008576c873c4039bb4c2e54a6adf3720aJeff Sharkey
33894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint create_move_path(char path[PKG_PATH_MAX],
33994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const char* pkgname,
34094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const char* leaf,
34102d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    userid_t userid ATTRIBUTE_UNUSED)
34294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
34394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if ((android_data_dir.len + strlen(PRIMARY_USER_PREFIX) + strlen(pkgname) + strlen(leaf) + 1)
34494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            >= PKG_PATH_MAX) {
34594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
34694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
34794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
34894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    sprintf(path, "%s%s%s/%s", android_data_dir.path, PRIMARY_USER_PREFIX, pkgname, leaf);
34994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return 0;
35094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
35194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
35294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
35394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * Checks whether the package name is valid. Returns -1 on error and
35494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * 0 on success.
35594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
356423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkeybool is_valid_package_name(const std::string& packageName) {
357423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey    const char* pkgname = packageName.c_str();
35894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const char *x = pkgname;
35994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int alpha = -1;
36094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
361c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey    if (strlen(pkgname) > PKG_NAME_MAX) {
362423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey        return false;
363c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey    }
364c03de09173f98506e73e7cf7df21fe11795d4b24Jeff Sharkey
36594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    while (*x) {
36694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (isalnum(*x) || (*x == '_')) {
36794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                /* alphanumeric or underscore are fine */
36894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else if (*x == '.') {
36994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if ((x == pkgname) || (x[1] == '.') || (x[1] == 0)) {
37094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    /* periods must not be first, last, or doubled */
37194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("invalid package name '%s'\n", pkgname);
372423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey                return false;
37394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
37494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else if (*x == '-') {
37594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            /* Suffix -X is fine to let versioning of packages.
37694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood               But whatever follows should be alphanumeric.*/
37794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            alpha = 1;
37894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else {
37994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                /* anything not A-Z, a-z, 0-9, _, or . is invalid */
38094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            ALOGE("invalid package name '%s'\n", pkgname);
381423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey            return false;
38294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
38394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
38494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        x++;
38594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
38694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
38794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (alpha == 1) {
38894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // Skip current character
38994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        x++;
39094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        while (*x) {
39194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (!isalnum(*x)) {
39294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("invalid package name '%s' should include only numbers after -\n", pkgname);
393423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey                return false;
39494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
39594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            x++;
39694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
39794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
39894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
399423e746ac7d4b3a3d772dd0e01bdb9fd6029d439Jeff Sharkey    return true;
40094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
40194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
4023aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamathstatic int _delete_dir_contents(DIR *d,
4033aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath                                int (*exclusion_predicate)(const char *name, const int is_dir))
40494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
40594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int result = 0;
40694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    struct dirent *de;
40794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int dfd;
40894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
40994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    dfd = dirfd(d);
41094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
41194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (dfd < 0) return -1;
41294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
41394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    while ((de = readdir(d))) {
41494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        const char *name = de->d_name;
41594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
4163aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath            /* check using the exclusion predicate, if provided */
4173aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath        if (exclusion_predicate && exclusion_predicate(name, (de->d_type == DT_DIR))) {
4183aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath            continue;
4193aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath        }
42094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
42194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (de->d_type == DT_DIR) {
42299d9fb15b4a1eb534261ae81b2cf25aec4447bd0Chih-Hung Hsieh            int subfd;
42394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            DIR *subdir;
42494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
42594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                /* always skip "." and ".." */
42694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (name[0] == '.') {
42794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if (name[1] == 0) continue;
42894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if ((name[1] == '.') && (name[2] == 0)) continue;
42994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
43094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
4318b7acacc93930df9fa9e1ebea4a4394195b2332eNick Kralevich            subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
43294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (subfd < 0) {
43394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't openat %s: %s\n", name, strerror(errno));
43494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                result = -1;
43594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                continue;
43694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
43794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            subdir = fdopendir(subfd);
43894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (subdir == NULL) {
43994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno));
44094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                close(subfd);
44194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                result = -1;
44294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                continue;
44394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
4443aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath            if (_delete_dir_contents(subdir, exclusion_predicate)) {
44594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                result = -1;
44694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
44794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            closedir(subdir);
44894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (unlinkat(dfd, name, AT_REMOVEDIR) < 0) {
44994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't unlinkat %s: %s\n", name, strerror(errno));
45094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                result = -1;
45194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
45294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else {
45394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (unlinkat(dfd, name, 0) < 0) {
45494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't unlinkat %s: %s\n", name, strerror(errno));
45594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                result = -1;
45694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
45794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
45894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
45994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
46094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return result;
46194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
46294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
463b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravleint delete_dir_contents(const std::string& pathname, bool ignore_if_missing) {
464b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle    return delete_dir_contents(pathname.c_str(), 0, NULL, ignore_if_missing);
465ebf728fd43ab5c7d11a1f9e5fdc775d6740fae0aJeff Sharkey}
466ebf728fd43ab5c7d11a1f9e5fdc775d6740fae0aJeff Sharkey
467b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravleint delete_dir_contents_and_dir(const std::string& pathname, bool ignore_if_missing) {
468b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle    return delete_dir_contents(pathname.c_str(), 1, NULL, ignore_if_missing);
469ebf728fd43ab5c7d11a1f9e5fdc775d6740fae0aJeff Sharkey}
470ebf728fd43ab5c7d11a1f9e5fdc775d6740fae0aJeff Sharkey
47194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint delete_dir_contents(const char *pathname,
47294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        int also_delete_dir,
473b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle                        int (*exclusion_predicate)(const char*, const int),
474b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle                        bool ignore_if_missing)
47594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
47694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int res = 0;
47794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    DIR *d;
47894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
47994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    d = opendir(pathname);
48094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (d == NULL) {
481b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle        if (ignore_if_missing && (errno == ENOENT)) {
482b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle            return 0;
483b06f98aabc5381fd6366526d9b31b5d0345481b6Calin Juravle        }
48494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGE("Couldn't opendir %s: %s\n", pathname, strerror(errno));
48594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -errno;
48694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
4873aee2c5c749dc2589f001b26fae1ec958ec89524Narayan Kamath    res = _delete_dir_contents(d, exclusion_predicate);
48894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    closedir(d);
48994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (also_delete_dir) {
49094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (rmdir(pathname)) {
49194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            ALOGE("Couldn't rmdir %s: %s\n", pathname, strerror(errno));
49294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            res = -1;
49394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
49494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
49594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return res;
49694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
49794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
49894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint delete_dir_contents_fd(int dfd, const char *name)
49994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
50094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int fd, res;
50194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    DIR *d;
50294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
5038b7acacc93930df9fa9e1ebea4a4394195b2332eNick Kralevich    fd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
50494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (fd < 0) {
50594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGE("Couldn't openat %s: %s\n", name, strerror(errno));
50694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
50794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
50894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    d = fdopendir(fd);
50994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (d == NULL) {
51094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno));
51194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        close(fd);
51294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
51394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
51494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    res = _delete_dir_contents(d, 0);
51594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    closedir(d);
51694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return res;
51794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
51894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
51960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Leestatic int _copy_owner_permissions(int srcfd, int dstfd)
52060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee{
52160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    struct stat st;
52260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (fstat(srcfd, &st) != 0) {
52360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        return -1;
52460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
52560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (fchmod(dstfd, st.st_mode) != 0) {
52660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        return -1;
52760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
52860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    return 0;
52960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee}
53060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
53160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Leestatic int _copy_dir_files(int sdfd, int ddfd, uid_t owner, gid_t group)
53260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee{
53360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    int result = 0;
53460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (_copy_owner_permissions(sdfd, ddfd) != 0) {
53560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        ALOGE("_copy_dir_files failed to copy dir permissions\n");
53660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
53760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (fchown(ddfd, owner, group) != 0) {
53860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        ALOGE("_copy_dir_files failed to change dir owner\n");
53960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
54060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
54160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    DIR *ds = fdopendir(sdfd);
54260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (ds == NULL) {
54360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        ALOGE("Couldn't fdopendir: %s\n", strerror(errno));
54460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        return -1;
54560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
54660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    struct dirent *de;
54760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    while ((de = readdir(ds))) {
54860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        if (de->d_type != DT_REG) {
54960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            continue;
55060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        }
55160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
55260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        const char *name = de->d_name;
55360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        int fsfd = openat(sdfd, name, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
55460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        int fdfd = openat(ddfd, name, O_WRONLY | O_NOFOLLOW | O_CLOEXEC | O_CREAT, 0600);
55560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        if (fsfd == -1 || fdfd == -1) {
55660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            ALOGW("Couldn't copy %s: %s\n", name, strerror(errno));
55760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        } else {
55860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            if (_copy_owner_permissions(fsfd, fdfd) != 0) {
55960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                ALOGE("Failed to change file permissions\n");
56060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            }
56160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            if (fchown(fdfd, owner, group) != 0) {
56260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                ALOGE("Failed to change file owner\n");
56360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            }
56460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
56560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            char buf[8192];
56660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            ssize_t size;
56760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            while ((size = read(fsfd, buf, sizeof(buf))) > 0) {
56860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                write(fdfd, buf, size);
56960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            }
57060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            if (size < 0) {
57160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                ALOGW("Couldn't copy %s: %s\n", name, strerror(errno));
57260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                result = -1;
57360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee            }
57460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        }
57560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        close(fdfd);
57660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        close(fsfd);
57760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
57860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
57960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    return result;
58060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee}
58160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
58260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Leeint copy_dir_files(const char *srcname,
58360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                   const char *dstname,
58460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                   uid_t owner,
58560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee                   uid_t group)
58660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee{
58760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    int res = 0;
58860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    DIR *ds = NULL;
58960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    DIR *dd = NULL;
59060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
59160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    ds = opendir(srcname);
59260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (ds == NULL) {
59360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        ALOGE("Couldn't opendir %s: %s\n", srcname, strerror(errno));
59460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        return -errno;
59560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
59660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
59760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    mkdir(dstname, 0600);
59860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    dd = opendir(dstname);
59960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (dd == NULL) {
60060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        ALOGE("Couldn't opendir %s: %s\n", dstname, strerror(errno));
60160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        closedir(ds);
60260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        return -errno;
60360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
60460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
60560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    int sdfd = dirfd(ds);
60660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    int ddfd = dirfd(dd);
60760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    if (sdfd != -1 && ddfd != -1) {
60860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        res = _copy_dir_files(sdfd, ddfd, owner, group);
60960fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    } else {
61060fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee        res = -errno;
61160fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    }
61260fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    closedir(dd);
61360fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    closedir(ds);
61460fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    return res;
61560fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee}
61660fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee
61741ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkeyint64_t data_disk_free(const std::string& data_path)
61894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
61994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    struct statfs sfs;
62041ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey    if (statfs(data_path.c_str(), &sfs) == 0) {
62194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return sfs.f_bavail * sfs.f_bsize;
62294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
62341ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey        PLOG(ERROR) << "Couldn't statfs " << data_path;
62494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
62594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
62694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
62794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
62894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodcache_t* start_cache_collection()
62994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
63094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cache_t* cache = (cache_t*)calloc(1, sizeof(cache_t));
63194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return cache;
63294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
63394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
63494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood#define CACHE_BLOCK_SIZE (512*1024)
63594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
63694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic void* _cache_malloc(cache_t* cache, size_t len)
63794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
63894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    len = (len+3)&~3;
63994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (len > (CACHE_BLOCK_SIZE/2)) {
64094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // It doesn't make sense to try to put this allocation into one
64194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // of our blocks, because it is so big.  Instead, make a new dedicated
64294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // block for it.
64394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        int8_t* res = (int8_t*)malloc(len+sizeof(void*));
64494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (res == NULL) {
64594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            return NULL;
64694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
6479a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        CACHE_NOISY(ALOGI("Allocated large cache mem block: %p size %zu", res, len));
64894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // Link it into our list of blocks, not disrupting the current one.
64994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (cache->memBlocks == NULL) {
65094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            *(void**)res = NULL;
65194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache->memBlocks = res;
65294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else {
65394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            *(void**)res = *(void**)cache->memBlocks;
65494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            *(void**)cache->memBlocks = res;
65594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
65694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return res + sizeof(void*);
65794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
65894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int8_t* res = cache->curMemBlockAvail;
65994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int8_t* nextPos = res + len;
66094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (cache->memBlocks == NULL || nextPos > cache->curMemBlockEnd) {
66119803807cd7ae01868fcfa50305f4a7dd13765e2Jeff Sharkey        int8_t* newBlock = (int8_t*) malloc(CACHE_BLOCK_SIZE);
66294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (newBlock == NULL) {
66394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            return NULL;
66494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
66594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        CACHE_NOISY(ALOGI("Allocated new cache mem block: %p", newBlock));
66694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        *(void**)newBlock = cache->memBlocks;
66794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->memBlocks = newBlock;
66894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        res = cache->curMemBlockAvail = newBlock + sizeof(void*);
66994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->curMemBlockEnd = newBlock + CACHE_BLOCK_SIZE;
67094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        nextPos = res + len;
67194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
6729a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    CACHE_NOISY(ALOGI("cache_malloc: ret %p size %zu, block=%p, nextPos=%p",
67394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            res, len, cache->memBlocks, nextPos));
67494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cache->curMemBlockAvail = nextPos;
67594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return res;
67694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
67794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
67894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic void* _cache_realloc(cache_t* cache, void* cur, size_t origLen, size_t len)
67994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
68094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    // This isn't really a realloc, but it is good enough for our purposes here.
68194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    void* alloc = _cache_malloc(cache, len);
68294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (alloc != NULL && cur != NULL) {
68394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        memcpy(alloc, cur, origLen < len ? origLen : len);
68494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
68594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return alloc;
68694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
68794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
68894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic void _inc_num_cache_collected(cache_t* cache)
68994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
69094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cache->numCollected++;
69194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if ((cache->numCollected%20000) == 0) {
69292dc3fc52cf097bd105460cf377779bdcf146d62Mark Salyzyn        ALOGI("Collected cache so far: %zd directories, %zd files",
69394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache->numDirs, cache->numFiles);
69494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
69594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
69694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
69794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic cache_dir_t* _add_cache_dir_t(cache_t* cache, cache_dir_t* parent, const char *name)
69894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
69994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    size_t nameLen = strlen(name);
70094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cache_dir_t* dir = (cache_dir_t*)_cache_malloc(cache, sizeof(cache_dir_t)+nameLen+1);
70194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (dir != NULL) {
70294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->parent = parent;
70394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->childCount = 0;
70494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->hiddenCount = 0;
70594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->deleted = 0;
70694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        strcpy(dir->name, name);
70794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (cache->numDirs >= cache->availDirs) {
70894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            size_t newAvail = cache->availDirs < 1000 ? 1000 : cache->availDirs*2;
70994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache_dir_t** newDirs = (cache_dir_t**)_cache_realloc(cache, cache->dirs,
71094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    cache->availDirs*sizeof(cache_dir_t*), newAvail*sizeof(cache_dir_t*));
71194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (newDirs == NULL) {
71294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Failure growing cache dirs array for %s\n", name);
71394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return NULL;
71494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
71594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache->availDirs = newAvail;
71694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache->dirs = newDirs;
71794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
71894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->dirs[cache->numDirs] = dir;
71994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->numDirs++;
72094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (parent != NULL) {
72194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            parent->childCount++;
72294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
72394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        _inc_num_cache_collected(cache);
72494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
72594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGE("Failure allocating cache_dir_t for %s\n", name);
72694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
72794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return dir;
72894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
72994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
73094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic cache_file_t* _add_cache_file_t(cache_t* cache, cache_dir_t* dir, time_t modTime,
73194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        const char *name)
73294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
73394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    size_t nameLen = strlen(name);
73494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cache_file_t* file = (cache_file_t*)_cache_malloc(cache, sizeof(cache_file_t)+nameLen+1);
73594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (file != NULL) {
73694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        file->dir = dir;
73794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        file->modTime = modTime;
73894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        strcpy(file->name, name);
73994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (cache->numFiles >= cache->availFiles) {
74094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            size_t newAvail = cache->availFiles < 1000 ? 1000 : cache->availFiles*2;
74194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache_file_t** newFiles = (cache_file_t**)_cache_realloc(cache, cache->files,
74294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    cache->availFiles*sizeof(cache_file_t*), newAvail*sizeof(cache_file_t*));
74394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (newFiles == NULL) {
74494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Failure growing cache file array for %s\n", name);
74594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return NULL;
74694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
74794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache->availFiles = newAvail;
74894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache->files = newFiles;
74994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
7509a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        CACHE_NOISY(ALOGI("Setting file %p at position %zd in array %p", file,
75194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                cache->numFiles, cache->files));
75294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->files[cache->numFiles] = file;
75394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->numFiles++;
75494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->childCount++;
75594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        _inc_num_cache_collected(cache);
75694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
75794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGE("Failure allocating cache_file_t for %s\n", name);
75894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
75994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return file;
76094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
76194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
76294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic int _add_cache_files(cache_t *cache, cache_dir_t *parentDir, const char *dirName,
76394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        DIR* dir, char *pathBase, char *pathPos, size_t pathAvailLen)
76494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
76594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    struct dirent *de;
76694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cache_dir_t* cacheDir = NULL;
76794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int dfd;
76894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
76994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    CACHE_NOISY(ALOGI("_add_cache_files: parent=%p dirName=%s dir=%p pathBase=%s",
77094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            parentDir, dirName, dir, pathBase));
77194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
77294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    dfd = dirfd(dir);
77394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
77494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (dfd < 0) return 0;
77594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
77694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    // Sub-directories always get added to the data structure, so if they
77794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    // are empty we will know about them to delete them later.
77894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    cacheDir = _add_cache_dir_t(cache, parentDir, dirName);
77994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
78094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    while ((de = readdir(dir))) {
78194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        const char *name = de->d_name;
78294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
78394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (de->d_type == DT_DIR) {
78494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            int subfd;
78594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            DIR *subdir;
78694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
78794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                /* always skip "." and ".." */
78894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (name[0] == '.') {
78994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if (name[1] == 0) continue;
79094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if ((name[1] == '.') && (name[2] == 0)) continue;
79194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
79294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
7938b7acacc93930df9fa9e1ebea4a4394195b2332eNick Kralevich            subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
79494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (subfd < 0) {
79594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't openat %s: %s\n", name, strerror(errno));
79694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                continue;
79794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
79894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            subdir = fdopendir(subfd);
79994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (subdir == NULL) {
80094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno));
80194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                close(subfd);
80294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                continue;
80394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
80494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (cacheDir == NULL) {
80594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                cacheDir = _add_cache_dir_t(cache, parentDir, dirName);
80694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
80794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (cacheDir != NULL) {
80894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                // Update pathBase for the new path...  this may change dirName
80994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                // if that is also pointing to the path, but we are done with it
81094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                // now.
81194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                size_t finallen = snprintf(pathPos, pathAvailLen, "/%s", name);
81294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                CACHE_NOISY(ALOGI("Collecting dir %s\n", pathBase));
81394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if (finallen < pathAvailLen) {
81494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    _add_cache_files(cache, cacheDir, name, subdir, pathBase,
81594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                            pathPos+finallen, pathAvailLen-finallen);
81694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                } else {
81794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    // Whoops, the final path is too long!  We'll just delete
81894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    // this directory.
81994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    ALOGW("Cache dir %s truncated in path %s; deleting dir\n",
82094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                            name, pathBase);
82194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    _delete_dir_contents(subdir, NULL);
82294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    if (unlinkat(dfd, name, AT_REMOVEDIR) < 0) {
82394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        ALOGE("Couldn't unlinkat %s: %s\n", name, strerror(errno));
82494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    }
82594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                }
82694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
82794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            closedir(subdir);
82894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else if (de->d_type == DT_REG) {
82994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // Skip files that start with '.'; they will be deleted if
83094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // their entire directory is deleted.  This allows for metadata
83194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // like ".nomedia" to remain in the directory until the entire
83294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // directory is deleted.
83394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (cacheDir == NULL) {
83494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                cacheDir = _add_cache_dir_t(cache, parentDir, dirName);
83594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
83694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (name[0] == '.') {
83794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                cacheDir->hiddenCount++;
83894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                continue;
83994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
84094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (cacheDir != NULL) {
84194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                // Build final full path for file...  this may change dirName
84294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                // if that is also pointing to the path, but we are done with it
84394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                // now.
84494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                size_t finallen = snprintf(pathPos, pathAvailLen, "/%s", name);
84594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                CACHE_NOISY(ALOGI("Collecting file %s\n", pathBase));
84694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if (finallen < pathAvailLen) {
84794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    struct stat s;
84894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    if (stat(pathBase, &s) >= 0) {
84994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        _add_cache_file_t(cache, cacheDir, s.st_mtime, name);
85094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    } else {
85194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        ALOGW("Unable to stat cache file %s; deleting\n", pathBase);
85294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        if (unlink(pathBase) < 0) {
85394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                            ALOGE("Couldn't unlink %s: %s\n", pathBase, strerror(errno));
85494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        }
85594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    }
85694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                } else {
85794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    // Whoops, the final path is too long!  We'll just delete
85894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    // this file.
85994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    ALOGW("Cache file %s truncated in path %s; deleting\n",
86094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                            name, pathBase);
86194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    if (unlinkat(dfd, name, 0) < 0) {
86294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        *pathPos = 0;
86394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        ALOGE("Couldn't unlinkat %s in %s: %s\n", name, pathBase,
86494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                                strerror(errno));
86594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    }
86694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                }
86794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
86894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else {
86994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cacheDir->hiddenCount++;
87094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
87194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
87294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return 0;
87394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
87494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
8759a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkeyint get_path_inode(const std::string& path, ino_t *inode) {
8769a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    struct stat buf;
8779a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    memset(&buf, 0, sizeof(buf));
8789a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    if (stat(path.c_str(), &buf) != 0) {
8799a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        PLOG(WARNING) << "Failed to stat " << path;
8809a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return -1;
8819a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    } else {
8829a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        *inode = buf.st_ino;
8839a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return 0;
8849a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    }
8859a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey}
8869a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
8879a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey/**
8889a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey * Write the inode of a specific child file into the given xattr on the
8899a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey * parent directory. This allows you to find the child later, even if its
8909a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey * name is encrypted.
8919a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey */
8929a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkeyint write_path_inode(const std::string& parent, const char* name, const char* inode_xattr) {
8939a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    ino_t inode = 0;
8949a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    uint64_t inode_raw = 0;
8959a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    auto path = StringPrintf("%s/%s", parent.c_str(), name);
8969a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
8979a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    if (get_path_inode(path, &inode) != 0) {
8989a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        // Path probably doesn't exist yet; ignore
8999a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return 0;
9009a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    }
9019a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
9029a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    // Check to see if already set correctly
9039a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    if (getxattr(parent.c_str(), inode_xattr, &inode_raw, sizeof(inode_raw)) == sizeof(inode_raw)) {
9049a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        if (inode_raw == inode) {
9059a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            // Already set correctly; skip writing
9069a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            return 0;
9079a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        } else {
9089a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            PLOG(WARNING) << "Mismatched inode value; found " << inode
9099a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                    << " on disk but marked value was " << inode_raw << "; overwriting";
9109a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        }
9119a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    }
9129a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
9139a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    inode_raw = inode;
9144ed6507cfb4f0fae8567b42037e74a07f7dd28baJeff Sharkey    if (setxattr(parent.c_str(), inode_xattr, &inode_raw, sizeof(inode_raw), 0) != 0 && errno != EOPNOTSUPP) {
9159a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        PLOG(ERROR) << "Failed to write xattr " << inode_xattr << " at " << parent;
9169a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return -1;
9179a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    } else {
9189a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return 0;
9199a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    }
9209a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey}
9219a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
9229a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey/**
9239a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey * Read the inode of a specific child file from the given xattr on the
9249a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey * parent directory. Returns a currently valid path for that child, which
9259a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey * might have an encrypted name.
9269a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey */
9279a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkeystd::string read_path_inode(const std::string& parent, const char* name, const char* inode_xattr) {
9289a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    ino_t inode = 0;
9299a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    uint64_t inode_raw = 0;
9309a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    auto fallback = StringPrintf("%s/%s", parent.c_str(), name);
9319a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
9329a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    // Lookup the inode value written earlier
9339a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    if (getxattr(parent.c_str(), inode_xattr, &inode_raw, sizeof(inode_raw)) == sizeof(inode_raw)) {
9349a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        inode = inode_raw;
9359a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    }
9369a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
9379a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    // For testing purposes, rely on the inode when defined; this could be
9389a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    // optimized to use access() in the future.
9399a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    if (inode != 0) {
9409a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        DIR* dir = opendir(parent.c_str());
9419a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        if (dir == nullptr) {
9429a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            PLOG(ERROR) << "Failed to opendir " << parent;
9439a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            return fallback;
9449a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        }
9459a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
9469a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        struct dirent* ent;
9479a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        while ((ent = readdir(dir))) {
9489a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            if (ent->d_ino == inode) {
9499a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                auto resolved = StringPrintf("%s/%s", parent.c_str(), ent->d_name);
9509a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey#if DEBUG_XATTRS
9519a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                if (resolved != fallback) {
9529a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                    LOG(DEBUG) << "Resolved path " << resolved << " for inode " << inode
9539a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                            << " instead of " << fallback;
9549a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                }
9559a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey#endif
9569a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                closedir(dir);
9579a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey                return resolved;
9589a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            }
9599a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        }
9609a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        LOG(WARNING) << "Failed to resolve inode " << inode << "; using " << fallback;
9619a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        closedir(dir);
9629a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return fallback;
9639a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    } else {
9649a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey        return fallback;
9659a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    }
9669a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey}
9679a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey
96854e292e1ea87b504b552393d2e9bc800458bd0c1Jeff Sharkeyvoid add_cache_files(cache_t* cache, const std::string& data_path) {
96994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    DIR *d;
97094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    struct dirent *de;
97194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    char dirname[PATH_MAX];
97294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
97354e292e1ea87b504b552393d2e9bc800458bd0c1Jeff Sharkey    const char* basepath = data_path.c_str();
97454e292e1ea87b504b552393d2e9bc800458bd0c1Jeff Sharkey    CACHE_NOISY(ALOGI("add_cache_files: basepath=%s\n", basepath));
97594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
97694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    d = opendir(basepath);
97794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (d == NULL) {
97894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return;
97994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
98094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
98194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    while ((de = readdir(d))) {
98294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (de->d_type == DT_DIR) {
98394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            DIR* subdir;
98494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            const char *name = de->d_name;
98594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
98694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                /* always skip "." and ".." */
98794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (name[0] == '.') {
98894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if (name[1] == 0) continue;
98994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                if ((name[1] == '.') && (name[2] == 0)) continue;
99094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
99194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
9929a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            auto parent = StringPrintf("%s/%s", basepath, name);
9939a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            auto resolved = read_path_inode(parent, "cache", kXattrInodeCache);
9949a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            strcpy(dirname, resolved.c_str());
99594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            CACHE_NOISY(ALOGI("Adding cache files from dir: %s\n", dirname));
99654e292e1ea87b504b552393d2e9bc800458bd0c1Jeff Sharkey
99794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            subdir = opendir(dirname);
99894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (subdir != NULL) {
99994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                size_t dirnameLen = strlen(dirname);
100094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                _add_cache_files(cache, NULL, dirname, subdir, dirname, dirname+dirnameLen,
100194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                        PATH_MAX - dirnameLen);
100294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                closedir(subdir);
100394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
100494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
100594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
100694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
100794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    closedir(d);
100894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
100994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
1010f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolovvoid add_preloads_file_cache(cache_t* cache, const char* volume_uuid) {
1011f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    char dirname[PATH_MAX];
1012f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    DIR* subdir;
1013f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    auto cache_path = StringPrintf("%s/preloads/file_cache", create_data_path(volume_uuid).c_str());
1014f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    strcpy(dirname, cache_path.c_str());
1015f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    CACHE_NOISY(ALOGI("add_preloads_file_cache: dirname=%s\n", dirname));
1016f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    subdir = opendir(dirname);
1017f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    if (subdir != NULL) {
1018f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov        size_t dirnameLen = strlen(dirname);
1019f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov        _add_cache_files(cache, NULL, dirname, subdir, dirname, dirname + dirnameLen,
1020f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov                PATH_MAX - dirnameLen);
1021f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov        closedir(subdir);
1022f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov    }
1023f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov}
1024f3124d8fab2377d6b5ec2c7cbc775e2ab20df3efFyodor Kupolov
102594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic char *create_dir_path(char path[PATH_MAX], cache_dir_t* dir)
102694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
102794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    char *pos = path;
102894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (dir->parent != NULL) {
102994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        pos = create_dir_path(path, dir->parent);
103094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
103194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    // Note that we don't need to worry about going beyond the buffer,
103294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    // since when we were constructing the cache entries our maximum
103394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    // buffer size for full paths was PATH_MAX.
103494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    strcpy(pos, dir->name);
103594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    pos += strlen(pos);
103694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    *pos = '/';
103794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    pos++;
103894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    *pos = 0;
103994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return pos;
104094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
104194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
104294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic void delete_cache_dir(char path[PATH_MAX], cache_dir_t* dir)
104394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
104494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (dir->parent != NULL) {
104594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        create_dir_path(path, dir);
104694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGI("DEL DIR %s\n", path);
104794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (dir->hiddenCount <= 0) {
104894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (rmdir(path)) {
104994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Couldn't rmdir %s: %s\n", path, strerror(errno));
105094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return;
105194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
105294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else {
105394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // The directory contains hidden files so we need to delete
105494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // them along with the directory itself.
105594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (delete_dir_contents(path, 1, NULL)) {
105694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return;
105794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
105894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
105994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->parent->childCount--;
106094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        dir->deleted = 1;
106194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (dir->parent->childCount <= 0) {
106294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            delete_cache_dir(path, dir->parent);
106394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
106494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else if (dir->hiddenCount > 0) {
106594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // This is a root directory, but it has hidden files.  Get rid of
106694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // all of those files, but not the directory itself.
106794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        create_dir_path(path, dir);
106894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGI("DEL CONTENTS %s\n", path);
106994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        delete_dir_contents(path, 0, NULL);
107094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
107194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
107294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
107394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodstatic int cache_modtime_sort(const void *lhsP, const void *rhsP)
107494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
107594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const cache_file_t *lhs = *(const cache_file_t**)lhsP;
107694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const cache_file_t *rhs = *(const cache_file_t**)rhsP;
107794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return lhs->modTime < rhs->modTime ? -1 : (lhs->modTime > rhs->modTime ? 1 : 0);
107894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
107994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
108041ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkeyvoid clear_cache_files(const std::string& data_path, cache_t* cache, int64_t free_size)
108194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
108294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    size_t i;
108394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int skip = 0;
108494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    char path[PATH_MAX];
108594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
108692dc3fc52cf097bd105460cf377779bdcf146d62Mark Salyzyn    ALOGI("Collected cache files: %zd directories, %zd files",
108794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache->numDirs, cache->numFiles);
108894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
108994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    CACHE_NOISY(ALOGI("Sorting files..."));
109094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    qsort(cache->files, cache->numFiles, sizeof(cache_file_t*),
109194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache_modtime_sort);
109294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
109394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    CACHE_NOISY(ALOGI("Cleaning empty directories..."));
109494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    for (i=cache->numDirs; i>0; i--) {
109594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache_dir_t* dir = cache->dirs[i-1];
109694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (dir->childCount <= 0 && !dir->deleted) {
109794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            delete_cache_dir(path, dir);
109894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
109994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
110094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
110194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    CACHE_NOISY(ALOGI("Trimming files..."));
110294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    for (i=0; i<cache->numFiles; i++) {
110394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        skip++;
110494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (skip > 10) {
110541ea424413c0381ef2aa15fc5bd5d4b88abd23c4Jeff Sharkey            if (data_disk_free(data_path) > free_size) {
110694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return;
110794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
110894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            skip = 0;
110994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
111094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        cache_file_t* file = cache->files[i];
111194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        strcpy(create_dir_path(path, file->dir), file->name);
111294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGI("DEL (mod %d) %s\n", (int)file->modTime, path);
111394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (unlink(path) < 0) {
111494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            ALOGE("Couldn't unlink %s: %s\n", path, strerror(errno));
111594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
111694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        file->dir->childCount--;
111794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (file->dir->childCount <= 0) {
111894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            delete_cache_dir(path, file->dir);
111994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
112094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
112194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
112294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
112394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodvoid finish_cache_collection(cache_t* cache)
112494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood{
112599d9fb15b4a1eb534261ae81b2cf25aec4447bd0Chih-Hung Hsieh    CACHE_NOISY(size_t i;)
112694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
11279a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey    CACHE_NOISY(ALOGI("clear_cache_files: %zu dirs, %zu files\n", cache->numDirs, cache->numFiles));
112894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    CACHE_NOISY(
112994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        for (i=0; i<cache->numDirs; i++) {
113094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache_dir_t* dir = cache->dirs[i];
11319a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            ALOGI("dir #%zu: %p %s parent=%p\n", i, dir, dir->name, dir->parent);
113294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        })
113394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    CACHE_NOISY(
113494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        for (i=0; i<cache->numFiles; i++) {
113594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            cache_file_t* file = cache->files[i];
11369a998f4762cb5ad71c786229be748ea0ab9eb7a0Jeff Sharkey            ALOGI("file #%zu: %p %s time=%d dir=%p\n", i, file, file->name,
113794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    (int)file->modTime, file->dir);
113894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        })
113994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    void* block = cache->memBlocks;
114094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    while (block != NULL) {
114194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        void* nextBlock = *(void**)block;
114294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        CACHE_NOISY(ALOGI("Freeing cache mem block: %p", block));
114394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        free(block);
114494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        block = nextBlock;
114594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
114694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    free(cache);
114794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
114894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
114994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
1150c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle * Validate that the path is valid in the context of the provided directory.
1151c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle * The path is allowed to have at most one subdirectory and no indirections
1152c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle * to top level directories (i.e. have "..").
1153c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle */
1154e23a13299a4f6f2488935b4786cdbb46f46e3d3cJeff Sharkeystatic int validate_path(const dir_rec_t* dir, const char* path, int maxSubdirs) {
1155c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    size_t dir_len = dir->len;
1156c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    const char* subdir = strchr(path + dir_len, '/');
1157c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle
1158c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    // Only allow the path to have at most one subdirectory.
1159c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    if (subdir != NULL) {
1160c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        ++subdir;
1161e23a13299a4f6f2488935b4786cdbb46f46e3d3cJeff Sharkey        if ((--maxSubdirs == 0) && strchr(subdir, '/') != NULL) {
1162c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle            ALOGE("invalid apk path '%s' (subdir?)\n", path);
1163c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle            return -1;
1164c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        }
1165c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    }
1166c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle
1167c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    // Directories can't have a period directly after the directory markers to prevent "..".
1168c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    if ((path[dir_len] == '.') || ((subdir != NULL) && (*subdir == '.'))) {
1169c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        ALOGE("invalid apk path '%s' (trickery)\n", path);
1170c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        return -1;
1171c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    }
1172c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle
1173c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    return 0;
1174c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle}
1175c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle
1176c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle/**
117794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * Checks whether a path points to a system app (.apk file). Returns 0
117894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * if it is a system app or -1 if it is not.
117994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
118094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint validate_system_app_path(const char* path) {
118194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    size_t i;
118294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
118394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    for (i = 0; i < android_system_dirs.count; i++) {
118494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        const size_t dir_len = android_system_dirs.dirs[i].len;
118594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (!strncmp(path, android_system_dirs.dirs[i].path, dir_len)) {
1186e23a13299a4f6f2488935b4786cdbb46f46e3d3cJeff Sharkey            return validate_path(android_system_dirs.dirs + i, path, 1);
118794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
118894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
118994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
119094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return -1;
119194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
119294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
119342451c029b0e87990e5833daea2286bb12c21df5Calin Juravlebool validate_secondary_dex_path(const char* pkgname, const char* path,
119442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        const char* volume_uuid, int uid, int storage_flag) {
119542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    CHECK(storage_flag == FLAG_STORAGE_CE || storage_flag == FLAG_STORAGE_DE);
119642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle
119742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    std::string app_private_dir = storage_flag == FLAG_STORAGE_CE
119842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        ? create_data_user_ce_package_path(volume_uuid, multiuser_get_user_id(uid), pkgname)
119942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        : create_data_user_de_package_path(volume_uuid, multiuser_get_user_id(uid), pkgname);
120042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    dir_rec_t dir;
120142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    if (get_path_from_string(&dir, app_private_dir.c_str()) != 0) {
120242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        LOG(WARNING) << "Could not get dir rec for " << app_private_dir;
120342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        return false;
120442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    }
120542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    // Usually secondary dex files have a nested directory structure.
120642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    // Pick at most 10 subdirectories when validating (arbitrary value).
120742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    // If the secondary dex file is >10 directory nested then validation will
120842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    // fail and the file will not be compiled.
120942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    return validate_path(&dir, path, /*max_subdirs*/ 10) == 0;
121042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle}
121142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle
121294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
121394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * Get the contents of a environment variable that contains a path. Caller
121494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * owns the string that is inserted into the directory record. Returns
121594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * 0 on success and -1 on error.
121694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
121794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint get_path_from_env(dir_rec_t* rec, const char* var) {
121894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const char* path = getenv(var);
121994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int ret = get_path_from_string(rec, path);
122094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (ret < 0) {
122194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGW("Problem finding value for environment variable %s\n", var);
122294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
122394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return ret;
122494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
122594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
122694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
122794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * Puts the string into the record as a directory. Appends '/' to the end
122894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * of all paths. Caller owns the string that is inserted into the directory
122994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * record. A null value will result in an error.
123094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood *
123194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood * Returns 0 on success and -1 on error.
123294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
123394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint get_path_from_string(dir_rec_t* rec, const char* path) {
123494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (path == NULL) {
123594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
123694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
123794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        const size_t path_len = strlen(path);
123894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (path_len <= 0) {
123994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            return -1;
124094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
124194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
124294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        // Make sure path is absolute.
124394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (path[0] != '/') {
124494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            return -1;
124594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
124694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
124794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        if (path[path_len - 1] == '/') {
124894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // Path ends with a forward slash. Make our own copy.
124994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
125094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            rec->path = strdup(path);
125194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (rec->path == NULL) {
125294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return -1;
125394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
125494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
125594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            rec->len = path_len;
125694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        } else {
125794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // Path does not end with a slash. Generate a new string.
125894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            char *dst;
125994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
126094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            // Add space for slash and terminating null.
126194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            size_t dst_size = path_len + 2;
126294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
126319803807cd7ae01868fcfa50305f4a7dd13765e2Jeff Sharkey            rec->path = (char*) malloc(dst_size);
126494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (rec->path == NULL) {
126594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return -1;
126694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
126794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
126894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            dst = rec->path;
126994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
127094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            if (append_and_increment(&dst, path, &dst_size) < 0
127194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    || append_and_increment(&dst, "/", &dst_size)) {
127294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                ALOGE("Error canonicalizing path");
127394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                return -1;
127494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            }
127594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
127694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            rec->len = dst - rec->path;
127794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        }
127894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
127994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return 0;
128094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
128194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
128294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint copy_and_append(dir_rec_t* dst, const dir_rec_t* src, const char* suffix) {
128394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    dst->len = src->len + strlen(suffix);
128494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    const size_t dstSize = dst->len + 1;
128594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    dst->path = (char*) malloc(dstSize);
128694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
128794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (dst->path == NULL
128894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood            || snprintf(dst->path, dstSize, "%s%s", src->path, suffix)
128994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood                    != (ssize_t) dst->len) {
129094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        ALOGE("Could not allocate memory to hold appended path; aborting\n");
129194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
129294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
129394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
129494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return 0;
129594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
129694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
129794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood/**
1298d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath * Check whether path points to a valid path for an APK file. The path must
1299d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath * begin with a whitelisted prefix path and must be no deeper than |maxSubdirs| within
1300d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath * that path. Returns -1 when an invalid path is encountered and 0 when a valid path
1301d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath * is encountered.
130294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood */
1303d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamathstatic int validate_apk_path_internal(const char *path, int maxSubdirs) {
1304c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle    const dir_rec_t* dir = NULL;
130594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (!strncmp(path, android_app_dir.path, android_app_dir.len)) {
1306c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        dir = &android_app_dir;
130794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else if (!strncmp(path, android_app_private_dir.path, android_app_private_dir.len)) {
1308c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        dir = &android_app_private_dir;
13095c1a910e6a2d2c42002dc6ed88ff770336afcb3fTodd Kennedy    } else if (!strncmp(path, android_app_ephemeral_dir.path, android_app_ephemeral_dir.len)) {
13105c1a910e6a2d2c42002dc6ed88ff770336afcb3fTodd Kennedy        dir = &android_app_ephemeral_dir;
131194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else if (!strncmp(path, android_asec_dir.path, android_asec_dir.len)) {
1312c597b6dd895dbb2b28c757ce7a2651b3cdc9b00cCalin Juravle        dir = &android_asec_dir;
1313e23a13299a4f6f2488935b4786cdbb46f46e3d3cJeff Sharkey    } else if (!strncmp(path, android_mnt_expand_dir.path, android_mnt_expand_dir.len)) {
1314e23a13299a4f6f2488935b4786cdbb46f46e3d3cJeff Sharkey        dir = &android_mnt_expand_dir;
1315d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath        if (maxSubdirs < 2) {
1316d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath            maxSubdirs = 2;
1317d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath        }
131894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    } else {
131994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
132094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
132194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
1322e23a13299a4f6f2488935b4786cdbb46f46e3d3cJeff Sharkey    return validate_path(dir, path, maxSubdirs);
132394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
132494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
1325d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamathint validate_apk_path(const char* path) {
1326d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath    return validate_apk_path_internal(path, 1 /* maxSubdirs */);
1327d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath}
1328d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath
1329d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamathint validate_apk_path_subdirs(const char* path) {
1330d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath    return validate_apk_path_internal(path, 3 /* maxSubdirs */);
1331d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath}
1332d845c96128a40ca5802c0840ae190fa0af7d4735Narayan Kamath
133394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwoodint append_and_increment(char** dst, const char* src, size_t* dst_size) {
133494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    ssize_t ret = strlcpy(*dst, src, *dst_size);
133594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (ret < 0 || (size_t) ret >= *dst_size) {
133694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood        return -1;
133794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    }
133894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    *dst += ret;
133994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    *dst_size -= ret;
134094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return 0;
134194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
134294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
134319803807cd7ae01868fcfa50305f4a7dd13765e2Jeff Sharkeychar *build_string2(const char *s1, const char *s2) {
134494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (s1 == NULL || s2 == NULL) return NULL;
134594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
134694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len_s1 = strlen(s1);
134794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len_s2 = strlen(s2);
134894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len = len_s1 + len_s2 + 1;
134919803807cd7ae01868fcfa50305f4a7dd13765e2Jeff Sharkey    char *result = (char *) malloc(len);
135094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (result == NULL) return NULL;
135194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
135294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    strcpy(result, s1);
135394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    strcpy(result + len_s1, s2);
135494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
135594afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return result;
135694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
135794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
135819803807cd7ae01868fcfa50305f4a7dd13765e2Jeff Sharkeychar *build_string3(const char *s1, const char *s2, const char *s3) {
135994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (s1 == NULL || s2 == NULL || s3 == NULL) return NULL;
136094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
136194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len_s1 = strlen(s1);
136294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len_s2 = strlen(s2);
136394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len_s3 = strlen(s3);
136494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    int len = len_s1 + len_s2 + len_s3 + 1;
136519803807cd7ae01868fcfa50305f4a7dd13765e2Jeff Sharkey    char *result = (char *) malloc(len);
136694afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    if (result == NULL) return NULL;
136794afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
136894afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    strcpy(result, s1);
136994afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    strcpy(result + len_s1, s2);
137094afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    strcpy(result + len_s1 + len_s2, s3);
137194afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
137294afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood    return result;
137394afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood}
137494afecf4b6f437b3ee9a076242402e421c6c07a6Mike Lockwood
1375095c763dd9aa26a206d10ab7c1d7e1c569298fb3Robin Leeint ensure_config_user_dirs(userid_t userid) {
1376095c763dd9aa26a206d10ab7c1d7e1c569298fb3Robin Lee    // writable by system, readable by any app within the same user
137760fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    const int uid = multiuser_get_uid(userid, AID_SYSTEM);
137860fd3feecab4336d964ca8e31c7c3220e1afb558Robin Lee    const int gid = multiuser_get_uid(userid, AID_EVERYBODY);
1379095c763dd9aa26a206d10ab7c1d7e1c569298fb3Robin Lee
1380095c763dd9aa26a206d10ab7c1d7e1c569298fb3Robin Lee    // Ensure /data/misc/user/<userid> exists
1381379a12b0072b322c7f86e690a8e8a220e500861cJeff Sharkey    auto path = create_data_misc_legacy_path(userid);
1382379a12b0072b322c7f86e690a8e8a220e500861cJeff Sharkey    return fs_prepare_dir(path.c_str(), 0750, uid, gid);
1383095c763dd9aa26a206d10ab7c1d7e1c569298fb3Robin Lee}
138402d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
138502d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampeint wait_child(pid_t pid)
138602d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe{
138702d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    int status;
138802d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    pid_t got_pid;
138902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
139002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    while (1) {
139102d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        got_pid = waitpid(pid, &status, 0);
139202d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        if (got_pid == -1 && errno == EINTR) {
139302d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe            printf("waitpid interrupted, retrying\n");
139402d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        } else {
139502d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe            break;
139602d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        }
139702d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    }
139802d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    if (got_pid != pid) {
139902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        ALOGW("waitpid failed: wanted %d, got %d: %s\n",
140002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe            (int) pid, (int) got_pid, strerror(errno));
140102d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        return 1;
140202d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    }
140302d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
140402d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
140502d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        return 0;
140602d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    } else {
140702d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe        return status;      /* always nonzero */
140802d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe    }
140902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe}
141002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe
141142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle/**
141242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle * Prepare an app cache directory, which offers to fix-up the GID and
141342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle * directory mode flags during a platform upgrade.
141442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle * The app cache directory path will be 'parent'/'name'.
141542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle */
141642451c029b0e87990e5833daea2286bb12c21df5Calin Juravleint prepare_app_cache_dir(const std::string& parent, const char* name, mode_t target_mode,
141742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        uid_t uid, gid_t gid) {
141842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    auto path = StringPrintf("%s/%s", parent.c_str(), name);
141942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    struct stat st;
142042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    if (stat(path.c_str(), &st) != 0) {
142142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        if (errno == ENOENT) {
142242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            // This is fine, just create it
142342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            if (fs_prepare_dir_strict(path.c_str(), target_mode, uid, gid) != 0) {
142442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                PLOG(ERROR) << "Failed to prepare " << path;
142542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                return -1;
142642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            } else {
142742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                return 0;
142842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            }
142942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        } else {
143042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            PLOG(ERROR) << "Failed to stat " << path;
143142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            return -1;
143242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        }
143342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    }
143442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle
143542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    mode_t actual_mode = st.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO | S_ISGID);
143642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    if (st.st_uid != uid) {
143742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        // Mismatched UID is real trouble; we can't recover
143842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        LOG(ERROR) << "Mismatched UID at " << path << ": found " << st.st_uid
143942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                << " but expected " << uid;
144042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        return -1;
144142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    } else if (st.st_gid == gid && actual_mode == target_mode) {
144242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        // Everything looks good!
144342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        return 0;
144442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    }
144542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle
144642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    // Directory is owned correctly, but GID or mode mismatch means it's
144742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    // probably a platform upgrade so we need to fix them
144842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    FTS *fts;
144942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    FTSENT *p;
145042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    char *argv[] = { (char*) path.c_str(), nullptr };
145142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    if (!(fts = fts_open(argv, FTS_PHYSICAL | FTS_XDEV, NULL))) {
145242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        PLOG(ERROR) << "Failed to fts_open " << path;
145342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        return -1;
145442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    }
145542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    while ((p = fts_read(fts)) != NULL) {
145642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        switch (p->fts_info) {
145742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        case FTS_DP:
145842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            if (chmod(p->fts_accpath, target_mode) != 0) {
145942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                PLOG(WARNING) << "Failed to chmod " << p->fts_path;
146042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            }
146142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            // Intentional fall through to also set GID
146242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        case FTS_F:
146342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            if (chown(p->fts_accpath, -1, gid) != 0) {
146442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                PLOG(WARNING) << "Failed to chown " << p->fts_path;
146542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            }
146642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            break;
146742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        case FTS_SL:
146842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        case FTS_SLNONE:
146942451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            if (lchown(p->fts_accpath, -1, gid) != 0) {
147042451c029b0e87990e5833daea2286bb12c21df5Calin Juravle                PLOG(WARNING) << "Failed to chown " << p->fts_path;
147142451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            }
147242451c029b0e87990e5833daea2286bb12c21df5Calin Juravle            break;
147342451c029b0e87990e5833daea2286bb12c21df5Calin Juravle        }
147442451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    }
147542451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    fts_close(fts);
147642451c029b0e87990e5833daea2286bb12c21df5Calin Juravle    return 0;
147742451c029b0e87990e5833daea2286bb12c21df5Calin Juravle}
147842451c029b0e87990e5833daea2286bb12c21df5Calin Juravle
147902d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe}  // namespace installd
148002d0de56c75347a0cb8d5a8565dc8c4ee7616057Andreas Gampe}  // namespace android
1481