diff options
author | Robin Lee <rgl@google.com> | 2014-04-29 19:42:01 +0100 |
---|---|---|
committer | Robin Lee <rgl@google.com> | 2014-06-05 17:35:50 +0000 |
commit | 07053fcb61436221fac2281394e98ec9d0feab3d (patch) | |
tree | e9af30a5773faa7b8b36fedc6313ac865a59f77c /cmds/installd/installd.c | |
parent | 8adb5a822d44ed43aa0ec9a8948a7820fdfcd375 (diff) | |
download | frameworks_native-07053fcb61436221fac2281394e98ec9d0feab3d.zip frameworks_native-07053fcb61436221fac2281394e98ec9d0feab3d.tar.gz frameworks_native-07053fcb61436221fac2281394e98ec9d0feab3d.tar.bz2 |
Migrate keychain directories to /data/misc/user/0
With new CA certificates being stored in /data/misc/user/<userid>/
existing ones need to be moved into the same place.
After this update only the owner user will have custom trusted CAs; all
other users will revert to the default set.
Change-Id: I14a4cd6048685902ad5dd3b53494b03fadc41c04
Diffstat (limited to 'cmds/installd/installd.c')
-rw-r--r-- | cmds/installd/installd.c | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/cmds/installd/installd.c b/cmds/installd/installd.c index 064ee32..f714836 100644 --- a/cmds/installd/installd.c +++ b/cmds/installd/installd.c @@ -489,6 +489,11 @@ int initialize_directories() { goto fail; } + if (ensure_config_user_dirs(0) == -1) { + ALOGE("Failed to setup misc for user 0"); + goto fail; + } + if (version == 2) { ALOGD("Upgrading to /data/misc/user directories"); @@ -517,12 +522,31 @@ int initialize_directories() { closedir(dir); } - version = 3; - } + // Just rename keychain files into user/0; they should already have the right permissions + char misc_dir[PATH_MAX]; + char keychain_added_dir[PATH_MAX]; + char keychain_removed_dir[PATH_MAX]; + char config_added_dir[PATH_MAX]; + char config_removed_dir[PATH_MAX]; + + snprintf(misc_dir, PATH_MAX, "%s/misc", android_data_dir.path); + snprintf(keychain_added_dir, PATH_MAX, "%s/keychain/cacerts-added", misc_dir); + snprintf(keychain_removed_dir, PATH_MAX, "%s/keychain/cacerts-removed", misc_dir); + snprintf(config_added_dir, PATH_MAX, "%s/user/0/cacerts-added", misc_dir); + snprintf(config_removed_dir, PATH_MAX, "%s/user/0/cacerts-removed", misc_dir); + + if (access(keychain_added_dir, F_OK) == 0) { + if (rename(keychain_added_dir, config_added_dir) != 0) { + goto fail; + } + } + if (access(keychain_removed_dir, F_OK) == 0) { + if (rename(keychain_removed_dir, config_removed_dir) != 0) { + goto fail; + } + } - if (ensure_config_user_dirs(0) == -1) { - ALOGE("Failed to setup misc for user 0"); - goto fail; + version = 3; } // Persist layout version if changed |