diff options
author | Jeff Sharkey <jsharkey@android.com> | 2015-04-06 16:19:39 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2015-04-07 14:01:12 -0700 |
commit | e23a13299a4f6f2488935b4786cdbb46f46e3d3c (patch) | |
tree | 3d2f4f12dc9393032fc8a16de6f2f4ac9527b28b /cmds | |
parent | 8f43f77de89df935e7dc2fdeddee132580bb5705 (diff) | |
download | frameworks_native-e23a13299a4f6f2488935b4786cdbb46f46e3d3c.zip frameworks_native-e23a13299a4f6f2488935b4786cdbb46f46e3d3c.tar.gz frameworks_native-e23a13299a4f6f2488935b4786cdbb46f46e3d3c.tar.bz2 |
Valid APK paths now include expanded storage.
Apps on expanded storage live at /mnt/expand/<uuid>/app/com.example,
so we need to relax one more directory level.
Bug: 19993667
Change-Id: I347ec7b92435ea69e632ed5d5fdfabe38ce0b56e
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/installd/commands.c | 1 | ||||
-rw-r--r-- | cmds/installd/installd.c | 5 | ||||
-rw-r--r-- | cmds/installd/installd.h | 3 | ||||
-rw-r--r-- | cmds/installd/utils.c | 12 |
4 files changed, 16 insertions, 5 deletions
diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c index 58e7efe..5f72ae4 100644 --- a/cmds/installd/commands.c +++ b/cmds/installd/commands.c @@ -30,6 +30,7 @@ dir_rec_t android_app_dir; dir_rec_t android_app_private_dir; dir_rec_t android_app_lib_dir; dir_rec_t android_media_dir; +dir_rec_t android_mnt_expand_dir; dir_rec_array_t android_system_dirs; int install(const char *pkgname, uid_t uid, gid_t gid, const char *seinfo) diff --git a/cmds/installd/installd.c b/cmds/installd/installd.c index 5b71175..930ba2f 100644 --- a/cmds/installd/installd.c +++ b/cmds/installd/installd.c @@ -352,6 +352,11 @@ int initialize_globals() { return -1; } + // Get the android external app directory. + if (get_path_from_string(&android_mnt_expand_dir, "/mnt/expand") < 0) { + return -1; + } + // Take note of the system and vendor directories. android_system_dirs.count = 4; diff --git a/cmds/installd/installd.h b/cmds/installd/installd.h index 9c30a35..7c52b78 100644 --- a/cmds/installd/installd.h +++ b/cmds/installd/installd.h @@ -101,6 +101,7 @@ extern dir_rec_t android_app_lib_dir; extern dir_rec_t android_data_dir; extern dir_rec_t android_asec_dir; extern dir_rec_t android_media_dir; +extern dir_rec_t android_mnt_expand_dir; extern dir_rec_array_t android_system_dirs; typedef struct cache_dir_struct { @@ -230,4 +231,4 @@ int restorecon_data(); int create_oat_dir(const char* oat_dir, const char *instruction_set); int rm_package_dir(const char* apk_path); int calculate_oat_file_path(char path[PKG_PATH_MAX], const char *oat_dir, const char *apk_path, - const char *instruction_set);
\ No newline at end of file + const char *instruction_set); diff --git a/cmds/installd/utils.c b/cmds/installd/utils.c index 8f366a0..54f90ab 100644 --- a/cmds/installd/utils.c +++ b/cmds/installd/utils.c @@ -910,14 +910,14 @@ void finish_cache_collection(cache_t* cache) * The path is allowed to have at most one subdirectory and no indirections * to top level directories (i.e. have ".."). */ -static int validate_path(const dir_rec_t* dir, const char* path) { +static int validate_path(const dir_rec_t* dir, const char* path, int maxSubdirs) { size_t dir_len = dir->len; const char* subdir = strchr(path + dir_len, '/'); // Only allow the path to have at most one subdirectory. if (subdir != NULL) { ++subdir; - if (strchr(subdir, '/') != NULL) { + if ((--maxSubdirs == 0) && strchr(subdir, '/') != NULL) { ALOGE("invalid apk path '%s' (subdir?)\n", path); return -1; } @@ -942,7 +942,7 @@ int validate_system_app_path(const char* path) { for (i = 0; i < android_system_dirs.count; i++) { const size_t dir_len = android_system_dirs.dirs[i].len; if (!strncmp(path, android_system_dirs.dirs[i].path, dir_len)) { - return validate_path(android_system_dirs.dirs + i, path); + return validate_path(android_system_dirs.dirs + i, path, 1); } } @@ -1042,6 +1042,7 @@ int copy_and_append(dir_rec_t* dst, const dir_rec_t* src, const char* suffix) { int validate_apk_path(const char *path) { const dir_rec_t* dir = NULL; + int maxSubdirs = 1; if (!strncmp(path, android_app_dir.path, android_app_dir.len)) { dir = &android_app_dir; @@ -1049,11 +1050,14 @@ int validate_apk_path(const char *path) dir = &android_app_private_dir; } else if (!strncmp(path, android_asec_dir.path, android_asec_dir.len)) { dir = &android_asec_dir; + } else if (!strncmp(path, android_mnt_expand_dir.path, android_mnt_expand_dir.len)) { + dir = &android_mnt_expand_dir; + maxSubdirs = 2; } else { return -1; } - return validate_path(dir, path); + return validate_path(dir, path, maxSubdirs); } int append_and_increment(char** dst, const char* src, size_t* dst_size) { |