blob: d4b7d28d0578eb5104513592f888844bdc1deea0 [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 <stdio.h>
18#include <stdlib.h>
19#include <errno.h>
20#include <string.h>
San Mehat3578c412009-10-12 14:51:52 -070021#include <sys/stat.h>
22#include <sys/types.h>
23
24#include <fcntl.h>
25#include <dirent.h>
Ken Sumrall56ad03c2013-02-13 13:00:19 -080026#include <fs_mgr.h>
San Mehatf1b736b2009-10-10 17:22:08 -070027
28#define LOG_TAG "Vold"
29
Ken Sumrallb9738ea2013-03-19 19:42:30 -070030#include "cutils/klog.h"
San Mehatf1b736b2009-10-10 17:22:08 -070031#include "cutils/log.h"
Ken Sumrall56ad03c2013-02-13 13:00:19 -080032#include "cutils/properties.h"
San Mehatf1b736b2009-10-10 17:22:08 -070033
34#include "VolumeManager.h"
35#include "CommandListener.h"
36#include "NetlinkManager.h"
San Mehatae10b912009-10-12 14:57:05 -070037#include "DirectVolume.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070038#include "cryptfs.h"
San Mehatf1b736b2009-10-10 17:22:08 -070039
40static int process_config(VolumeManager *vm);
San Mehat3578c412009-10-12 14:51:52 -070041static void coldboot(const char *path);
San Mehatf1b736b2009-10-10 17:22:08 -070042
Ken Sumrall56ad03c2013-02-13 13:00:19 -080043#define FSTAB_PREFIX "/fstab."
44struct fstab *fstab;
45
San Mehatf1b736b2009-10-10 17:22:08 -070046int main() {
47
48 VolumeManager *vm;
49 CommandListener *cl;
50 NetlinkManager *nm;
51
San Mehat97ac40e2010-03-24 10:24:19 -070052 SLOGI("Vold 2.1 (the revenge) firing up");
San Mehata2677e42009-12-13 10:40:18 -080053
54 mkdir("/dev/block/vold", 0755);
San Mehatf1b736b2009-10-10 17:22:08 -070055
Ken Sumrallb9738ea2013-03-19 19:42:30 -070056 /* For when cryptfs checks and mounts an encrypted filesystem */
57 klog_set_level(6);
58
San Mehatf1b736b2009-10-10 17:22:08 -070059 /* Create our singleton managers */
60 if (!(vm = VolumeManager::Instance())) {
San Mehat97ac40e2010-03-24 10:24:19 -070061 SLOGE("Unable to create VolumeManager");
San Mehatf1b736b2009-10-10 17:22:08 -070062 exit(1);
63 };
64
65 if (!(nm = NetlinkManager::Instance())) {
San Mehat97ac40e2010-03-24 10:24:19 -070066 SLOGE("Unable to create NetlinkManager");
San Mehatf1b736b2009-10-10 17:22:08 -070067 exit(1);
68 };
69
San Mehata2677e42009-12-13 10:40:18 -080070
San Mehatf1b736b2009-10-10 17:22:08 -070071 cl = new CommandListener();
72 vm->setBroadcaster((SocketListener *) cl);
73 nm->setBroadcaster((SocketListener *) cl);
74
75 if (vm->start()) {
San Mehat97ac40e2010-03-24 10:24:19 -070076 SLOGE("Unable to start VolumeManager (%s)", strerror(errno));
San Mehatf1b736b2009-10-10 17:22:08 -070077 exit(1);
78 }
79
80 if (process_config(vm)) {
San Mehat97ac40e2010-03-24 10:24:19 -070081 SLOGE("Error reading configuration (%s)... continuing anyways", strerror(errno));
San Mehatf1b736b2009-10-10 17:22:08 -070082 }
83
84 if (nm->start()) {
San Mehat97ac40e2010-03-24 10:24:19 -070085 SLOGE("Unable to start NetlinkManager (%s)", strerror(errno));
San Mehatf1b736b2009-10-10 17:22:08 -070086 exit(1);
87 }
88
San Mehat3578c412009-10-12 14:51:52 -070089 coldboot("/sys/block");
San Mehat0cde53c2009-12-22 08:32:33 -080090// coldboot("/sys/class/switch");
San Mehat3578c412009-10-12 14:51:52 -070091
San Mehatf1b736b2009-10-10 17:22:08 -070092 /*
93 * Now that we're up, we can respond to commands
94 */
95 if (cl->startListener()) {
San Mehat97ac40e2010-03-24 10:24:19 -070096 SLOGE("Unable to start CommandListener (%s)", strerror(errno));
San Mehatf1b736b2009-10-10 17:22:08 -070097 exit(1);
98 }
99
100 // Eventually we'll become the monitoring thread
101 while(1) {
102 sleep(1000);
103 }
104
San Mehat97ac40e2010-03-24 10:24:19 -0700105 SLOGI("Vold exiting");
San Mehatf1b736b2009-10-10 17:22:08 -0700106 exit(0);
107}
108
San Mehat3578c412009-10-12 14:51:52 -0700109static void do_coldboot(DIR *d, int lvl)
110{
111 struct dirent *de;
112 int dfd, fd;
113
114 dfd = dirfd(d);
115
116 fd = openat(dfd, "uevent", O_WRONLY);
117 if(fd >= 0) {
118 write(fd, "add\n", 4);
119 close(fd);
120 }
121
122 while((de = readdir(d))) {
123 DIR *d2;
124
125 if (de->d_name[0] == '.')
126 continue;
127
128 if (de->d_type != DT_DIR && lvl > 0)
129 continue;
130
131 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
132 if(fd < 0)
133 continue;
134
135 d2 = fdopendir(fd);
136 if(d2 == 0)
137 close(fd);
138 else {
139 do_coldboot(d2, lvl + 1);
140 closedir(d2);
141 }
142 }
143}
144
145static void coldboot(const char *path)
146{
147 DIR *d = opendir(path);
148 if(d) {
149 do_coldboot(d, 0);
150 closedir(d);
151 }
152}
153
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800154static int process_config(VolumeManager *vm)
Ken Sumrall29d8da82011-05-18 17:20:07 -0700155{
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800156 char fstab_filename[PROPERTY_VALUE_MAX + sizeof(FSTAB_PREFIX)];
157 char propbuf[PROPERTY_VALUE_MAX];
158 int i;
159 int ret = -1;
160 int flags;
Ken Sumrall29d8da82011-05-18 17:20:07 -0700161
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800162 property_get("ro.hardware", propbuf, "");
163 snprintf(fstab_filename, sizeof(fstab_filename), FSTAB_PREFIX"%s", propbuf);
Ken Sumrall29d8da82011-05-18 17:20:07 -0700164
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800165 fstab = fs_mgr_read_fstab(fstab_filename);
166 if (!fstab) {
167 SLOGE("failed to open %s\n", fstab_filename);
San Mehatf1b736b2009-10-10 17:22:08 -0700168 return -1;
169 }
170
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800171 /* Loop through entries looking for ones that vold manages */
172 for (i = 0; i < fstab->num_entries; i++) {
173 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
San Mehatae10b912009-10-12 14:57:05 -0700174 DirectVolume *dv = NULL;
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800175 flags = 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700176
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800177 /* Set any flags that might be set for this volume */
178 if (fs_mgr_is_nonremovable(&fstab->recs[i])) {
179 flags |= VOL_NONREMOVABLE;
San Mehata2677e42009-12-13 10:40:18 -0800180 }
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800181 if (fs_mgr_is_encryptable(&fstab->recs[i])) {
182 flags |= VOL_ENCRYPTABLE;
San Mehatf1b736b2009-10-10 17:22:08 -0700183 }
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700184 /* Only set this flag if there is not an emulated sd card */
185 if (fs_mgr_is_noemulatedsd(&fstab->recs[i]) &&
186 !strcmp(fstab->recs[i].fs_type, "vfat")) {
187 flags |= VOL_PROVIDES_ASEC;
188 }
189 dv = new DirectVolume(vm, &(fstab->recs[i]), flags);
190
191 if (dv->addPath(fstab->recs[i].blk_device)) {
192 SLOGE("Failed to add devpath %s to volume %s",
193 fstab->recs[i].blk_device, fstab->recs[i].label);
194 goto out_fail;
195 }
Ken Sumrall29d8da82011-05-18 17:20:07 -0700196
San Mehatf1b736b2009-10-10 17:22:08 -0700197 vm->addVolume(dv);
San Mehatf1b736b2009-10-10 17:22:08 -0700198 }
199 }
200
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800201 ret = 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700202
San Mehatf1b736b2009-10-10 17:22:08 -0700203out_fail:
Ken Sumrall56ad03c2013-02-13 13:00:19 -0800204 return ret;
San Mehatf1b736b2009-10-10 17:22:08 -0700205}