blob: 895d44fdc25b2e9ab64541c9ff73811732f9bd70 [file] [log] [blame]
Ken Sumrallb87937c2013-03-19 21:46:39 -07001/*
2 * Copyright (C) 2013 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 <sys/types.h>
18#include <sys/stat.h>
19#include <fcntl.h>
20#include <unistd.h>
21#include <sys/ioctl.h>
22#include <string.h>
23#include <limits.h>
24#include <linux/fs.h>
Ken Sumrallbc7d5082013-05-07 17:28:21 -070025#include <time.h>
Ken Sumrallb87937c2013-03-19 21:46:39 -070026#include <fs_mgr.h>
Ken Sumrall743a5ec2013-04-22 18:43:28 -070027#include <pthread.h>
Ken Sumrallb87937c2013-03-19 21:46:39 -070028#define LOG_TAG "fstrim"
29#include "cutils/log.h"
Ken Sumralle78cd4f2013-05-01 23:34:57 -070030#include "hardware_legacy/power.h"
31
Ken Sumrallbc7d5082013-05-07 17:28:21 -070032/* These numbers must match what the MountService specified in
33 * frameworks/base/services/java/com/android/server/EventLogTags.logtags
34 */
35#define LOG_FSTRIM_START 2755
36#define LOG_FSTRIM_FINISH 2756
37
Ken Sumralle78cd4f2013-05-01 23:34:57 -070038#define FSTRIM_WAKELOCK "dofstrim"
Ken Sumrallb87937c2013-03-19 21:46:39 -070039
Mark Salyzyn3e971272014-01-21 13:27:04 -080040#define UNUSED __attribute__((unused))
41
JP Abgrall0cd6cfc2014-08-07 18:44:37 -070042/* From a would-be kernel header */
43#define FIDTRIM _IOWR('f', 128, struct fstrim_range) /* Deep discard trim */
44
Ken Sumrallbc7d5082013-05-07 17:28:21 -070045static unsigned long long get_boot_time_ms(void)
46{
47 struct timespec t;
48 unsigned long long time_ms;
49
50 t.tv_sec = 0;
51 t.tv_nsec = 0;
52 clock_gettime(CLOCK_BOOTTIME, &t);
53 time_ms = (t.tv_sec * 1000LL) + (t.tv_nsec / 1000000);
54
55 return time_ms;
56}
57
JP Abgrall422bdb72014-07-29 13:24:56 -070058static void *do_fstrim_filesystems(void *thread_arg)
Ken Sumrallb87937c2013-03-19 21:46:39 -070059{
60 int i;
61 int fd;
62 int ret = 0;
63 struct fstrim_range range = { 0 };
64 struct stat sb;
65 extern struct fstab *fstab;
JP Abgrall422bdb72014-07-29 13:24:56 -070066 int deep_trim = !!thread_arg;
Ken Sumrallb87937c2013-03-19 21:46:39 -070067
68 SLOGI("Starting fstrim work...\n");
69
Ken Sumrallbc7d5082013-05-07 17:28:21 -070070 /* Log the start time in the event log */
71 LOG_EVENT_LONG(LOG_FSTRIM_START, get_boot_time_ms());
72
Ken Sumrallb87937c2013-03-19 21:46:39 -070073 for (i = 0; i < fstab->num_entries; i++) {
74 /* Skip raw partitions */
75 if (!strcmp(fstab->recs[i].fs_type, "emmc") ||
76 !strcmp(fstab->recs[i].fs_type, "mtd")) {
77 continue;
78 }
79 /* Skip read-only filesystems */
80 if (fstab->recs[i].flags & MS_RDONLY) {
81 continue;
82 }
83 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
84 continue; /* Should we trim fat32 filesystems? */
85 }
86
87 if (stat(fstab->recs[i].mount_point, &sb) == -1) {
88 SLOGE("Cannot stat mount point %s\n", fstab->recs[i].mount_point);
89 ret = -1;
90 continue;
91 }
92 if (!S_ISDIR(sb.st_mode)) {
93 SLOGE("%s is not a directory\n", fstab->recs[i].mount_point);
94 ret = -1;
95 continue;
96 }
97
98 fd = open(fstab->recs[i].mount_point, O_RDONLY);
99 if (fd < 0) {
100 SLOGE("Cannot open %s for FITRIM\n", fstab->recs[i].mount_point);
101 ret = -1;
102 continue;
103 }
104
105 memset(&range, 0, sizeof(range));
106 range.len = ULLONG_MAX;
JP Abgrall422bdb72014-07-29 13:24:56 -0700107 SLOGI("Invoking %s ioctl on %s", deep_trim ? "FIDTRIM" : "FITRIM", fstab->recs[i].mount_point);
JP Abgrall0cd6cfc2014-08-07 18:44:37 -0700108
JP Abgrall422bdb72014-07-29 13:24:56 -0700109 ret = ioctl(fd, deep_trim ? FIDTRIM : FITRIM, &range);
JP Abgrall422bdb72014-07-29 13:24:56 -0700110 if (ret) {
JP Abgrall55cdafd2014-08-07 16:50:44 -0700111 SLOGE("%s ioctl failed on %s (error %d/%s)", deep_trim ? "FIDTRIM" : "FITRIM", fstab->recs[i].mount_point, errno, strerror(errno));
Ken Sumrallb87937c2013-03-19 21:46:39 -0700112 ret = -1;
Ken Sumrall2c4b5632013-04-29 19:17:56 -0700113 } else {
114 SLOGI("Trimmed %llu bytes on %s\n", range.len, fstab->recs[i].mount_point);
Ken Sumrallb87937c2013-03-19 21:46:39 -0700115 }
Ken Sumrallb87937c2013-03-19 21:46:39 -0700116 close(fd);
117 }
Ken Sumrallbc7d5082013-05-07 17:28:21 -0700118
119 /* Log the finish time in the event log */
120 LOG_EVENT_LONG(LOG_FSTRIM_FINISH, get_boot_time_ms());
121
Ken Sumrallb87937c2013-03-19 21:46:39 -0700122 SLOGI("Finished fstrim work.\n");
123
Ken Sumralle78cd4f2013-05-01 23:34:57 -0700124 /* Release the wakelock that let us work */
125 release_wake_lock(FSTRIM_WAKELOCK);
126
Colin Cross346c5b22014-01-22 23:59:41 -0800127 return (void *)(uintptr_t)ret;
Ken Sumrallb87937c2013-03-19 21:46:39 -0700128}
129
JP Abgrall422bdb72014-07-29 13:24:56 -0700130int fstrim_filesystems(int deep_trim)
Ken Sumrall743a5ec2013-04-22 18:43:28 -0700131{
132 pthread_t t;
133 int ret;
134
Ken Sumralle78cd4f2013-05-01 23:34:57 -0700135 /* Get a wakelock as this may take a while, and we don't want the
136 * device to sleep on us.
137 */
138 acquire_wake_lock(PARTIAL_WAKE_LOCK, FSTRIM_WAKELOCK);
139
Ken Sumrall743a5ec2013-04-22 18:43:28 -0700140 /* Depending on the emmc chip and size, this can take upwards
141 * of a few minutes. If done in the same thread as the caller
142 * of this function, that would block vold from accepting any
143 * commands until the trim is finished. So start another thread
144 * to do the work, and return immediately.
145 *
146 * This function should not be called more than once per day, but
147 * even if it is called a second time before the first one finishes,
148 * the kernel will "do the right thing" and split the work between
149 * the two ioctls invoked in separate threads.
150 */
JP Abgrall422bdb72014-07-29 13:24:56 -0700151 ret = pthread_create(&t, NULL, do_fstrim_filesystems, (void *)(intptr_t)deep_trim);
Ken Sumrall743a5ec2013-04-22 18:43:28 -0700152 if (ret) {
153 SLOGE("Cannot create thread to do fstrim");
154 return ret;
155 }
156
157 ret = pthread_detach(t);
158 if (ret) {
159 SLOGE("Cannot detach thread doing fstrim");
160 return ret;
161 }
162
163 return 0;
164}