blob: 36d295072a10595002637b1bb0e893e84389051b [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdlib.h>
18#include <sys/socket.h>
San Mehata19b2502010-01-06 10:33:53 -080019#include <sys/types.h>
San Mehatf1b736b2009-10-10 17:22:08 -070020#include <netinet/in.h>
21#include <arpa/inet.h>
San Mehata19b2502010-01-06 10:33:53 -080022#include <dirent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070023#include <errno.h>
San Mehat2350c442010-03-02 13:16:50 -080024#include <fcntl.h>
Mohamad Ayyash7929aa72014-03-10 15:55:33 -070025#include <fs_mgr.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080026#include <stdio.h>
Olivier Bailly37dcda62010-11-16 10:41:53 -080027#include <string.h>
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070028#include <stdint.h>
29#include <inttypes.h>
San Mehatf1b736b2009-10-10 17:22:08 -070030
San Mehatd9a4e352010-03-12 13:32:47 -080031#define LOG_TAG "VoldCmdListener"
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070032
33#include <base/stringprintf.h>
34#include <cutils/fs.h>
San Mehatf1b736b2009-10-10 17:22:08 -070035#include <cutils/log.h>
36
37#include <sysutils/SocketClient.h>
Ken Sumrall3ad90722011-10-04 20:38:29 -070038#include <private/android_filesystem_config.h>
San Mehatf1b736b2009-10-10 17:22:08 -070039
40#include "CommandListener.h"
41#include "VolumeManager.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070042#include "VolumeBase.h"
San Mehata2677e42009-12-13 10:40:18 -080043#include "ResponseCode.h"
San Mehat586536c2010-02-16 17:12:00 -080044#include "Process.h"
San Mehatd9a4e352010-03-12 13:32:47 -080045#include "Loop.h"
46#include "Devmapper.h"
Ken Sumrall8f869aa2010-12-03 03:47:09 -080047#include "cryptfs.h"
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070048#include "MoveTask.h"
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070049#include "TrimTask.h"
San Mehatf1b736b2009-10-10 17:22:08 -070050
Dianne Hackborn3fd60b42012-11-27 16:00:04 -080051#define DUMP_ARGS 0
52
San Mehatf1b736b2009-10-10 17:22:08 -070053CommandListener::CommandListener() :
Robert Greenwalt149aa3e2012-02-16 14:43:03 -080054 FrameworkListener("vold", true) {
San Mehatd9a4e352010-03-12 13:32:47 -080055 registerCmd(new DumpCmd());
San Mehateba65e92010-01-29 05:15:16 -080056 registerCmd(new VolumeCmd());
57 registerCmd(new AsecCmd());
Kenny Root508c0e12010-07-12 09:59:49 -070058 registerCmd(new ObbCmd());
San Mehat586536c2010-02-16 17:12:00 -080059 registerCmd(new StorageCmd());
Ken Sumrallb87937c2013-03-19 21:46:39 -070060 registerCmd(new FstrimCmd());
San Mehatf1b736b2009-10-10 17:22:08 -070061}
62
Dianne Hackborn3fd60b42012-11-27 16:00:04 -080063#if DUMP_ARGS
Mark Salyzyn3e971272014-01-21 13:27:04 -080064void CommandListener::dumpArgs(int argc, char **argv, int argObscure) {
San Mehatd9a4e352010-03-12 13:32:47 -080065 char buffer[4096];
66 char *p = buffer;
67
68 memset(buffer, 0, sizeof(buffer));
69 int i;
70 for (i = 0; i < argc; i++) {
Ken Sumrall8f869aa2010-12-03 03:47:09 -080071 unsigned int len = strlen(argv[i]) + 1; // Account for space
San Mehatd9a4e352010-03-12 13:32:47 -080072 if (i == argObscure) {
73 len += 2; // Account for {}
74 }
75 if (((p - buffer) + len) < (sizeof(buffer)-1)) {
76 if (i == argObscure) {
77 *p++ = '{';
78 *p++ = '}';
79 *p++ = ' ';
80 continue;
81 }
82 strcpy(p, argv[i]);
83 p+= strlen(argv[i]);
84 if (i != (argc -1)) {
85 *p++ = ' ';
86 }
87 }
88 }
San Mehat97ac40e2010-03-24 10:24:19 -070089 SLOGD("%s", buffer);
San Mehatd9a4e352010-03-12 13:32:47 -080090}
Mark Salyzyn3e971272014-01-21 13:27:04 -080091#else
92void CommandListener::dumpArgs(int /*argc*/, char ** /*argv*/, int /*argObscure*/) { }
93#endif
San Mehatd9a4e352010-03-12 13:32:47 -080094
Jeff Sharkey36801cc2015-03-13 16:09:20 -070095int CommandListener::sendGenericOkFail(SocketClient *cli, int cond) {
96 if (!cond) {
97 return cli->sendMsg(ResponseCode::CommandOkay, "Command succeeded", false);
98 } else {
99 return cli->sendMsg(ResponseCode::OperationFailed, "Command failed", false);
100 }
101}
102
San Mehatd9a4e352010-03-12 13:32:47 -0800103CommandListener::DumpCmd::DumpCmd() :
104 VoldCommand("dump") {
105}
106
107int CommandListener::DumpCmd::runCommand(SocketClient *cli,
Mark Salyzyn3e971272014-01-21 13:27:04 -0800108 int /*argc*/, char ** /*argv*/) {
San Mehatd9a4e352010-03-12 13:32:47 -0800109 cli->sendMsg(0, "Dumping loop status", false);
110 if (Loop::dumpState(cli)) {
111 cli->sendMsg(ResponseCode::CommandOkay, "Loop dump failed", true);
112 }
113 cli->sendMsg(0, "Dumping DM status", false);
114 if (Devmapper::dumpState(cli)) {
115 cli->sendMsg(ResponseCode::CommandOkay, "Devmapper dump failed", true);
116 }
San Mehat96597e82010-03-17 09:50:54 -0700117 cli->sendMsg(0, "Dumping mounted filesystems", false);
118 FILE *fp = fopen("/proc/mounts", "r");
119 if (fp) {
120 char line[1024];
121 while (fgets(line, sizeof(line), fp)) {
122 line[strlen(line)-1] = '\0';
123 cli->sendMsg(0, line, false);;
124 }
125 fclose(fp);
126 }
San Mehatd9a4e352010-03-12 13:32:47 -0800127
128 cli->sendMsg(ResponseCode::CommandOkay, "dump complete", false);
129 return 0;
130}
131
San Mehateba65e92010-01-29 05:15:16 -0800132CommandListener::VolumeCmd::VolumeCmd() :
133 VoldCommand("volume") {
San Mehatf1b736b2009-10-10 17:22:08 -0700134}
135
San Mehateba65e92010-01-29 05:15:16 -0800136int CommandListener::VolumeCmd::runCommand(SocketClient *cli,
Mohamad Ayyash7929aa72014-03-10 15:55:33 -0700137 int argc, char **argv) {
San Mehatd9a4e352010-03-12 13:32:47 -0800138 dumpArgs(argc, argv, -1);
139
San Mehateba65e92010-01-29 05:15:16 -0800140 if (argc < 2) {
141 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument", false);
142 return 0;
San Mehat49e2bce2009-10-12 16:29:01 -0700143 }
144
San Mehateba65e92010-01-29 05:15:16 -0800145 VolumeManager *vm = VolumeManager::Instance();
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700146 std::lock_guard<std::mutex> lock(vm->getLock());
San Mehatf1b736b2009-10-10 17:22:08 -0700147
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700148 // TODO: tease out methods not directly related to volumes
149
150 std::string cmd(argv[1]);
151 if (cmd == "reset") {
152 return sendGenericOkFail(cli, vm->reset());
153
154 } else if (cmd == "shutdown") {
155 return sendGenericOkFail(cli, vm->shutdown());
156
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700157 } else if (cmd == "debug") {
158 return sendGenericOkFail(cli, vm->setDebug(true));
159
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700160 } else if (cmd == "partition" && argc > 3) {
161 // partition [diskId] [public|private|mixed] [ratio]
162 std::string id(argv[2]);
163 auto disk = vm->findDisk(id);
164 if (disk == nullptr) {
165 return cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown disk", false);
San Mehat57df7bf2010-03-14 13:41:27 -0700166 }
167
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700168 std::string type(argv[3]);
169 if (type == "public") {
170 return sendGenericOkFail(cli, disk->partitionPublic());
171 } else if (type == "private") {
172 return sendGenericOkFail(cli, disk->partitionPrivate());
173 } else if (type == "mixed") {
174 if (argc < 4) {
175 return cli->sendMsg(ResponseCode::CommandSyntaxError, nullptr, false);
176 }
177 int frac = atoi(argv[4]);
178 return sendGenericOkFail(cli, disk->partitionMixed(frac));
San Mehateba65e92010-01-29 05:15:16 -0800179 } else {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700180 return cli->sendMsg(ResponseCode::CommandSyntaxError, nullptr, false);
San Mehateba65e92010-01-29 05:15:16 -0800181 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700182
183 } else if (cmd == "mkdirs" && argc > 2) {
184 // mkdirs [path]
185 return sendGenericOkFail(cli, vm->mkdirs(argv[2]));
186
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700187 } else if (cmd == "user_added" && argc > 3) {
188 // user_added [user] [serial]
189 return sendGenericOkFail(cli, vm->onUserAdded(atoi(argv[2]), atoi(argv[3])));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700190
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700191 } else if (cmd == "user_removed" && argc > 2) {
192 // user_removed [user]
193 return sendGenericOkFail(cli, vm->onUserRemoved(atoi(argv[2])));
194
195 } else if (cmd == "user_started" && argc > 2) {
196 // user_started [user]
197 return sendGenericOkFail(cli, vm->onUserStarted(atoi(argv[2])));
198
199 } else if (cmd == "user_stopped" && argc > 2) {
200 // user_stopped [user]
201 return sendGenericOkFail(cli, vm->onUserStopped(atoi(argv[2])));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700202
203 } else if (cmd == "mount" && argc > 2) {
204 // mount [volId] [flags] [user]
205 std::string id(argv[2]);
206 auto vol = vm->findVolume(id);
207 if (vol == nullptr) {
208 return cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown volume", false);
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700209 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700210
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700211 int mountFlags = (argc > 3) ? atoi(argv[3]) : 0;
212 userid_t mountUserId = (argc > 4) ? atoi(argv[4]) : -1;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700213
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700214 vol->setMountFlags(mountFlags);
215 vol->setMountUserId(mountUserId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700216
Jeff Sharkey1bfb3752015-04-29 15:22:23 -0700217 int res = vol->mount();
218 if (mountFlags & android::vold::VolumeBase::MountFlags::kPrimary) {
219 vm->setPrimary(vol);
220 }
221 return sendGenericOkFail(cli, res);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700222
223 } else if (cmd == "unmount" && argc > 2) {
224 // unmount [volId]
225 std::string id(argv[2]);
226 auto vol = vm->findVolume(id);
227 if (vol == nullptr) {
228 return cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown volume", false);
229 }
230
231 return sendGenericOkFail(cli, vol->unmount());
232
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700233 } else if (cmd == "format" && argc > 3) {
234 // format [volId] [fsType|auto]
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700235 std::string id(argv[2]);
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700236 std::string fsType(argv[3]);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700237 auto vol = vm->findVolume(id);
238 if (vol == nullptr) {
239 return cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown volume", false);
240 }
241
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700242 return sendGenericOkFail(cli, vol->format(fsType));
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700243
244 } else if (cmd == "move_storage" && argc > 3) {
245 // move_storage [fromVolId] [toVolId]
246 auto fromVol = vm->findVolume(std::string(argv[2]));
247 auto toVol = vm->findVolume(std::string(argv[3]));
248 if (fromVol == nullptr || toVol == nullptr) {
249 return cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown volume", false);
250 }
251
252 (new android::vold::MoveTask(fromVol, toVol))->start();
253 return sendGenericOkFail(cli, 0);
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700254
255 } else if (cmd == "benchmark" && argc > 2) {
256 // benchmark [volId]
257 std::string id(argv[2]);
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700258 nsecs_t res = vm->benchmarkPrivate(id);
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700259 return cli->sendMsg(ResponseCode::CommandOkay,
260 android::base::StringPrintf("%" PRId64, res).c_str(), false);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700261
262 } else if (cmd == "forget_partition" && argc > 2) {
263 // forget_partition [partGuid]
264 std::string partGuid(argv[2]);
265 return sendGenericOkFail(cli, vm->forgetPartition(partGuid));
Jeff Sharkey66270a22015-06-24 11:49:24 -0700266
267 } else if (cmd == "remount_uid" && argc > 3) {
268 // remount_uid [uid] [none|default|read|write]
269 uid_t uid = atoi(argv[2]);
270 std::string mode(argv[3]);
271 return sendGenericOkFail(cli, vm->remountUid(uid, mode));
San Mehateba65e92010-01-29 05:15:16 -0800272 }
273
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700274 return cli->sendMsg(ResponseCode::CommandSyntaxError, nullptr, false);
San Mehatf1b736b2009-10-10 17:22:08 -0700275}
276
San Mehat586536c2010-02-16 17:12:00 -0800277CommandListener::StorageCmd::StorageCmd() :
278 VoldCommand("storage") {
279}
280
281int CommandListener::StorageCmd::runCommand(SocketClient *cli,
282 int argc, char **argv) {
Mohamad Ayyash7929aa72014-03-10 15:55:33 -0700283 /* Guarantied to be initialized by vold's main() before the CommandListener is active */
284 extern struct fstab *fstab;
285
San Mehatd9a4e352010-03-12 13:32:47 -0800286 dumpArgs(argc, argv, -1);
287
San Mehat586536c2010-02-16 17:12:00 -0800288 if (argc < 2) {
289 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument", false);
290 return 0;
291 }
292
Mohamad Ayyash7929aa72014-03-10 15:55:33 -0700293 if (!strcmp(argv[1], "mountall")) {
294 if (argc != 2) {
295 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: mountall", false);
296 return 0;
297 }
298 fs_mgr_mount_all(fstab);
299 cli->sendMsg(ResponseCode::CommandOkay, "Mountall ran successfully", false);
300 return 0;
301 }
San Mehat586536c2010-02-16 17:12:00 -0800302 if (!strcmp(argv[1], "users")) {
303 DIR *dir;
304 struct dirent *de;
305
JP Abgralledf7adf2014-03-12 10:41:05 -0700306 if (argc < 3) {
307 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument: user <mountpoint>", false);
308 return 0;
309 }
San Mehat586536c2010-02-16 17:12:00 -0800310 if (!(dir = opendir("/proc"))) {
311 cli->sendMsg(ResponseCode::OperationFailed, "Failed to open /proc", true);
312 return 0;
313 }
314
315 while ((de = readdir(dir))) {
316 int pid = Process::getPid(de->d_name);
317
318 if (pid < 0) {
319 continue;
320 }
321
322 char processName[255];
323 Process::getProcessName(pid, processName, sizeof(processName));
324
325 if (Process::checkFileDescriptorSymLinks(pid, argv[2]) ||
326 Process::checkFileMaps(pid, argv[2]) ||
327 Process::checkSymLink(pid, argv[2], "cwd") ||
328 Process::checkSymLink(pid, argv[2], "root") ||
329 Process::checkSymLink(pid, argv[2], "exe")) {
330
331 char msg[1024];
332 snprintf(msg, sizeof(msg), "%d %s", pid, processName);
333 cli->sendMsg(ResponseCode::StorageUsersListResult, msg, false);
334 }
335 }
336 closedir(dir);
337 cli->sendMsg(ResponseCode::CommandOkay, "Storage user list complete", false);
338 } else {
339 cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown storage cmd", false);
340 }
341 return 0;
342}
343
San Mehateba65e92010-01-29 05:15:16 -0800344CommandListener::AsecCmd::AsecCmd() :
345 VoldCommand("asec") {
San Mehata19b2502010-01-06 10:33:53 -0800346}
347
Kenny Root344ca102012-04-03 17:23:01 -0700348void CommandListener::AsecCmd::listAsecsInDirectory(SocketClient *cli, const char *directory) {
349 DIR *d = opendir(directory);
350
351 if (!d) {
352 cli->sendMsg(ResponseCode::OperationFailed, "Failed to open asec dir", true);
353 return;
354 }
355
356 size_t dirent_len = offsetof(struct dirent, d_name) +
Elliott Hughes8c480f72012-10-26 16:57:19 -0700357 fpathconf(dirfd(d), _PC_NAME_MAX) + 1;
Kenny Root344ca102012-04-03 17:23:01 -0700358
359 struct dirent *dent = (struct dirent *) malloc(dirent_len);
360 if (dent == NULL) {
361 cli->sendMsg(ResponseCode::OperationFailed, "Failed to allocate memory", true);
362 return;
363 }
364
365 struct dirent *result;
366
367 while (!readdir_r(d, dent, &result) && result != NULL) {
368 if (dent->d_name[0] == '.')
369 continue;
370 if (dent->d_type != DT_REG)
371 continue;
372 size_t name_len = strlen(dent->d_name);
373 if (name_len > 5 && name_len < 260 &&
374 !strcmp(&dent->d_name[name_len - 5], ".asec")) {
375 char id[255];
376 memset(id, 0, sizeof(id));
Kenny Root7b0bc852012-04-27 15:33:58 -0700377 strlcpy(id, dent->d_name, name_len - 4);
Kenny Root344ca102012-04-03 17:23:01 -0700378 cli->sendMsg(ResponseCode::AsecListResult, id, false);
379 }
380 }
381 closedir(d);
382
383 free(dent);
384}
385
San Mehateba65e92010-01-29 05:15:16 -0800386int CommandListener::AsecCmd::runCommand(SocketClient *cli,
387 int argc, char **argv) {
388 if (argc < 2) {
389 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument", false);
San Mehata19b2502010-01-06 10:33:53 -0800390 return 0;
391 }
392
San Mehateba65e92010-01-29 05:15:16 -0800393 VolumeManager *vm = VolumeManager::Instance();
394 int rc = 0;
San Mehata19b2502010-01-06 10:33:53 -0800395
San Mehateba65e92010-01-29 05:15:16 -0800396 if (!strcmp(argv[1], "list")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800397 dumpArgs(argc, argv, -1);
San Mehateba65e92010-01-29 05:15:16 -0800398
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700399 listAsecsInDirectory(cli, VolumeManager::SEC_ASECDIR_EXT);
400 listAsecsInDirectory(cli, VolumeManager::SEC_ASECDIR_INT);
San Mehateba65e92010-01-29 05:15:16 -0800401 } else if (!strcmp(argv[1], "create")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800402 dumpArgs(argc, argv, 5);
Kenny Root344ca102012-04-03 17:23:01 -0700403 if (argc != 8) {
San Mehateba65e92010-01-29 05:15:16 -0800404 cli->sendMsg(ResponseCode::CommandSyntaxError,
Kenny Root344ca102012-04-03 17:23:01 -0700405 "Usage: asec create <container-id> <size_mb> <fstype> <key> <ownerUid> "
406 "<isExternal>", false);
San Mehateba65e92010-01-29 05:15:16 -0800407 return 0;
408 }
409
410 unsigned int numSectors = (atoi(argv[3]) * (1024 * 1024)) / 512;
Kenny Root344ca102012-04-03 17:23:01 -0700411 const bool isExternal = (atoi(argv[7]) == 1);
412 rc = vm->createAsec(argv[2], numSectors, argv[4], argv[5], atoi(argv[6]), isExternal);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700413 } else if (!strcmp(argv[1], "resize")) {
414 dumpArgs(argc, argv, -1);
415 if (argc != 5) {
416 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec resize <container-id> <size_mb> <key>", false);
417 return 0;
418 }
419 unsigned int numSectors = (atoi(argv[3]) * (1024 * 1024)) / 512;
420 rc = vm->resizeAsec(argv[2], numSectors, argv[4]);
San Mehateba65e92010-01-29 05:15:16 -0800421 } else if (!strcmp(argv[1], "finalize")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800422 dumpArgs(argc, argv, -1);
San Mehateba65e92010-01-29 05:15:16 -0800423 if (argc != 3) {
424 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec finalize <container-id>", false);
425 return 0;
426 }
San Mehat8f2875b2010-02-18 11:40:49 -0800427 rc = vm->finalizeAsec(argv[2]);
Kenny Root344ca102012-04-03 17:23:01 -0700428 } else if (!strcmp(argv[1], "fixperms")) {
429 dumpArgs(argc, argv, -1);
430 if (argc != 5) {
431 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec fixperms <container-id> <gid> <filename>", false);
432 return 0;
433 }
434
435 char *endptr;
436 gid_t gid = (gid_t) strtoul(argv[3], &endptr, 10);
437 if (*endptr != '\0') {
438 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec fixperms <container-id> <gid> <filename>", false);
439 return 0;
440 }
441
442 rc = vm->fixupAsecPermissions(argv[2], gid, argv[4]);
San Mehateba65e92010-01-29 05:15:16 -0800443 } else if (!strcmp(argv[1], "destroy")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800444 dumpArgs(argc, argv, -1);
San Mehat4ba89482010-02-18 09:00:18 -0800445 if (argc < 3) {
446 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec destroy <container-id> [force]", false);
San Mehateba65e92010-01-29 05:15:16 -0800447 return 0;
448 }
San Mehat4ba89482010-02-18 09:00:18 -0800449 bool force = false;
450 if (argc > 3 && !strcmp(argv[3], "force")) {
451 force = true;
452 }
San Mehat8f2875b2010-02-18 11:40:49 -0800453 rc = vm->destroyAsec(argv[2], force);
San Mehateba65e92010-01-29 05:15:16 -0800454 } else if (!strcmp(argv[1], "mount")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800455 dumpArgs(argc, argv, 3);
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700456 if (argc != 6) {
San Mehateba65e92010-01-29 05:15:16 -0800457 cli->sendMsg(ResponseCode::CommandSyntaxError,
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700458 "Usage: asec mount <namespace-id> <key> <ownerUid> <ro|rw>", false);
San Mehateba65e92010-01-29 05:15:16 -0800459 return 0;
460 }
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700461 bool readOnly = true;
462 if (!strcmp(argv[5], "rw")) {
463 readOnly = false;
464 }
465 rc = vm->mountAsec(argv[2], argv[3], atoi(argv[4]), readOnly);
San Mehateba65e92010-01-29 05:15:16 -0800466 } else if (!strcmp(argv[1], "unmount")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800467 dumpArgs(argc, argv, -1);
San Mehat4ba89482010-02-18 09:00:18 -0800468 if (argc < 3) {
469 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec unmount <container-id> [force]", false);
San Mehateba65e92010-01-29 05:15:16 -0800470 return 0;
471 }
San Mehat4ba89482010-02-18 09:00:18 -0800472 bool force = false;
473 if (argc > 3 && !strcmp(argv[3], "force")) {
474 force = true;
475 }
San Mehat8f2875b2010-02-18 11:40:49 -0800476 rc = vm->unmountAsec(argv[2], force);
San Mehateba65e92010-01-29 05:15:16 -0800477 } else if (!strcmp(argv[1], "rename")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800478 dumpArgs(argc, argv, -1);
San Mehateba65e92010-01-29 05:15:16 -0800479 if (argc != 4) {
480 cli->sendMsg(ResponseCode::CommandSyntaxError,
481 "Usage: asec rename <old_id> <new_id>", false);
482 return 0;
483 }
San Mehat8f2875b2010-02-18 11:40:49 -0800484 rc = vm->renameAsec(argv[2], argv[3]);
San Mehateba65e92010-01-29 05:15:16 -0800485 } else if (!strcmp(argv[1], "path")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800486 dumpArgs(argc, argv, -1);
San Mehateba65e92010-01-29 05:15:16 -0800487 if (argc != 3) {
488 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec path <container-id>", false);
489 return 0;
490 }
491 char path[255];
492
San Mehat88ac2c02010-03-23 11:15:58 -0700493 if (!(rc = vm->getAsecMountPath(argv[2], path, sizeof(path)))) {
San Mehateba65e92010-01-29 05:15:16 -0800494 cli->sendMsg(ResponseCode::AsecPathResult, path, false);
San Mehat88ac2c02010-03-23 11:15:58 -0700495 return 0;
San Mehateba65e92010-01-29 05:15:16 -0800496 }
Dianne Hackborn736910c2011-06-27 13:37:07 -0700497 } else if (!strcmp(argv[1], "fspath")) {
498 dumpArgs(argc, argv, -1);
499 if (argc != 3) {
500 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec fspath <container-id>", false);
501 return 0;
502 }
503 char path[255];
504
505 if (!(rc = vm->getAsecFilesystemPath(argv[2], path, sizeof(path)))) {
506 cli->sendMsg(ResponseCode::AsecPathResult, path, false);
507 return 0;
508 }
San Mehata19b2502010-01-06 10:33:53 -0800509 } else {
San Mehatd9a4e352010-03-12 13:32:47 -0800510 dumpArgs(argc, argv, -1);
San Mehateba65e92010-01-29 05:15:16 -0800511 cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown asec cmd", false);
San Mehata19b2502010-01-06 10:33:53 -0800512 }
513
San Mehat8f2875b2010-02-18 11:40:49 -0800514 if (!rc) {
515 cli->sendMsg(ResponseCode::CommandOkay, "asec operation succeeded", false);
516 } else {
517 rc = ResponseCode::convertFromErrno();
518 cli->sendMsg(rc, "asec operation failed", true);
519 }
520
San Mehata19b2502010-01-06 10:33:53 -0800521 return 0;
522}
San Mehat2350c442010-03-02 13:16:50 -0800523
Kenny Root508c0e12010-07-12 09:59:49 -0700524CommandListener::ObbCmd::ObbCmd() :
525 VoldCommand("obb") {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700526}
527
Kenny Root508c0e12010-07-12 09:59:49 -0700528int CommandListener::ObbCmd::runCommand(SocketClient *cli,
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700529 int argc, char **argv) {
530 if (argc < 2) {
531 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument", false);
532 return 0;
533 }
534
535 VolumeManager *vm = VolumeManager::Instance();
536 int rc = 0;
537
Kenny Root508c0e12010-07-12 09:59:49 -0700538 if (!strcmp(argv[1], "list")) {
539 dumpArgs(argc, argv, -1);
540
541 rc = vm->listMountedObbs(cli);
542 } else if (!strcmp(argv[1], "mount")) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700543 dumpArgs(argc, argv, 3);
544 if (argc != 5) {
545 cli->sendMsg(ResponseCode::CommandSyntaxError,
Jeff Sharkey69479042012-09-25 16:14:57 -0700546 "Usage: obb mount <filename> <key> <ownerGid>", false);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700547 return 0;
548 }
Kenny Root508c0e12010-07-12 09:59:49 -0700549 rc = vm->mountObb(argv[2], argv[3], atoi(argv[4]));
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700550 } else if (!strcmp(argv[1], "unmount")) {
551 dumpArgs(argc, argv, -1);
552 if (argc < 3) {
Kenny Root508c0e12010-07-12 09:59:49 -0700553 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: obb unmount <source file> [force]", false);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700554 return 0;
555 }
556 bool force = false;
557 if (argc > 3 && !strcmp(argv[3], "force")) {
558 force = true;
559 }
Kenny Root508c0e12010-07-12 09:59:49 -0700560 rc = vm->unmountObb(argv[2], force);
561 } else if (!strcmp(argv[1], "path")) {
562 dumpArgs(argc, argv, -1);
563 if (argc != 3) {
564 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: obb path <source file>", false);
565 return 0;
566 }
567 char path[255];
568
569 if (!(rc = vm->getObbMountPath(argv[2], path, sizeof(path)))) {
570 cli->sendMsg(ResponseCode::AsecPathResult, path, false);
571 return 0;
572 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700573 } else {
574 dumpArgs(argc, argv, -1);
Kenny Root508c0e12010-07-12 09:59:49 -0700575 cli->sendMsg(ResponseCode::CommandSyntaxError, "Unknown obb cmd", false);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700576 }
577
578 if (!rc) {
Kenny Root508c0e12010-07-12 09:59:49 -0700579 cli->sendMsg(ResponseCode::CommandOkay, "obb operation succeeded", false);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700580 } else {
581 rc = ResponseCode::convertFromErrno();
Kenny Root508c0e12010-07-12 09:59:49 -0700582 cli->sendMsg(rc, "obb operation failed", true);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700583 }
584
585 return 0;
586}
587
Ken Sumrallb87937c2013-03-19 21:46:39 -0700588CommandListener::FstrimCmd::FstrimCmd() :
589 VoldCommand("fstrim") {
590}
591int CommandListener::FstrimCmd::runCommand(SocketClient *cli,
592 int argc, char **argv) {
593 if ((cli->getUid() != 0) && (cli->getUid() != AID_SYSTEM)) {
594 cli->sendMsg(ResponseCode::CommandNoPermission, "No permission to run fstrim commands", false);
595 return 0;
596 }
597
598 if (argc < 2) {
599 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument", false);
600 return 0;
601 }
602
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700603 VolumeManager *vm = VolumeManager::Instance();
604 std::lock_guard<std::mutex> lock(vm->getLock());
Ken Sumrallb87937c2013-03-19 21:46:39 -0700605
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700606 int flags = 0;
607
608 std::string cmd(argv[1]);
609 if (cmd == "dotrim") {
610 flags = 0;
611 } else if (cmd == "dotrimbench") {
612 flags = android::vold::TrimTask::Flags::kBenchmarkAfter;
613 } else if (cmd == "dodtrim") {
614 flags = android::vold::TrimTask::Flags::kDeepTrim;
615 } else if (cmd == "dodtrimbench") {
616 flags = android::vold::TrimTask::Flags::kDeepTrim
617 | android::vold::TrimTask::Flags::kBenchmarkAfter;
Ken Sumrallb87937c2013-03-19 21:46:39 -0700618 }
619
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700620 (new android::vold::TrimTask(flags))->start();
621 return sendGenericOkFail(cli, 0);
Ken Sumrallb87937c2013-03-19 21:46:39 -0700622}