blob: 2c7f5a9cd55492454eb5313dc60afc4925478c11 [file] [log] [blame]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001/*
Mark Salyzyn154f4602014-02-20 14:59:07 -08002 * Copyright (C) 2007-2014 The Android Open Source Project
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07003 *
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 <errno.h>
Daniel Leungc0c1ffe2012-07-02 11:32:30 -070018#include <fnmatch.h>
Olivier Baillyb93e5812010-11-17 11:47:23 -080019#include <stddef.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070020#include <stdio.h>
21#include <stdlib.h>
22#include <sys/stat.h>
23#include <sys/types.h>
24
25#include <fcntl.h>
26#include <dirent.h>
27#include <unistd.h>
28#include <string.h>
29
30#include <sys/socket.h>
31#include <sys/un.h>
32#include <linux/netlink.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050033
Stephen Smalleye46f9d52012-01-13 08:48:47 -050034#include <selinux/selinux.h>
35#include <selinux/label.h>
Stephen Smalleyae6f3d72012-05-01 15:02:53 -040036#include <selinux/android.h>
Stephen Smalleye2eb69d2013-04-16 09:30:30 -040037#include <selinux/avc.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050038
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070039#include <private/android_filesystem_config.h>
40#include <sys/time.h>
Colin Cross982a8152010-06-03 12:21:01 -070041#include <sys/wait.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070042
Dima Zavinda04c522011-09-01 17:09:44 -070043#include <cutils/list.h>
Vernon Tang3f582e92011-04-25 13:08:17 +100044#include <cutils/uevent.h>
45
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070046#include "devices.h"
Greg Hackmann3312aa82013-11-18 15:24:40 -080047#include "ueventd_parser.h"
Colin Crossb0ab94b2010-04-08 16:16:20 -070048#include "util.h"
Colin Crossed8a7d82010-04-19 17:05:34 -070049#include "log.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070050
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070051#define SYSFS_PREFIX "/sys"
Daniel Rosenbergd1d96022015-03-20 15:10:29 -070052static const char *firmware_dirs[] = { "/etc/firmware",
53 "/vendor/firmware",
54 "/firmware/image" };
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070055
Stephen Smalleye096e362012-06-11 13:37:39 -040056extern struct selabel_handle *sehandle;
Stephen Smalleye46f9d52012-01-13 08:48:47 -050057
Colin Cross0dd7ca62010-04-13 19:25:51 -070058static int device_fd = -1;
59
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070060struct uevent {
61 const char *action;
62 const char *path;
63 const char *subsystem;
64 const char *firmware;
Colin Crossb0ab94b2010-04-08 16:16:20 -070065 const char *partition_name;
Wei Zhongf97b8872012-03-23 14:15:34 -070066 const char *device_name;
Colin Crossb0ab94b2010-04-08 16:16:20 -070067 int partition_num;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070068 int major;
69 int minor;
70};
71
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070072struct perms_ {
73 char *name;
Brian Swetlandbc57d4c2010-10-26 15:09:43 -070074 char *attr;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070075 mode_t perm;
76 unsigned int uid;
77 unsigned int gid;
78 unsigned short prefix;
Daniel Leungc0c1ffe2012-07-02 11:32:30 -070079 unsigned short wildcard;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070080};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070081
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070082struct perm_node {
83 struct perms_ dp;
84 struct listnode plist;
85};
Brian Swetlandbc57d4c2010-10-26 15:09:43 -070086
Colin Crossfadb85e2011-03-30 18:32:12 -070087struct platform_node {
88 char *name;
Dima Zavinf395c922013-03-06 16:23:57 -080089 char *path;
90 int path_len;
Colin Crossfadb85e2011-03-30 18:32:12 -070091 struct listnode list;
92};
93
Brian Swetlandbc57d4c2010-10-26 15:09:43 -070094static list_declare(sys_perms);
Colin Cross44b65d02010-04-20 14:32:50 -070095static list_declare(dev_perms);
Colin Crossfadb85e2011-03-30 18:32:12 -070096static list_declare(platform_names);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070097
Brian Swetlandbc57d4c2010-10-26 15:09:43 -070098int add_dev_perms(const char *name, const char *attr,
99 mode_t perm, unsigned int uid, unsigned int gid,
Daniel Leungc0c1ffe2012-07-02 11:32:30 -0700100 unsigned short prefix,
101 unsigned short wildcard) {
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800102 struct perm_node *node = (perm_node*) calloc(1, sizeof(*node));
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700103 if (!node)
104 return -ENOMEM;
105
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700106 node->dp.name = strdup(name);
107 if (!node->dp.name)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700108 return -ENOMEM;
109
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700110 if (attr) {
111 node->dp.attr = strdup(attr);
112 if (!node->dp.attr)
113 return -ENOMEM;
114 }
115
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700116 node->dp.perm = perm;
117 node->dp.uid = uid;
118 node->dp.gid = gid;
119 node->dp.prefix = prefix;
Daniel Leungc0c1ffe2012-07-02 11:32:30 -0700120 node->dp.wildcard = wildcard;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700121
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700122 if (attr)
123 list_add_tail(&sys_perms, &node->plist);
124 else
125 list_add_tail(&dev_perms, &node->plist);
126
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700127 return 0;
128}
129
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700130void fixup_sys_perms(const char *upath)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700131{
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700132 char buf[512];
133 struct listnode *node;
134 struct perms_ *dp;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700135
Nick Kralevich3b4c0bd2014-07-03 16:04:34 -0700136 /* upaths omit the "/sys" that paths in this list
137 * contain, so we add 4 when comparing...
138 */
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700139 list_for_each(node, &sys_perms) {
140 dp = &(node_to_item(node, struct perm_node, plist))->dp;
141 if (dp->prefix) {
142 if (strncmp(upath, dp->name + 4, strlen(dp->name + 4)))
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700143 continue;
Daniel Leungc0c1ffe2012-07-02 11:32:30 -0700144 } else if (dp->wildcard) {
145 if (fnmatch(dp->name + 4, upath, FNM_PATHNAME) != 0)
146 continue;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700147 } else {
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700148 if (strcmp(upath, dp->name + 4))
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700149 continue;
150 }
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700151
152 if ((strlen(upath) + strlen(dp->attr) + 6) > sizeof(buf))
Nick Kralevich3b4c0bd2014-07-03 16:04:34 -0700153 break;
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700154
Yabin Cuie2d63af2015-02-17 19:27:51 -0800155 snprintf(buf, sizeof(buf), "/sys%s/%s", upath, dp->attr);
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700156 INFO("fixup %s %d %d 0%o\n", buf, dp->uid, dp->gid, dp->perm);
157 chown(buf, dp->uid, dp->gid);
158 chmod(buf, dp->perm);
Nick Kralevich3b4c0bd2014-07-03 16:04:34 -0700159 }
160
161 // Now fixup SELinux file labels
162 int len = snprintf(buf, sizeof(buf), "/sys%s", upath);
163 if ((len < 0) || ((size_t) len >= sizeof(buf))) {
164 // Overflow
165 return;
166 }
167 if (access(buf, F_OK) == 0) {
168 INFO("restorecon_recursive: %s\n", buf);
169 restorecon_recursive(buf);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700170 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700171}
172
Colin Cross43d537e2014-07-02 13:08:13 -0700173static bool perm_path_matches(const char *path, struct perms_ *dp)
174{
175 if (dp->prefix) {
176 if (strncmp(path, dp->name, strlen(dp->name)) == 0)
177 return true;
178 } else if (dp->wildcard) {
179 if (fnmatch(dp->name, path, FNM_PATHNAME) == 0)
180 return true;
181 } else {
182 if (strcmp(path, dp->name) == 0)
183 return true;
184 }
185
186 return false;
187}
188
189static mode_t get_device_perm(const char *path, const char **links,
190 unsigned *uid, unsigned *gid)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700191{
Colin Cross44b65d02010-04-20 14:32:50 -0700192 struct listnode *node;
193 struct perm_node *perm_node;
194 struct perms_ *dp;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700195
Colin Cross44b65d02010-04-20 14:32:50 -0700196 /* search the perms list in reverse so that ueventd.$hardware can
197 * override ueventd.rc
198 */
199 list_for_each_reverse(node, &dev_perms) {
Colin Cross43d537e2014-07-02 13:08:13 -0700200 bool match = false;
201
Colin Cross44b65d02010-04-20 14:32:50 -0700202 perm_node = node_to_item(node, struct perm_node, plist);
203 dp = &perm_node->dp;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700204
Colin Cross43d537e2014-07-02 13:08:13 -0700205 if (perm_path_matches(path, dp)) {
206 match = true;
Colin Cross44b65d02010-04-20 14:32:50 -0700207 } else {
Colin Cross43d537e2014-07-02 13:08:13 -0700208 if (links) {
209 int i;
210 for (i = 0; links[i]; i++) {
211 if (perm_path_matches(links[i], dp)) {
212 match = true;
213 break;
214 }
215 }
216 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700217 }
Colin Cross43d537e2014-07-02 13:08:13 -0700218
219 if (match) {
220 *uid = dp->uid;
221 *gid = dp->gid;
222 return dp->perm;
223 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700224 }
Colin Cross44b65d02010-04-20 14:32:50 -0700225 /* Default if nothing found. */
226 *uid = 0;
227 *gid = 0;
228 return 0600;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700229}
230
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700231static void make_device(const char *path,
Elliott Hughesf682b472015-02-06 12:19:48 -0800232 const char */*upath*/,
Stephen Smalleyb4c52002014-06-12 12:29:14 -0400233 int block, int major, int minor,
234 const char **links)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700235{
236 unsigned uid;
237 unsigned gid;
238 mode_t mode;
239 dev_t dev;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500240 char *secontext = NULL;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700241
Colin Cross43d537e2014-07-02 13:08:13 -0700242 mode = get_device_perm(path, links, &uid, &gid) | (block ? S_IFBLK : S_IFCHR);
Kenny Rootb5982bf2012-10-16 23:07:05 -0700243
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500244 if (sehandle) {
Stephen Smalleyb4c52002014-06-12 12:29:14 -0400245 selabel_lookup_best_match(sehandle, &secontext, path, links, mode);
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500246 setfscreatecon(secontext);
247 }
Kenny Rootb5982bf2012-10-16 23:07:05 -0700248
Colin Cross17dcc5c2010-09-03 12:25:34 -0700249 dev = makedev(major, minor);
Nick Pelly6405c692010-01-21 18:13:39 -0800250 /* Temporarily change egid to avoid race condition setting the gid of the
251 * device node. Unforunately changing the euid would prevent creation of
252 * some device nodes, so the uid has to be set with chown() and is still
253 * racy. Fixing the gid race at least fixed the issue with system_server
254 * opening dynamic input devices under the AID_INPUT gid. */
255 setegid(gid);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700256 mknod(path, mode, dev);
Nick Pelly6405c692010-01-21 18:13:39 -0800257 chown(path, uid, -1);
258 setegid(AID_ROOT);
Kenny Rootb5982bf2012-10-16 23:07:05 -0700259
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500260 if (secontext) {
261 freecon(secontext);
262 setfscreatecon(NULL);
263 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700264}
265
Dima Zavinf395c922013-03-06 16:23:57 -0800266static void add_platform_device(const char *path)
Colin Crossfadb85e2011-03-30 18:32:12 -0700267{
Dima Zavinf395c922013-03-06 16:23:57 -0800268 int path_len = strlen(path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700269 struct platform_node *bus;
Dima Zavinf395c922013-03-06 16:23:57 -0800270 const char *name = path;
271
272 if (!strncmp(path, "/devices/", 9)) {
273 name += 9;
274 if (!strncmp(name, "platform/", 9))
275 name += 9;
276 }
Colin Crossfadb85e2011-03-30 18:32:12 -0700277
Dima Zavinf395c922013-03-06 16:23:57 -0800278 INFO("adding platform device %s (%s)\n", name, path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700279
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800280 bus = (platform_node*) calloc(1, sizeof(struct platform_node));
Dima Zavinf395c922013-03-06 16:23:57 -0800281 bus->path = strdup(path);
282 bus->path_len = path_len;
283 bus->name = bus->path + (name - path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700284 list_add_tail(&platform_names, &bus->list);
285}
286
287/*
Dima Zavinf395c922013-03-06 16:23:57 -0800288 * given a path that may start with a platform device, find the length of the
Colin Crossfadb85e2011-03-30 18:32:12 -0700289 * platform device prefix. If it doesn't start with a platform device, return
290 * 0.
291 */
Dima Zavinf395c922013-03-06 16:23:57 -0800292static struct platform_node *find_platform_device(const char *path)
Colin Crossfadb85e2011-03-30 18:32:12 -0700293{
Dima Zavinf395c922013-03-06 16:23:57 -0800294 int path_len = strlen(path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700295 struct listnode *node;
296 struct platform_node *bus;
297
298 list_for_each_reverse(node, &platform_names) {
299 bus = node_to_item(node, struct platform_node, list);
Dima Zavinf395c922013-03-06 16:23:57 -0800300 if ((bus->path_len < path_len) &&
301 (path[bus->path_len] == '/') &&
302 !strncmp(path, bus->path, bus->path_len))
303 return bus;
Colin Crossfadb85e2011-03-30 18:32:12 -0700304 }
305
306 return NULL;
307}
308
Dima Zavinf395c922013-03-06 16:23:57 -0800309static void remove_platform_device(const char *path)
Colin Crossfadb85e2011-03-30 18:32:12 -0700310{
311 struct listnode *node;
312 struct platform_node *bus;
313
314 list_for_each_reverse(node, &platform_names) {
315 bus = node_to_item(node, struct platform_node, list);
Dima Zavinf395c922013-03-06 16:23:57 -0800316 if (!strcmp(path, bus->path)) {
317 INFO("removing platform device %s\n", bus->name);
318 free(bus->path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700319 list_remove(node);
320 free(bus);
321 return;
322 }
323 }
324}
325
Andrew Boiea885d042013-09-13 17:41:20 -0700326/* Given a path that may start with a PCI device, populate the supplied buffer
327 * with the PCI domain/bus number and the peripheral ID and return 0.
328 * If it doesn't start with a PCI device, or there is some error, return -1 */
329static int find_pci_device_prefix(const char *path, char *buf, ssize_t buf_sz)
330{
331 const char *start, *end;
332
333 if (strncmp(path, "/devices/pci", 12))
334 return -1;
335
336 /* Beginning of the prefix is the initial "pci" after "/devices/" */
337 start = path + 9;
338
339 /* End of the prefix is two path '/' later, capturing the domain/bus number
340 * and the peripheral ID. Example: pci0000:00/0000:00:1f.2 */
341 end = strchr(start, '/');
342 if (!end)
343 return -1;
344 end = strchr(end + 1, '/');
345 if (!end)
346 return -1;
347
348 /* Make sure we have enough room for the string plus null terminator */
349 if (end - start + 1 > buf_sz)
350 return -1;
351
352 strncpy(buf, start, end - start);
353 buf[end - start] = '\0';
354 return 0;
355}
356
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700357static void parse_event(const char *msg, struct uevent *uevent)
358{
359 uevent->action = "";
360 uevent->path = "";
361 uevent->subsystem = "";
362 uevent->firmware = "";
363 uevent->major = -1;
364 uevent->minor = -1;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700365 uevent->partition_name = NULL;
366 uevent->partition_num = -1;
Wei Zhongf97b8872012-03-23 14:15:34 -0700367 uevent->device_name = NULL;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700368
369 /* currently ignoring SEQNUM */
370 while(*msg) {
371 if(!strncmp(msg, "ACTION=", 7)) {
372 msg += 7;
373 uevent->action = msg;
374 } else if(!strncmp(msg, "DEVPATH=", 8)) {
375 msg += 8;
376 uevent->path = msg;
377 } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
378 msg += 10;
379 uevent->subsystem = msg;
380 } else if(!strncmp(msg, "FIRMWARE=", 9)) {
381 msg += 9;
382 uevent->firmware = msg;
383 } else if(!strncmp(msg, "MAJOR=", 6)) {
384 msg += 6;
385 uevent->major = atoi(msg);
386 } else if(!strncmp(msg, "MINOR=", 6)) {
387 msg += 6;
388 uevent->minor = atoi(msg);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700389 } else if(!strncmp(msg, "PARTN=", 6)) {
390 msg += 6;
391 uevent->partition_num = atoi(msg);
392 } else if(!strncmp(msg, "PARTNAME=", 9)) {
393 msg += 9;
394 uevent->partition_name = msg;
Wei Zhongf97b8872012-03-23 14:15:34 -0700395 } else if(!strncmp(msg, "DEVNAME=", 8)) {
396 msg += 8;
397 uevent->device_name = msg;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700398 }
399
Wei Zhongf97b8872012-03-23 14:15:34 -0700400 /* advance to after the next \0 */
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700401 while(*msg++)
402 ;
403 }
404
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800405 if (LOG_UEVENTS) {
406 INFO("event { '%s', '%s', '%s', '%s', %d, %d }\n",
407 uevent->action, uevent->path, uevent->subsystem,
408 uevent->firmware, uevent->major, uevent->minor);
409 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700410}
411
Benoit Gobyd2278632010-08-03 14:36:02 -0700412static char **get_character_device_symlinks(struct uevent *uevent)
413{
414 const char *parent;
415 char *slash;
416 char **links;
417 int link_num = 0;
418 int width;
Dima Zavinf395c922013-03-06 16:23:57 -0800419 struct platform_node *pdev;
Benoit Gobyd2278632010-08-03 14:36:02 -0700420
Dima Zavinf395c922013-03-06 16:23:57 -0800421 pdev = find_platform_device(uevent->path);
422 if (!pdev)
Benoit Gobyd2278632010-08-03 14:36:02 -0700423 return NULL;
424
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800425 links = (char**) malloc(sizeof(char *) * 2);
Benoit Gobyd2278632010-08-03 14:36:02 -0700426 if (!links)
427 return NULL;
428 memset(links, 0, sizeof(char *) * 2);
429
430 /* skip "/devices/platform/<driver>" */
Dima Zavinf395c922013-03-06 16:23:57 -0800431 parent = strchr(uevent->path + pdev->path_len, '/');
Tomasz Kondelfca58f42013-11-05 13:17:45 +0100432 if (!parent)
Benoit Gobyd2278632010-08-03 14:36:02 -0700433 goto err;
434
435 if (!strncmp(parent, "/usb", 4)) {
436 /* skip root hub name and device. use device interface */
437 while (*++parent && *parent != '/');
438 if (*parent)
439 while (*++parent && *parent != '/');
440 if (!*parent)
441 goto err;
442 slash = strchr(++parent, '/');
443 if (!slash)
444 goto err;
445 width = slash - parent;
446 if (width <= 0)
447 goto err;
448
449 if (asprintf(&links[link_num], "/dev/usb/%s%.*s", uevent->subsystem, width, parent) > 0)
450 link_num++;
451 else
452 links[link_num] = NULL;
453 mkdir("/dev/usb", 0755);
454 }
455 else {
456 goto err;
457 }
458
459 return links;
460err:
461 free(links);
462 return NULL;
463}
464
Andrew Boiea885d042013-09-13 17:41:20 -0700465static char **get_block_device_symlinks(struct uevent *uevent)
Colin Crossb0ab94b2010-04-08 16:16:20 -0700466{
Colin Crossfadb85e2011-03-30 18:32:12 -0700467 const char *device;
Dima Zavinf395c922013-03-06 16:23:57 -0800468 struct platform_node *pdev;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700469 char *slash;
Andrew Boiea885d042013-09-13 17:41:20 -0700470 const char *type;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700471 char buf[256];
472 char link_path[256];
Colin Crossb0ab94b2010-04-08 16:16:20 -0700473 int link_num = 0;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700474 char *p;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700475
Dima Zavinf395c922013-03-06 16:23:57 -0800476 pdev = find_platform_device(uevent->path);
Andrew Boiea885d042013-09-13 17:41:20 -0700477 if (pdev) {
478 device = pdev->name;
479 type = "platform";
480 } else if (!find_pci_device_prefix(uevent->path, buf, sizeof(buf))) {
481 device = buf;
482 type = "pci";
483 } else {
Dima Zavinf395c922013-03-06 16:23:57 -0800484 return NULL;
Andrew Boiea885d042013-09-13 17:41:20 -0700485 }
Dima Zavinf395c922013-03-06 16:23:57 -0800486
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800487 char **links = (char**) malloc(sizeof(char *) * 4);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700488 if (!links)
489 return NULL;
490 memset(links, 0, sizeof(char *) * 4);
491
Andrew Boiea885d042013-09-13 17:41:20 -0700492 INFO("found %s device %s\n", type, device);
Colin Crossfadb85e2011-03-30 18:32:12 -0700493
Andrew Boiea885d042013-09-13 17:41:20 -0700494 snprintf(link_path, sizeof(link_path), "/dev/block/%s/%s", type, device);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700495
496 if (uevent->partition_name) {
497 p = strdup(uevent->partition_name);
498 sanitize(p);
Johan Redestig93ca79b2012-04-18 16:41:19 +0200499 if (strcmp(uevent->partition_name, p))
500 NOTICE("Linking partition '%s' as '%s'\n", uevent->partition_name, p);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700501 if (asprintf(&links[link_num], "%s/by-name/%s", link_path, p) > 0)
502 link_num++;
503 else
504 links[link_num] = NULL;
505 free(p);
506 }
507
508 if (uevent->partition_num >= 0) {
509 if (asprintf(&links[link_num], "%s/by-num/p%d", link_path, uevent->partition_num) > 0)
510 link_num++;
511 else
512 links[link_num] = NULL;
513 }
514
Dima Zavinf395c922013-03-06 16:23:57 -0800515 slash = strrchr(uevent->path, '/');
Colin Crossb0ab94b2010-04-08 16:16:20 -0700516 if (asprintf(&links[link_num], "%s/%s", link_path, slash + 1) > 0)
517 link_num++;
518 else
519 links[link_num] = NULL;
520
521 return links;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700522}
523
Colin Crosseb5ba832011-03-30 17:37:17 -0700524static void handle_device(const char *action, const char *devpath,
525 const char *path, int block, int major, int minor, char **links)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700526{
Colin Crossb0ab94b2010-04-08 16:16:20 -0700527 int i;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700528
Colin Crosseb5ba832011-03-30 17:37:17 -0700529 if(!strcmp(action, "add")) {
Stephen Smalleyb4c52002014-06-12 12:29:14 -0400530 make_device(devpath, path, block, major, minor, (const char **)links);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700531 if (links) {
532 for (i = 0; links[i]; i++)
533 make_link(devpath, links[i]);
534 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700535 }
536
Colin Crosseb5ba832011-03-30 17:37:17 -0700537 if(!strcmp(action, "remove")) {
Colin Crossb0ab94b2010-04-08 16:16:20 -0700538 if (links) {
539 for (i = 0; links[i]; i++)
540 remove_link(devpath, links[i]);
541 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700542 unlink(devpath);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700543 }
544
545 if (links) {
546 for (i = 0; links[i]; i++)
547 free(links[i]);
548 free(links);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700549 }
550}
551
Colin Crossfadb85e2011-03-30 18:32:12 -0700552static void handle_platform_device_event(struct uevent *uevent)
553{
Dima Zavinf395c922013-03-06 16:23:57 -0800554 const char *path = uevent->path;
Colin Crossfadb85e2011-03-30 18:32:12 -0700555
556 if (!strcmp(uevent->action, "add"))
Dima Zavinf395c922013-03-06 16:23:57 -0800557 add_platform_device(path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700558 else if (!strcmp(uevent->action, "remove"))
Dima Zavinf395c922013-03-06 16:23:57 -0800559 remove_platform_device(path);
Colin Crossfadb85e2011-03-30 18:32:12 -0700560}
561
Colin Crosseb5ba832011-03-30 17:37:17 -0700562static const char *parse_device_name(struct uevent *uevent, unsigned int len)
563{
564 const char *name;
565
566 /* if it's not a /dev device, nothing else to do */
567 if((uevent->major < 0) || (uevent->minor < 0))
568 return NULL;
569
570 /* do we have a name? */
571 name = strrchr(uevent->path, '/');
572 if(!name)
573 return NULL;
574 name++;
575
576 /* too-long names would overrun our buffer */
Greg Hackmannf6e009e2013-11-21 13:26:48 -0800577 if(strlen(name) > len) {
578 ERROR("DEVPATH=%s exceeds %u-character limit on filename; ignoring event\n",
579 name, len);
Colin Crosseb5ba832011-03-30 17:37:17 -0700580 return NULL;
Greg Hackmannf6e009e2013-11-21 13:26:48 -0800581 }
Colin Crosseb5ba832011-03-30 17:37:17 -0700582
583 return name;
584}
585
586static void handle_block_device_event(struct uevent *uevent)
587{
588 const char *base = "/dev/block/";
589 const char *name;
590 char devpath[96];
591 char **links = NULL;
592
593 name = parse_device_name(uevent, 64);
594 if (!name)
595 return;
596
597 snprintf(devpath, sizeof(devpath), "%s%s", base, name);
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500598 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700599
Dima Zavinf395c922013-03-06 16:23:57 -0800600 if (!strncmp(uevent->path, "/devices/", 9))
Andrew Boiea885d042013-09-13 17:41:20 -0700601 links = get_block_device_symlinks(uevent);
Colin Crosseb5ba832011-03-30 17:37:17 -0700602
603 handle_device(uevent->action, devpath, uevent->path, 1,
604 uevent->major, uevent->minor, links);
Colin Crosseb5ba832011-03-30 17:37:17 -0700605}
606
Greg Hackmann3312aa82013-11-18 15:24:40 -0800607#define DEVPATH_LEN 96
608
609static bool assemble_devpath(char *devpath, const char *dirname,
610 const char *devname)
611{
612 int s = snprintf(devpath, DEVPATH_LEN, "%s/%s", dirname, devname);
613 if (s < 0) {
614 ERROR("failed to assemble device path (%s); ignoring event\n",
615 strerror(errno));
616 return false;
617 } else if (s >= DEVPATH_LEN) {
618 ERROR("%s/%s exceeds %u-character limit on path; ignoring event\n",
619 dirname, devname, DEVPATH_LEN);
620 return false;
621 }
622 return true;
623}
624
625static void mkdir_recursive_for_devpath(const char *devpath)
626{
627 char dir[DEVPATH_LEN];
628 char *slash;
629
630 strcpy(dir, devpath);
631 slash = strrchr(dir, '/');
632 *slash = '\0';
633 mkdir_recursive(dir, 0755);
634}
635
Colin Crosseb5ba832011-03-30 17:37:17 -0700636static void handle_generic_device_event(struct uevent *uevent)
637{
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800638 const char *base;
Colin Crosseb5ba832011-03-30 17:37:17 -0700639 const char *name;
Greg Hackmann3312aa82013-11-18 15:24:40 -0800640 char devpath[DEVPATH_LEN] = {0};
Colin Crosseb5ba832011-03-30 17:37:17 -0700641 char **links = NULL;
642
643 name = parse_device_name(uevent, 64);
644 if (!name)
645 return;
646
Greg Hackmann3312aa82013-11-18 15:24:40 -0800647 struct ueventd_subsystem *subsystem =
648 ueventd_subsystem_find_by_name(uevent->subsystem);
649
650 if (subsystem) {
651 const char *devname;
652
653 switch (subsystem->devname_src) {
654 case DEVNAME_UEVENT_DEVNAME:
655 devname = uevent->device_name;
656 break;
657
658 case DEVNAME_UEVENT_DEVPATH:
659 devname = name;
660 break;
661
662 default:
663 ERROR("%s subsystem's devpath option is not set; ignoring event\n",
664 uevent->subsystem);
665 return;
666 }
667
668 if (!assemble_devpath(devpath, subsystem->dirname, devname))
669 return;
670 mkdir_recursive_for_devpath(devpath);
671 } else if (!strncmp(uevent->subsystem, "usb", 3)) {
Colin Crosseb5ba832011-03-30 17:37:17 -0700672 if (!strcmp(uevent->subsystem, "usb")) {
Wei Zhongf97b8872012-03-23 14:15:34 -0700673 if (uevent->device_name) {
Greg Hackmann3312aa82013-11-18 15:24:40 -0800674 if (!assemble_devpath(devpath, "/dev", uevent->device_name))
Greg Hackmannf6e009e2013-11-21 13:26:48 -0800675 return;
Greg Hackmann3312aa82013-11-18 15:24:40 -0800676 mkdir_recursive_for_devpath(devpath);
Wei Zhongf97b8872012-03-23 14:15:34 -0700677 }
678 else {
679 /* This imitates the file system that would be created
680 * if we were using devfs instead.
681 * Minors are broken up into groups of 128, starting at "001"
682 */
683 int bus_id = uevent->minor / 128 + 1;
684 int device_id = uevent->minor % 128 + 1;
685 /* build directories */
686 make_dir("/dev/bus", 0755);
687 make_dir("/dev/bus/usb", 0755);
688 snprintf(devpath, sizeof(devpath), "/dev/bus/usb/%03d", bus_id);
689 make_dir(devpath, 0755);
690 snprintf(devpath, sizeof(devpath), "/dev/bus/usb/%03d/%03d", bus_id, device_id);
691 }
Colin Crosseb5ba832011-03-30 17:37:17 -0700692 } else {
693 /* ignore other USB events */
694 return;
695 }
696 } else if (!strncmp(uevent->subsystem, "graphics", 8)) {
697 base = "/dev/graphics/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500698 make_dir(base, 0755);
Lukasz Anaczkowskie6f8d452011-09-28 15:30:07 +0200699 } else if (!strncmp(uevent->subsystem, "drm", 3)) {
700 base = "/dev/dri/";
701 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700702 } else if (!strncmp(uevent->subsystem, "oncrpc", 6)) {
703 base = "/dev/oncrpc/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500704 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700705 } else if (!strncmp(uevent->subsystem, "adsp", 4)) {
706 base = "/dev/adsp/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500707 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700708 } else if (!strncmp(uevent->subsystem, "msm_camera", 10)) {
709 base = "/dev/msm_camera/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500710 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700711 } else if(!strncmp(uevent->subsystem, "input", 5)) {
712 base = "/dev/input/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500713 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700714 } else if(!strncmp(uevent->subsystem, "mtd", 3)) {
715 base = "/dev/mtd/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500716 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700717 } else if(!strncmp(uevent->subsystem, "sound", 5)) {
718 base = "/dev/snd/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500719 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700720 } else if(!strncmp(uevent->subsystem, "misc", 4) &&
721 !strncmp(name, "log_", 4)) {
Elliott Hughesf682b472015-02-06 12:19:48 -0800722 INFO("kernel logger is deprecated\n");
Colin Crosseb5ba832011-03-30 17:37:17 -0700723 base = "/dev/log/";
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500724 make_dir(base, 0755);
Colin Crosseb5ba832011-03-30 17:37:17 -0700725 name += 4;
726 } else
727 base = "/dev/";
728 links = get_character_device_symlinks(uevent);
729
730 if (!devpath[0])
731 snprintf(devpath, sizeof(devpath), "%s%s", base, name);
732
733 handle_device(uevent->action, devpath, uevent->path, 0,
734 uevent->major, uevent->minor, links);
735}
736
737static void handle_device_event(struct uevent *uevent)
738{
Ruchi Kandoi75b287b2014-04-29 19:14:37 -0700739 if (!strcmp(uevent->action,"add") || !strcmp(uevent->action, "change") || !strcmp(uevent->action, "online"))
Colin Crosseb5ba832011-03-30 17:37:17 -0700740 fixup_sys_perms(uevent->path);
741
742 if (!strncmp(uevent->subsystem, "block", 5)) {
743 handle_block_device_event(uevent);
Colin Crossfadb85e2011-03-30 18:32:12 -0700744 } else if (!strncmp(uevent->subsystem, "platform", 8)) {
745 handle_platform_device_event(uevent);
Colin Crosseb5ba832011-03-30 17:37:17 -0700746 } else {
747 handle_generic_device_event(uevent);
748 }
749}
750
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700751static int load_firmware(int fw_fd, int loading_fd, int data_fd)
752{
753 struct stat st;
754 long len_to_copy;
755 int ret = 0;
756
757 if(fstat(fw_fd, &st) < 0)
758 return -1;
759 len_to_copy = st.st_size;
760
761 write(loading_fd, "1", 1); /* start transfer */
762
763 while (len_to_copy > 0) {
764 char buf[PAGE_SIZE];
765 ssize_t nr;
766
767 nr = read(fw_fd, buf, sizeof(buf));
768 if(!nr)
769 break;
770 if(nr < 0) {
771 ret = -1;
772 break;
773 }
774
775 len_to_copy -= nr;
776 while (nr > 0) {
777 ssize_t nw = 0;
778
779 nw = write(data_fd, buf + nw, nr);
780 if(nw <= 0) {
781 ret = -1;
782 goto out;
783 }
784 nr -= nw;
785 }
786 }
787
788out:
789 if(!ret)
790 write(loading_fd, "0", 1); /* successful end of transfer */
791 else
792 write(loading_fd, "-1", 2); /* abort transfer */
793
794 return ret;
795}
796
Brian Swetland8d48c8e2011-03-24 15:45:30 -0700797static int is_booting(void)
798{
799 return access("/dev/.booting", F_OK) == 0;
800}
801
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700802static void process_firmware_event(struct uevent *uevent)
803{
Daniel Rosenbergd1d96022015-03-20 15:10:29 -0700804 char *root, *loading, *data;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700805 int l, loading_fd, data_fd, fw_fd;
Daniel Rosenbergd1d96022015-03-20 15:10:29 -0700806 size_t i;
Brian Swetland8d48c8e2011-03-24 15:45:30 -0700807 int booting = is_booting();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700808
Brian Swetland8d48c8e2011-03-24 15:45:30 -0700809 INFO("firmware: loading '%s' for '%s'\n",
810 uevent->firmware, uevent->path);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700811
812 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
813 if (l == -1)
814 return;
815
816 l = asprintf(&loading, "%sloading", root);
817 if (l == -1)
818 goto root_free_out;
819
820 l = asprintf(&data, "%sdata", root);
821 if (l == -1)
822 goto loading_free_out;
823
Nick Kralevich45a884f2015-02-02 14:37:22 -0800824 loading_fd = open(loading, O_WRONLY|O_CLOEXEC);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700825 if(loading_fd < 0)
Daniel Rosenbergd1d96022015-03-20 15:10:29 -0700826 goto data_free_out;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700827
Nick Kralevich45a884f2015-02-02 14:37:22 -0800828 data_fd = open(data, O_WRONLY|O_CLOEXEC);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700829 if(data_fd < 0)
830 goto loading_close_out;
831
Brian Swetland8d48c8e2011-03-24 15:45:30 -0700832try_loading_again:
Daniel Rosenbergd1d96022015-03-20 15:10:29 -0700833 for (i = 0; i < ARRAY_SIZE(firmware_dirs); i++) {
834 char *file = NULL;
835 l = asprintf(&file, "%s/%s", firmware_dirs[i], uevent->firmware);
836 if (l == -1)
837 goto data_free_out;
838 fw_fd = open(file, O_RDONLY|O_CLOEXEC);
839 free(file);
840 if (fw_fd >= 0) {
841 if(!load_firmware(fw_fd, loading_fd, data_fd))
842 INFO("firmware: copy success { '%s', '%s' }\n", root, uevent->firmware);
843 else
844 INFO("firmware: copy failure { '%s', '%s' }\n", root, uevent->firmware);
845 break;
Benoit Goby609d8822010-11-09 18:10:24 -0800846 }
Brian Swetland02863b92010-09-19 03:36:39 -0700847 }
Daniel Rosenbergd1d96022015-03-20 15:10:29 -0700848 if (fw_fd < 0) {
849 if (booting) {
850 /* If we're not fully booted, we may be missing
851 * filesystems needed for firmware, wait and retry.
852 */
853 usleep(100000);
854 booting = is_booting();
855 goto try_loading_again;
856 }
Elliott Hughescd67f002015-03-20 17:05:56 -0700857 INFO("firmware: could not open '%s': %s\n", uevent->firmware, strerror(errno));
Daniel Rosenbergd1d96022015-03-20 15:10:29 -0700858 write(loading_fd, "-1", 2);
859 goto data_close_out;
860 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700861
862 close(fw_fd);
863data_close_out:
864 close(data_fd);
865loading_close_out:
866 close(loading_fd);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700867data_free_out:
868 free(data);
869loading_free_out:
870 free(loading);
871root_free_out:
872 free(root);
873}
874
875static void handle_firmware_event(struct uevent *uevent)
876{
877 pid_t pid;
878
879 if(strcmp(uevent->subsystem, "firmware"))
880 return;
881
882 if(strcmp(uevent->action, "add"))
883 return;
884
885 /* we fork, to avoid making large memory allocations in init proper */
886 pid = fork();
887 if (!pid) {
888 process_firmware_event(uevent);
Kenny Root17baff42014-08-20 16:16:44 -0700889 _exit(EXIT_SUCCESS);
890 } else if (pid < 0) {
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800891 ERROR("could not fork to process firmware event: %s\n", strerror(errno));
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700892 }
893}
894
Ruchi Kandoic6037202014-06-23 11:22:09 -0700895#define UEVENT_MSG_LEN 2048
Colin Cross0dd7ca62010-04-13 19:25:51 -0700896void handle_device_fd()
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700897{
Vernon Tang3f582e92011-04-25 13:08:17 +1000898 char msg[UEVENT_MSG_LEN+2];
899 int n;
Nick Kralevich57de8b82011-05-11 14:58:24 -0700900 while ((n = uevent_kernel_multicast_recv(device_fd, msg, UEVENT_MSG_LEN)) > 0) {
Nick Kralevich5f5d5c82010-07-19 14:31:20 -0700901 if(n >= UEVENT_MSG_LEN) /* overflow -- discard */
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700902 continue;
903
904 msg[n] = '\0';
905 msg[n+1] = '\0';
906
Nick Kralevich5f5d5c82010-07-19 14:31:20 -0700907 struct uevent uevent;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700908 parse_event(msg, &uevent);
909
Stephen Smalleye2eb69d2013-04-16 09:30:30 -0400910 if (sehandle && selinux_status_updated() > 0) {
911 struct selabel_handle *sehandle2;
912 sehandle2 = selinux_android_file_context_handle();
913 if (sehandle2) {
914 selabel_close(sehandle);
915 sehandle = sehandle2;
916 }
917 }
918
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700919 handle_device_event(&uevent);
920 handle_firmware_event(&uevent);
921 }
922}
923
924/* Coldboot walks parts of the /sys tree and pokes the uevent files
925** to cause the kernel to regenerate device add events that happened
926** before init's device manager was started
927**
928** We drain any pending events from the netlink socket every time
929** we poke another uevent file to make sure we don't overrun the
Elliott Hughesc0e919c2015-02-04 14:46:36 -0800930** socket's buffer.
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700931*/
932
Colin Cross0dd7ca62010-04-13 19:25:51 -0700933static void do_coldboot(DIR *d)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700934{
935 struct dirent *de;
936 int dfd, fd;
937
938 dfd = dirfd(d);
939
940 fd = openat(dfd, "uevent", O_WRONLY);
941 if(fd >= 0) {
942 write(fd, "add\n", 4);
943 close(fd);
Colin Cross0dd7ca62010-04-13 19:25:51 -0700944 handle_device_fd();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700945 }
946
947 while((de = readdir(d))) {
948 DIR *d2;
949
950 if(de->d_type != DT_DIR || de->d_name[0] == '.')
951 continue;
952
953 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
954 if(fd < 0)
955 continue;
956
957 d2 = fdopendir(fd);
958 if(d2 == 0)
959 close(fd);
960 else {
Colin Cross0dd7ca62010-04-13 19:25:51 -0700961 do_coldboot(d2);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700962 closedir(d2);
963 }
964 }
965}
966
Colin Cross0dd7ca62010-04-13 19:25:51 -0700967static void coldboot(const char *path)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700968{
969 DIR *d = opendir(path);
970 if(d) {
Colin Cross0dd7ca62010-04-13 19:25:51 -0700971 do_coldboot(d);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700972 closedir(d);
973 }
974}
975
Elliott Hughes74738362015-03-28 10:51:23 -0700976void device_init() {
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400977 sehandle = NULL;
978 if (is_selinux_enabled() > 0) {
979 sehandle = selinux_android_file_context_handle();
Stephen Smalleye2eb69d2013-04-16 09:30:30 -0400980 selinux_status_open(true);
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400981 }
Kenny Rootb5982bf2012-10-16 23:07:05 -0700982
Andrew Boied562ca72012-12-04 15:47:20 -0800983 /* is 256K enough? udev uses 16MB! */
984 device_fd = uevent_open_socket(256*1024, true);
Elliott Hughes56a06562015-03-28 11:23:32 -0700985 if (device_fd == -1) {
Colin Cross0dd7ca62010-04-13 19:25:51 -0700986 return;
Elliott Hughes56a06562015-03-28 11:23:32 -0700987 }
Colin Cross0dd7ca62010-04-13 19:25:51 -0700988 fcntl(device_fd, F_SETFL, O_NONBLOCK);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700989
Elliott Hughes56a06562015-03-28 11:23:32 -0700990 if (access(COLDBOOT_DONE, F_OK) == 0) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700991 NOTICE("Skipping coldboot, already done!\n");
Elliott Hughes56a06562015-03-28 11:23:32 -0700992 return;
Colin Crossf83d0b92010-04-21 12:04:20 -0700993 }
Elliott Hughes56a06562015-03-28 11:23:32 -0700994
995 Timer t;
996 coldboot("/sys/class");
997 coldboot("/sys/block");
998 coldboot("/sys/devices");
999 close(open(COLDBOOT_DONE, O_WRONLY|O_CREAT|O_CLOEXEC, 0000));
1000 NOTICE("Coldboot took %.2fs.\n", t.duration());
Colin Cross0dd7ca62010-04-13 19:25:51 -07001001}
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001002
Colin Cross0dd7ca62010-04-13 19:25:51 -07001003int get_device_fd()
1004{
1005 return device_fd;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001006}