blob: 31ada686a4ce88fc7b11f7552eb17f2c0ddb53ee [file] [log] [blame]
ynwang62cb3722016-06-17 14:30:48 -07001/*
2 * Copyright (C) 2016 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#define LOG_TAG "storaged"
18#define KLOG_LEVEL 6
19
20#include <fcntl.h>
21#include <getopt.h>
22#include <pthread.h>
23#include <stdio.h>
24#include <sys/capability.h>
25#include <sys/prctl.h>
26#include <sys/resource.h>
27#include <sys/stat.h>
28#include <sys/types.h>
29#include <vector>
30
31#include <android-base/macros.h>
32#include <android-base/stringprintf.h>
33#include <binder/ProcessState.h>
34#include <binder/IServiceManager.h>
35#include <binder/IPCThreadState.h>
36#include <cutils/android_get_control_file.h>
37#include <cutils/klog.h>
38#include <cutils/sched_policy.h>
39#include <private/android_filesystem_config.h>
40
41#include <storaged.h>
42#include <storaged_service.h>
43#include <storaged_utils.h>
44
45storaged_t storaged;
46
47static int drop_privs() {
48 // privilege setting
49 struct sched_param param;
50 memset(&param, 0, sizeof(param));
51
52 if (set_sched_policy(0, SP_BACKGROUND) < 0) return -1;
53
54 if (sched_setscheduler((pid_t) 0, SCHED_BATCH, &param) < 0) return -1;
55
56 if (setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_BACKGROUND) < 0) return -1;
57
58 if (prctl(PR_SET_KEEPCAPS, 1) < 0) return -1;
59
60 std::unique_ptr<struct _cap_struct, int(*)(void *)> caps(cap_init(), cap_free);
61 if (cap_clear(caps.get()) < 0) return -1;
62 cap_value_t cap_value[] = {
63 CAP_SETGID,
64 CAP_SETUID,
65 CAP_SYS_PTRACE // allow access to proc/<pid>/io as non-root user
66 };
67 if (cap_set_flag(caps.get(), CAP_PERMITTED,
68 arraysize(cap_value), cap_value,
69 CAP_SET) < 0) return -1;
70 if (cap_set_flag(caps.get(), CAP_EFFECTIVE,
71 arraysize(cap_value), cap_value,
72 CAP_SET) < 0) return -1;
73 if (cap_set_proc(caps.get()) < 0)
74 return -1;
75
76 gid_t groups[] = { AID_READPROC };
77
78 if (setgroups(sizeof(groups) / sizeof(groups[0]), groups) == -1) return -1;
79
80 if (setgid(AID_SYSTEM) != 0) return -1;
81
82 if (setuid(AID_SYSTEM) != 0) return -1;
83
84 if (cap_set_flag(caps.get(), CAP_PERMITTED, 2, cap_value, CAP_CLEAR) < 0) return -1;
85 if (cap_set_flag(caps.get(), CAP_EFFECTIVE, 2, cap_value, CAP_CLEAR) < 0) return -1;
86 if (cap_set_proc(caps.get()) < 0)
87 return -1;
88
89 return 0;
90}
91
92// Function of storaged's main thread
93extern int fd_dmesg;
94void* storaged_main(void* s) {
95 storaged_t* storaged = (storaged_t*)s;
96
97 if (fd_dmesg >= 0) {
98 static const char start_message[] = {KMSG_PRIORITY(LOG_INFO),
99 's', 't', 'o', 'r', 'a', 'g', 'e', 'd', ':', ' ', 'S', 't', 'a', 'r', 't', '\n'};
100 write(fd_dmesg, start_message, sizeof(start_message));
101 }
102
103 for (;;) {
104 storaged->event();
105 storaged->pause();
106 }
107 return NULL;
108}
109
110static void help_message(void) {
111 printf("usage: storaged [OPTION]\n");
112 printf(" -d --dump Dump task I/O usage to stdout\n");
113 printf(" -s --start Start storaged (default)\n");
114 printf(" --emmc=INTERVAL Set publish interval of emmc lifetime information (in days)\n");
115 printf(" --diskstats=INTERVAL Set publish interval of diskstats (in hours)\n");
116 printf(" --unit=INTERVAL Set storaged's refresh interval (in seconds)\n");
117 fflush(stdout);
118}
119
120#define HOUR_TO_SEC ( 3600 )
121#define DAY_TO_SEC ( 3600 * 24 )
122
123int main(int argc, char** argv) {
124 klog_set_level(KLOG_LEVEL);
125 int flag_main_service = 0;
126 int flag_dump_task = 0;
127 int flag_config = 0;
128 int unit_interval = DEFAULT_PERIODIC_CHORES_INTERVAL_UNIT;
129 int diskstats_interval = DEFAULT_PERIODIC_CHORES_INTERVAL_DISK_STATS_PUBLISH;
130 int emmc_interval = DEFAULT_PERIODIC_CHORES_INTERVAL_EMMC_INFO_PUBLISH;
131 int fd_emmc = -1;
132 int opt;
133
134 for (;;) {
135 int opt_idx = 0;
136 static struct option long_options[] = {
137 {"start", no_argument, 0, 's'},
138 {"kill", no_argument, 0, 'k'},
139 {"dump", no_argument, 0, 'd'},
140 {"help", no_argument, 0, 'h'},
141 {"unit", required_argument, 0, 0 },
142 {"diskstats", required_argument, 0, 0 },
143 {"emmc", required_argument, 0, 0 }
144 };
145 opt = getopt_long(argc, argv, ":skdh0", long_options, &opt_idx);
146 if (opt == -1) {
147 break;
148 }
149
150 switch (opt) {
151 case 0:
152 printf("option %s", long_options[opt_idx].name);
153 if (optarg) {
154 printf(" with arg %s", optarg);
155 if (strcmp(long_options[opt_idx].name, "unit") == 0) {
156 unit_interval = atoi(optarg);
157 if (unit_interval == 0) {
158 fprintf(stderr, "Invalid argument. Option %s requires an integer argument greater than 0.\n",
159 long_options[opt_idx].name);
160 help_message();
161 return -1;
162 }
163 } else if (strcmp(long_options[opt_idx].name, "diskstats") == 0) {
164 diskstats_interval = atoi(optarg) * HOUR_TO_SEC;
165 if (diskstats_interval == 0) {
166 fprintf(stderr, "Invalid argument. Option %s requires an integer argument greater than 0.\n",
167 long_options[opt_idx].name);
168 help_message();
169 return -1;
170 }
171
172 } else if (strcmp(long_options[opt_idx].name, "emmc") == 0) {
173 emmc_interval = atoi(optarg) * DAY_TO_SEC;
174 if (diskstats_interval == 0) {
175 fprintf(stderr, "Invalid argument. Option %s requires an integer argument greater than 0.\n",
176 long_options[opt_idx].name);
177 help_message();
178 return -1;
179 }
180 }
181 flag_config = 1;
182 } else {
183 fprintf(stderr, "Invalid argument. Option %s requires an argument.\n",
184 long_options[opt_idx].name);
185 help_message();
186 return -1;
187 }
188 printf("\n");
189 break;
190 case 's':
191 flag_main_service = 1;
192 break;
193 case 'd':
194 flag_dump_task = 1;
195 break;
196 case 'h':
197 help_message();
198 return 0;
199 case '?':
200 default:
201 fprintf(stderr, "no supported option\n");
202 help_message();
203 return -1;
204 }
205 }
206
207 if (argc == 1) {
208 flag_main_service = 1;
209 }
210
211 if (flag_main_service && flag_dump_task) {
212 fprintf(stderr, "Invalid arguments. Option \"start\" and \"dump\" cannot be used together.\n");
213 help_message();
214 return -1;
215 }
216
217 if (flag_config && flag_dump_task) {
218 fprintf(stderr, "Invalid arguments. Cannot set configs in \'dump\' option.\n");
219 help_message();
220 return -1;
221 }
222
223 if (flag_main_service) { // start main thread
224 static const char dev_kmsg[] = "/dev/kmsg";
225 fd_dmesg = android_get_control_file(dev_kmsg);
226 if (fd_dmesg < 0)
227 fd_dmesg = TEMP_FAILURE_RETRY(open(dev_kmsg, O_WRONLY));
228
229 static const char mmc0_ext_csd[] = "/d/mmc0/mmc0:0001/ext_csd";
230 fd_emmc = android_get_control_file(mmc0_ext_csd);
231 if (fd_emmc < 0)
232 fd_emmc = TEMP_FAILURE_RETRY(open(mmc0_ext_csd, O_RDONLY));
233
234 if (drop_privs() != 0) {
235 return -1;
236 }
237
238 storaged.set_privileged_fds(fd_emmc);
239
240 if (flag_config) {
241 storaged.set_unit_interval(unit_interval);
242 storaged.set_diskstats_interval(diskstats_interval);
243 storaged.set_emmc_interval(emmc_interval);
244 }
245
246 // Start the main thread of storaged
247 pthread_t storaged_main_thread;
248 if (pthread_create(&storaged_main_thread, NULL, storaged_main, &storaged)) {
249 if (fd_dmesg >= 0) {
250 std::string error_message = android::base::StringPrintf(
251 "%s Failed to create main thread\n", kmsg_error_prefix);
252 write(fd_dmesg, error_message.c_str(), error_message.length());
253 }
254 return -1;
255 }
256
257 defaultServiceManager()->addService(String16("storaged"), new Storaged());
258 android::ProcessState::self()->startThreadPool();
259 IPCThreadState::self()->joinThreadPool();
260 pthread_join(storaged_main_thread, NULL);
261
262 close(fd_dmesg);
263 close(fd_emmc);
264
265 return 0;
266 }
267
268 if (flag_dump_task) {
269 sp<IStoraged> storaged_service = get_storaged_service();
270 if (storaged_service == NULL) {
271 fprintf(stderr, "Cannot find storaged service.\nMaybe run storaged --start first?\n");
272 return -1;
273 }
274 std::vector<struct task_info> res = storaged_service->dump_tasks(NULL);
275
276 if (res.size() == 0) {
277 fprintf(stderr, "Task I/O is not readable in this version of kernel.\n");
278 return 0;
279 }
280
281 time_t starttime = storaged.get_starttime();
282
283 if (starttime == (time_t)-1) {
284 fprintf(stderr, "Unknown start time\n");
285 } else {
286 char* time_str = ctime(&starttime);
287 printf("Application I/O was collected by storaged since %s", time_str);
288 }
289
290 sort_running_tasks_info(res);
291 log_console_running_tasks_info(res);
292
ynwang62cb3722016-06-17 14:30:48 -0700293 return 0;
294 }
295
296 return 0;
ynwangaf49d972016-06-17 14:30:48 -0700297}