2009-03-03 19:31:44 -08:00
|
|
|
/*
|
|
|
|
** Copyright 2008, The Android Open Source Project
|
|
|
|
**
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
**
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
**
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "installd.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define BUFFER_MAX 1024 /* input buffer for commands */
|
|
|
|
#define TOKEN_MAX 8 /* max number of arguments in buffer */
|
|
|
|
#define REPLY_MAX 256 /* largest reply allowed */
|
|
|
|
|
|
|
|
static int do_ping(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_install(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
2011-02-02 16:42:14 -08:00
|
|
|
return install(arg[0], atoi(arg[1]), atoi(arg[2])); /* pkgname, uid, gid */
|
2009-03-03 19:31:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int do_dexopt(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
/* apk_path, uid, is_public */
|
|
|
|
return dexopt(arg[0], atoi(arg[1]), atoi(arg[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_move_dex(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return move_dex(arg[0], arg[1]); /* src, dst */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_rm_dex(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return rm_dex(arg[0]); /* pkgname */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_remove(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
2011-04-14 17:35:23 -07:00
|
|
|
return uninstall(arg[0], atoi(arg[1])); /* pkgname, userid */
|
2009-03-03 19:31:44 -08:00
|
|
|
}
|
|
|
|
|
2010-02-02 10:49:14 -08:00
|
|
|
static int do_rename(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
2011-02-02 16:42:14 -08:00
|
|
|
return renamepkg(arg[0], arg[1]); /* oldpkgname, newpkgname */
|
2010-02-02 10:49:14 -08:00
|
|
|
}
|
|
|
|
|
2012-06-07 16:53:59 -07:00
|
|
|
static int do_fixuid(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return fix_uid(arg[0], atoi(arg[1]), atoi(arg[2])); /* pkgname, uid, gid */
|
|
|
|
}
|
|
|
|
|
2009-03-03 19:31:44 -08:00
|
|
|
static int do_free_cache(char **arg, char reply[REPLY_MAX]) /* TODO int:free_size */
|
|
|
|
{
|
2010-09-07 13:58:28 -07:00
|
|
|
return free_cache((int64_t)atoll(arg[0])); /* free_size */
|
2009-03-03 19:31:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int do_rm_cache(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
2011-02-02 16:42:14 -08:00
|
|
|
return delete_cache(arg[0]); /* pkgname */
|
2009-03-03 19:31:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int do_protect(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return protect(arg[0], atoi(arg[1])); /* pkgname, gid */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_get_size(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
2010-09-07 13:58:28 -07:00
|
|
|
int64_t codesize = 0;
|
|
|
|
int64_t datasize = 0;
|
|
|
|
int64_t cachesize = 0;
|
2011-06-27 16:27:41 -07:00
|
|
|
int64_t asecsize = 0;
|
2009-03-03 19:31:44 -08:00
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
/* pkgdir, apkpath */
|
2011-06-27 16:27:41 -07:00
|
|
|
res = get_size(arg[0], arg[1], arg[2], arg[3], &codesize, &datasize, &cachesize, &asecsize);
|
2009-03-03 19:31:44 -08:00
|
|
|
|
2010-09-07 13:58:28 -07:00
|
|
|
/*
|
|
|
|
* Each int64_t can take up 22 characters printed out. Make sure it
|
|
|
|
* doesn't go over REPLY_MAX in the future.
|
|
|
|
*/
|
2011-06-27 16:27:41 -07:00
|
|
|
snprintf(reply, REPLY_MAX, "%" PRId64 " %" PRId64 " %" PRId64 " %" PRId64,
|
|
|
|
codesize, datasize, cachesize, asecsize);
|
2009-03-03 19:31:44 -08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_rm_user_data(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
2011-04-14 17:35:23 -07:00
|
|
|
return delete_user_data(arg[0], atoi(arg[1])); /* pkgname, userid */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_mk_user_data(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return make_user_data(arg[0], atoi(arg[1]), atoi(arg[2])); /* pkgname, uid, userid */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_rm_user(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return delete_persona(atoi(arg[0])); /* userid */
|
2009-03-03 19:31:44 -08:00
|
|
|
}
|
|
|
|
|
2011-05-04 14:49:28 -07:00
|
|
|
static int do_clone_user_data(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return clone_persona_data(atoi(arg[0]), atoi(arg[1]), atoi(arg[2]));
|
|
|
|
}
|
|
|
|
|
2010-02-02 10:49:14 -08:00
|
|
|
static int do_movefiles(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return movefiles();
|
|
|
|
}
|
|
|
|
|
2010-10-07 16:46:10 -07:00
|
|
|
static int do_linklib(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return linklib(arg[0], arg[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_unlinklib(char **arg, char reply[REPLY_MAX])
|
|
|
|
{
|
|
|
|
return unlinklib(arg[0]);
|
|
|
|
}
|
|
|
|
|
2009-03-03 19:31:44 -08:00
|
|
|
struct cmdinfo {
|
|
|
|
const char *name;
|
|
|
|
unsigned numargs;
|
|
|
|
int (*func)(char **arg, char reply[REPLY_MAX]);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cmdinfo cmds[] = {
|
|
|
|
{ "ping", 0, do_ping },
|
2011-02-02 16:42:14 -08:00
|
|
|
{ "install", 3, do_install },
|
2009-03-03 19:31:44 -08:00
|
|
|
{ "dexopt", 3, do_dexopt },
|
|
|
|
{ "movedex", 2, do_move_dex },
|
|
|
|
{ "rmdex", 1, do_rm_dex },
|
2011-04-14 17:35:23 -07:00
|
|
|
{ "remove", 2, do_remove },
|
2011-02-02 16:42:14 -08:00
|
|
|
{ "rename", 2, do_rename },
|
2012-06-07 16:53:59 -07:00
|
|
|
{ "fixuid", 3, do_fixuid },
|
2009-03-03 19:31:44 -08:00
|
|
|
{ "freecache", 1, do_free_cache },
|
2011-02-02 16:42:14 -08:00
|
|
|
{ "rmcache", 1, do_rm_cache },
|
2009-03-03 19:31:44 -08:00
|
|
|
{ "protect", 2, do_protect },
|
2011-06-27 16:27:41 -07:00
|
|
|
{ "getsize", 4, do_get_size },
|
2011-04-14 17:35:23 -07:00
|
|
|
{ "rmuserdata", 2, do_rm_user_data },
|
2010-02-02 10:49:14 -08:00
|
|
|
{ "movefiles", 0, do_movefiles },
|
2010-10-07 16:46:10 -07:00
|
|
|
{ "linklib", 2, do_linklib },
|
|
|
|
{ "unlinklib", 1, do_unlinklib },
|
2011-04-14 17:35:23 -07:00
|
|
|
{ "mkuserdata", 3, do_mk_user_data },
|
|
|
|
{ "rmuser", 1, do_rm_user },
|
2011-05-04 14:49:28 -07:00
|
|
|
{ "cloneuserdata", 3, do_clone_user_data },
|
2009-03-03 19:31:44 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int readx(int s, void *_buf, int count)
|
|
|
|
{
|
|
|
|
char *buf = _buf;
|
|
|
|
int n = 0, r;
|
|
|
|
if (count < 0) return -1;
|
|
|
|
while (n < count) {
|
|
|
|
r = read(s, buf + n, count - n);
|
|
|
|
if (r < 0) {
|
|
|
|
if (errno == EINTR) continue;
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("read error: %s\n", strerror(errno));
|
2009-03-03 19:31:44 -08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (r == 0) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("eof\n");
|
2009-03-03 19:31:44 -08:00
|
|
|
return -1; /* EOF */
|
|
|
|
}
|
|
|
|
n += r;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int writex(int s, const void *_buf, int count)
|
|
|
|
{
|
|
|
|
const char *buf = _buf;
|
|
|
|
int n = 0, r;
|
|
|
|
if (count < 0) return -1;
|
|
|
|
while (n < count) {
|
|
|
|
r = write(s, buf + n, count - n);
|
|
|
|
if (r < 0) {
|
|
|
|
if (errno == EINTR) continue;
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("write error: %s\n", strerror(errno));
|
2009-03-03 19:31:44 -08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
n += r;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Tokenize the command buffer, locate a matching command,
|
|
|
|
* ensure that the required number of arguments are provided,
|
|
|
|
* call the function(), return the result.
|
|
|
|
*/
|
|
|
|
static int execute(int s, char cmd[BUFFER_MAX])
|
|
|
|
{
|
|
|
|
char reply[REPLY_MAX];
|
|
|
|
char *arg[TOKEN_MAX+1];
|
|
|
|
unsigned i;
|
|
|
|
unsigned n = 0;
|
|
|
|
unsigned short count;
|
|
|
|
int ret = -1;
|
|
|
|
|
2012-01-04 20:05:49 +00:00
|
|
|
// ALOGI("execute('%s')\n", cmd);
|
2009-03-03 19:31:44 -08:00
|
|
|
|
|
|
|
/* default reply is "" */
|
|
|
|
reply[0] = 0;
|
|
|
|
|
|
|
|
/* n is number of args (not counting arg[0]) */
|
|
|
|
arg[0] = cmd;
|
|
|
|
while (*cmd) {
|
|
|
|
if (isspace(*cmd)) {
|
|
|
|
*cmd++ = 0;
|
|
|
|
n++;
|
|
|
|
arg[n] = cmd;
|
|
|
|
if (n == TOKEN_MAX) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("too many arguments\n");
|
2009-03-03 19:31:44 -08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmd++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(cmds) / sizeof(cmds[0]); i++) {
|
|
|
|
if (!strcmp(cmds[i].name,arg[0])) {
|
|
|
|
if (n != cmds[i].numargs) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("%s requires %d arguments (%d given)\n",
|
2009-03-03 19:31:44 -08:00
|
|
|
cmds[i].name, cmds[i].numargs, n);
|
|
|
|
} else {
|
|
|
|
ret = cmds[i].func(arg + 1, reply);
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("unsupported command '%s'\n", arg[0]);
|
2009-03-03 19:31:44 -08:00
|
|
|
|
|
|
|
done:
|
|
|
|
if (reply[0]) {
|
|
|
|
n = snprintf(cmd, BUFFER_MAX, "%d %s", ret, reply);
|
|
|
|
} else {
|
|
|
|
n = snprintf(cmd, BUFFER_MAX, "%d", ret);
|
|
|
|
}
|
|
|
|
if (n > BUFFER_MAX) n = BUFFER_MAX;
|
|
|
|
count = n;
|
|
|
|
|
2012-01-04 20:05:49 +00:00
|
|
|
// ALOGI("reply: '%s'\n", cmd);
|
2009-03-03 19:31:44 -08:00
|
|
|
if (writex(s, &count, sizeof(count))) return -1;
|
|
|
|
if (writex(s, cmd, count)) return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-31 13:16:12 -07:00
|
|
|
/**
|
|
|
|
* Initialize all the global variables that are used elsewhere. Returns 0 upon
|
|
|
|
* success and -1 on error.
|
|
|
|
*/
|
|
|
|
void free_globals() {
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < android_system_dirs.count; i++) {
|
|
|
|
if (android_system_dirs.dirs[i].path != NULL) {
|
|
|
|
free(android_system_dirs.dirs[i].path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(android_system_dirs.dirs);
|
|
|
|
}
|
|
|
|
|
|
|
|
int initialize_globals() {
|
|
|
|
// Get the android data directory.
|
|
|
|
if (get_path_from_env(&android_data_dir, "ANDROID_DATA") < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the android app directory.
|
|
|
|
if (copy_and_append(&android_app_dir, &android_data_dir, APP_SUBDIR) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the android protected app directory.
|
|
|
|
if (copy_and_append(&android_app_private_dir, &android_data_dir, PRIVATE_APP_SUBDIR) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the sd-card ASEC mount point.
|
|
|
|
if (get_path_from_env(&android_asec_dir, "ASEC_MOUNTPOINT") < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-07-12 14:46:04 -07:00
|
|
|
// Get the android media directory.
|
|
|
|
if (copy_and_append(&android_media_dir, &android_data_dir, MEDIA_SUBDIR) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-03-31 13:16:12 -07:00
|
|
|
// Take note of the system and vendor directories.
|
|
|
|
android_system_dirs.count = 2;
|
|
|
|
|
|
|
|
android_system_dirs.dirs = calloc(android_system_dirs.count, sizeof(dir_rec_t));
|
|
|
|
if (android_system_dirs.dirs == NULL) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("Couldn't allocate array for dirs; aborting\n");
|
2011-03-31 13:16:12 -07:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// system
|
|
|
|
if (get_path_from_env(&android_system_dirs.dirs[0], "ANDROID_ROOT") < 0) {
|
|
|
|
free_globals();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-04-14 17:35:23 -07:00
|
|
|
// append "app/" to dirs[0]
|
|
|
|
char *system_app_path = build_string2(android_system_dirs.dirs[0].path, APP_SUBDIR);
|
|
|
|
android_system_dirs.dirs[0].path = system_app_path;
|
|
|
|
android_system_dirs.dirs[0].len = strlen(system_app_path);
|
|
|
|
|
2011-03-31 13:16:12 -07:00
|
|
|
// vendor
|
|
|
|
// TODO replace this with an environment variable (doesn't exist yet)
|
2011-04-14 17:35:23 -07:00
|
|
|
android_system_dirs.dirs[1].path = "/vendor/app/";
|
2011-03-31 13:16:12 -07:00
|
|
|
android_system_dirs.dirs[1].len = strlen(android_system_dirs.dirs[1].path);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-14 17:35:23 -07:00
|
|
|
int initialize_directories() {
|
2012-08-14 18:47:09 -07:00
|
|
|
int res = -1;
|
|
|
|
int version = 0;
|
|
|
|
FILE* file;
|
|
|
|
|
|
|
|
// Read current filesystem layout version to handle upgrade paths
|
|
|
|
char version_path[PATH_MAX];
|
|
|
|
if (snprintf(version_path, PATH_MAX, "%s.layout_version", android_data_dir.path) > PATH_MAX) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
file = fopen(version_path, "r");
|
|
|
|
if (file != NULL) {
|
|
|
|
fscanf(file, "%d", &version);
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2011-04-14 17:35:23 -07:00
|
|
|
// /data/user
|
|
|
|
char *user_data_dir = build_string2(android_data_dir.path, SECONDARY_USER_PREFIX);
|
|
|
|
// /data/data
|
|
|
|
char *legacy_data_dir = build_string2(android_data_dir.path, PRIMARY_USER_PREFIX);
|
|
|
|
// /data/user/0
|
2012-08-14 18:47:09 -07:00
|
|
|
char *primary_data_dir = build_string3(android_data_dir.path, SECONDARY_USER_PREFIX, "0");
|
|
|
|
if (!user_data_dir || !legacy_data_dir || !primary_data_dir) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the /data/user directory if necessary
|
|
|
|
if (access(user_data_dir, R_OK) < 0) {
|
|
|
|
if (mkdir(user_data_dir, 0711) < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (chown(user_data_dir, AID_SYSTEM, AID_SYSTEM) < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (chmod(user_data_dir, 0711) < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Make the /data/user/0 symlink to /data/data if necessary
|
|
|
|
if (access(primary_data_dir, R_OK) < 0) {
|
|
|
|
if (symlink(legacy_data_dir, primary_data_dir)) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// /data/media/0
|
|
|
|
char owner_media_dir[PATH_MAX];
|
|
|
|
create_persona_media_path(owner_media_dir, 0);
|
|
|
|
|
|
|
|
if (version == 0) {
|
|
|
|
// Introducing multi-user, so migrate /data/media contents into /data/media/0
|
|
|
|
ALOGD("Migrating /data/media for multi-user");
|
|
|
|
|
|
|
|
// /data/media.tmp
|
|
|
|
char media_tmp_dir[PATH_MAX];
|
|
|
|
snprintf(media_tmp_dir, PATH_MAX, "%smedia.tmp", android_data_dir.path);
|
|
|
|
|
|
|
|
// Only copy when upgrade not already in progress
|
|
|
|
if (access(media_tmp_dir, F_OK) == -1) {
|
|
|
|
if (rename(android_media_dir.path, media_tmp_dir) == -1) {
|
|
|
|
ALOGE("Failed to move legacy media path: %s", strerror(errno));
|
|
|
|
goto fail;
|
2012-03-23 17:52:33 -07:00
|
|
|
}
|
2011-04-14 17:35:23 -07:00
|
|
|
}
|
2012-08-14 18:47:09 -07:00
|
|
|
|
|
|
|
// Create /data/media again
|
|
|
|
if (ensure_dir(android_media_dir.path, 0770, AID_MEDIA_RW, AID_MEDIA_RW) == -1) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move any owner data into place
|
|
|
|
if (access(media_tmp_dir, F_OK) == 0) {
|
|
|
|
if (rename(media_tmp_dir, owner_media_dir) == -1) {
|
|
|
|
ALOGE("Failed to move owner media path: %s", strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
2011-04-14 17:35:23 -07:00
|
|
|
}
|
2012-08-16 23:28:50 -07:00
|
|
|
|
|
|
|
// Ensure media directories for any existing users
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
char user_media_dir[PATH_MAX];
|
|
|
|
|
|
|
|
dir = opendir(user_data_dir);
|
|
|
|
if (dir != NULL) {
|
|
|
|
while ((dirent = readdir(dir))) {
|
|
|
|
if (dirent->d_type == DT_DIR) {
|
|
|
|
const char *name = dirent->d_name;
|
|
|
|
|
|
|
|
// skip "." and ".."
|
|
|
|
if (name[0] == '.') {
|
|
|
|
if (name[1] == 0) continue;
|
|
|
|
if ((name[1] == '.') && (name[2] == 0)) continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// /data/media/<user_id>
|
|
|
|
snprintf(user_media_dir, PATH_MAX, "%s%s", android_media_dir.path, name);
|
|
|
|
if (ensure_dir(user_media_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW) == -1) {
|
|
|
|
ALOGE("Failed to ensure %s: %s", user_media_dir, strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
|
2012-08-14 18:47:09 -07:00
|
|
|
version = 1;
|
2011-04-14 17:35:23 -07:00
|
|
|
}
|
2012-08-14 18:47:09 -07:00
|
|
|
|
|
|
|
// Ensure /data/media/0 is always ready
|
|
|
|
if (ensure_dir(owner_media_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW) == -1) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Persist our current version
|
|
|
|
file = fopen(version_path, "w");
|
|
|
|
if (file != NULL) {
|
|
|
|
fprintf(file, "%d", version);
|
|
|
|
fsync(fileno(file));
|
|
|
|
fclose(file);
|
|
|
|
} else {
|
|
|
|
ALOGE("Failed to save version to %s: %s", version_path, strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Success!
|
|
|
|
res = 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
free(user_data_dir);
|
|
|
|
free(legacy_data_dir);
|
|
|
|
free(primary_data_dir);
|
|
|
|
return res;
|
2011-04-14 17:35:23 -07:00
|
|
|
}
|
|
|
|
|
2011-03-31 13:16:12 -07:00
|
|
|
int main(const int argc, const char *argv[]) {
|
2009-03-03 19:31:44 -08:00
|
|
|
char buf[BUFFER_MAX];
|
|
|
|
struct sockaddr addr;
|
|
|
|
socklen_t alen;
|
|
|
|
int lsocket, s, count;
|
|
|
|
|
2011-03-31 13:16:12 -07:00
|
|
|
if (initialize_globals() < 0) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("Could not initialize globals; exiting.\n");
|
2011-03-31 13:16:12 -07:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2011-04-14 17:35:23 -07:00
|
|
|
if (initialize_directories() < 0) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("Could not create directories; exiting.\n");
|
2011-04-14 17:35:23 -07:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-03-03 19:31:44 -08:00
|
|
|
lsocket = android_get_control_socket(SOCKET_PATH);
|
|
|
|
if (lsocket < 0) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("Failed to get socket from environment: %s\n", strerror(errno));
|
2009-03-03 19:31:44 -08:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (listen(lsocket, 5)) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("Listen on socket failed: %s\n", strerror(errno));
|
2009-03-03 19:31:44 -08:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
fcntl(lsocket, F_SETFD, FD_CLOEXEC);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
alen = sizeof(addr);
|
|
|
|
s = accept(lsocket, &addr, &alen);
|
|
|
|
if (s < 0) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("Accept failed: %s\n", strerror(errno));
|
2009-03-03 19:31:44 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fcntl(s, F_SETFD, FD_CLOEXEC);
|
|
|
|
|
2012-01-04 20:05:49 +00:00
|
|
|
ALOGI("new connection\n");
|
2009-03-03 19:31:44 -08:00
|
|
|
for (;;) {
|
|
|
|
unsigned short count;
|
|
|
|
if (readx(s, &count, sizeof(count))) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("failed to read size\n");
|
2009-03-03 19:31:44 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((count < 1) || (count >= BUFFER_MAX)) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("invalid size %d\n", count);
|
2009-03-03 19:31:44 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (readx(s, buf, count)) {
|
2012-01-06 19:20:56 +00:00
|
|
|
ALOGE("failed to read command\n");
|
2009-03-03 19:31:44 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
buf[count] = 0;
|
|
|
|
if (execute(s, buf)) break;
|
|
|
|
}
|
2012-01-04 20:05:49 +00:00
|
|
|
ALOGI("closing connection\n");
|
2009-03-03 19:31:44 -08:00
|
|
|
close(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|