blob: 155a41e77f139231ab209e466697b440969f68d5 [file] [log] [blame]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2007 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 <errno.h>
18#include <stdio.h>
19#include <stdlib.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
23#include <fcntl.h>
24#include <dirent.h>
25#include <unistd.h>
26#include <string.h>
27
28#include <sys/socket.h>
29#include <sys/un.h>
30#include <linux/netlink.h>
31#include <private/android_filesystem_config.h>
32#include <sys/time.h>
33#include <asm/page.h>
Colin Cross982a8152010-06-03 12:21:01 -070034#include <sys/wait.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070035
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070036#include "devices.h"
Colin Crossb0ab94b2010-04-08 16:16:20 -070037#include "util.h"
Colin Crossed8a7d82010-04-19 17:05:34 -070038#include "log.h"
39#include "list.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070040
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070041#define SYSFS_PREFIX "/sys"
42#define FIRMWARE_DIR "/etc/firmware"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070043
Colin Cross0dd7ca62010-04-13 19:25:51 -070044static int device_fd = -1;
45
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070046struct uevent {
47 const char *action;
48 const char *path;
49 const char *subsystem;
50 const char *firmware;
Colin Crossb0ab94b2010-04-08 16:16:20 -070051 const char *partition_name;
52 int partition_num;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070053 int major;
54 int minor;
55};
56
57static int open_uevent_socket(void)
58{
59 struct sockaddr_nl addr;
60 int sz = 64*1024; // XXX larger? udev uses 16MB!
61 int s;
62
63 memset(&addr, 0, sizeof(addr));
64 addr.nl_family = AF_NETLINK;
65 addr.nl_pid = getpid();
66 addr.nl_groups = 0xffffffff;
67
68 s = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
69 if(s < 0)
70 return -1;
71
72 setsockopt(s, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz));
73
74 if(bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
75 close(s);
76 return -1;
77 }
78
79 return s;
80}
81
82struct perms_ {
83 char *name;
84 mode_t perm;
85 unsigned int uid;
86 unsigned int gid;
87 unsigned short prefix;
88};
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070089
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070090struct perm_node {
91 struct perms_ dp;
92 struct listnode plist;
93};
Colin Cross44b65d02010-04-20 14:32:50 -070094static list_declare(dev_perms);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070095
96/*
97 * Permission override when in emulator mode, must be parsed before
98 * system properties is initalized.
99 */
Colin Cross44b65d02010-04-20 14:32:50 -0700100int add_dev_perms(const char *name, mode_t perm, unsigned int uid,
101 unsigned int gid, unsigned short prefix) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700102 int size;
Colin Cross44b65d02010-04-20 14:32:50 -0700103 char *tmp = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700104 struct perm_node *node = malloc(sizeof (struct perm_node));
105 if (!node)
106 return -ENOMEM;
107
108 size = strlen(name) + 1;
109 if ((node->dp.name = malloc(size)) == NULL)
110 return -ENOMEM;
111
112 memcpy(node->dp.name, name, size);
113 node->dp.perm = perm;
114 node->dp.uid = uid;
115 node->dp.gid = gid;
116 node->dp.prefix = prefix;
117
Colin Cross44b65d02010-04-20 14:32:50 -0700118 list_add_tail(&dev_perms, &node->plist);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700119 return 0;
120}
121
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700122static int get_device_perm_inner(struct perms_ *perms, const char *path,
123 unsigned *uid, unsigned *gid, mode_t *perm)
124{
125 int i;
126 for(i = 0; perms[i].name; i++) {
127
128 if(perms[i].prefix) {
129 if(strncmp(path, perms[i].name, strlen(perms[i].name)))
130 continue;
131 } else {
132 if(strcmp(path, perms[i].name))
133 continue;
134 }
135 *uid = perms[i].uid;
136 *gid = perms[i].gid;
137 *perm = perms[i].perm;
138 return 0;
139 }
140 return -1;
141}
142
143/* First checks for emulator specific permissions specified in /proc/cmdline. */
144static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
145{
146 mode_t perm;
Colin Cross44b65d02010-04-20 14:32:50 -0700147 struct listnode *node;
148 struct perm_node *perm_node;
149 struct perms_ *dp;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700150
Colin Cross44b65d02010-04-20 14:32:50 -0700151 /* search the perms list in reverse so that ueventd.$hardware can
152 * override ueventd.rc
153 */
154 list_for_each_reverse(node, &dev_perms) {
155 perm_node = node_to_item(node, struct perm_node, plist);
156 dp = &perm_node->dp;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700157
Colin Cross44b65d02010-04-20 14:32:50 -0700158 if (dp->prefix) {
159 if (strncmp(path, dp->name, strlen(dp->name)))
160 continue;
161 } else {
162 if (strcmp(path, dp->name))
163 continue;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700164 }
Colin Cross44b65d02010-04-20 14:32:50 -0700165 *uid = dp->uid;
166 *gid = dp->gid;
167 return dp->perm;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700168 }
Colin Cross44b65d02010-04-20 14:32:50 -0700169 /* Default if nothing found. */
170 *uid = 0;
171 *gid = 0;
172 return 0600;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700173}
174
175static void make_device(const char *path, int block, int major, int minor)
176{
177 unsigned uid;
178 unsigned gid;
179 mode_t mode;
180 dev_t dev;
181
182 if(major > 255 || minor > 255)
183 return;
184
185 mode = get_device_perm(path, &uid, &gid) | (block ? S_IFBLK : S_IFCHR);
186 dev = (major << 8) | minor;
Nick Pelly6405c692010-01-21 18:13:39 -0800187 /* Temporarily change egid to avoid race condition setting the gid of the
188 * device node. Unforunately changing the euid would prevent creation of
189 * some device nodes, so the uid has to be set with chown() and is still
190 * racy. Fixing the gid race at least fixed the issue with system_server
191 * opening dynamic input devices under the AID_INPUT gid. */
192 setegid(gid);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700193 mknod(path, mode, dev);
Nick Pelly6405c692010-01-21 18:13:39 -0800194 chown(path, uid, -1);
195 setegid(AID_ROOT);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700196}
197
Chuck Tuffli1e070842008-12-15 14:26:56 -0800198#if LOG_UEVENTS
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700199
200static inline suseconds_t get_usecs(void)
201{
202 struct timeval tv;
203 gettimeofday(&tv, 0);
204 return tv.tv_sec * (suseconds_t) 1000000 + tv.tv_usec;
205}
206
207#define log_event_print(x...) INFO(x)
208
209#else
210
211#define log_event_print(fmt, args...) do { } while (0)
212#define get_usecs() 0
213
214#endif
215
216static void parse_event(const char *msg, struct uevent *uevent)
217{
218 uevent->action = "";
219 uevent->path = "";
220 uevent->subsystem = "";
221 uevent->firmware = "";
222 uevent->major = -1;
223 uevent->minor = -1;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700224 uevent->partition_name = NULL;
225 uevent->partition_num = -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700226
227 /* currently ignoring SEQNUM */
228 while(*msg) {
229 if(!strncmp(msg, "ACTION=", 7)) {
230 msg += 7;
231 uevent->action = msg;
232 } else if(!strncmp(msg, "DEVPATH=", 8)) {
233 msg += 8;
234 uevent->path = msg;
235 } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
236 msg += 10;
237 uevent->subsystem = msg;
238 } else if(!strncmp(msg, "FIRMWARE=", 9)) {
239 msg += 9;
240 uevent->firmware = msg;
241 } else if(!strncmp(msg, "MAJOR=", 6)) {
242 msg += 6;
243 uevent->major = atoi(msg);
244 } else if(!strncmp(msg, "MINOR=", 6)) {
245 msg += 6;
246 uevent->minor = atoi(msg);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700247 } else if(!strncmp(msg, "PARTN=", 6)) {
248 msg += 6;
249 uevent->partition_num = atoi(msg);
250 } else if(!strncmp(msg, "PARTNAME=", 9)) {
251 msg += 9;
252 uevent->partition_name = msg;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700253 }
254
255 /* advance to after the next \0 */
256 while(*msg++)
257 ;
258 }
259
260 log_event_print("event { '%s', '%s', '%s', '%s', %d, %d }\n",
261 uevent->action, uevent->path, uevent->subsystem,
262 uevent->firmware, uevent->major, uevent->minor);
263}
264
Colin Crossb0ab94b2010-04-08 16:16:20 -0700265static char **parse_platform_block_device(struct uevent *uevent)
266{
267 const char *driver;
268 const char *path;
269 char *slash;
270 int width;
271 char buf[256];
272 char link_path[256];
273 int fd;
274 int link_num = 0;
275 int ret;
276 char *p;
277 unsigned int size;
278 struct stat info;
279
280 char **links = malloc(sizeof(char *) * 4);
281 if (!links)
282 return NULL;
283 memset(links, 0, sizeof(char *) * 4);
284
285 /* Drop "/devices/platform/" */
286 path = uevent->path;
287 driver = path + 18;
288 slash = strchr(driver, '/');
289 if (!slash)
290 goto err;
291 width = slash - driver;
292 if (width <= 0)
293 goto err;
294
295 snprintf(link_path, sizeof(link_path), "/dev/block/platform/%.*s",
296 width, driver);
297
298 if (uevent->partition_name) {
299 p = strdup(uevent->partition_name);
300 sanitize(p);
301 if (asprintf(&links[link_num], "%s/by-name/%s", link_path, p) > 0)
302 link_num++;
303 else
304 links[link_num] = NULL;
305 free(p);
306 }
307
308 if (uevent->partition_num >= 0) {
309 if (asprintf(&links[link_num], "%s/by-num/p%d", link_path, uevent->partition_num) > 0)
310 link_num++;
311 else
312 links[link_num] = NULL;
313 }
314
315 slash = strrchr(path, '/');
316 if (asprintf(&links[link_num], "%s/%s", link_path, slash + 1) > 0)
317 link_num++;
318 else
319 links[link_num] = NULL;
320
321 return links;
322
323err:
324 free(links);
325 return NULL;
326}
327
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700328static void handle_device_event(struct uevent *uevent)
329{
330 char devpath[96];
Mike Lockwood93ac1552010-05-06 13:30:09 -0400331 int devpath_ready = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700332 char *base, *name;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700333 char **links = NULL;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700334 int block;
Colin Crossb0ab94b2010-04-08 16:16:20 -0700335 int i;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700336
337 /* if it's not a /dev device, nothing to do */
338 if((uevent->major < 0) || (uevent->minor < 0))
339 return;
340
341 /* do we have a name? */
342 name = strrchr(uevent->path, '/');
343 if(!name)
344 return;
345 name++;
346
347 /* too-long names would overrun our buffer */
348 if(strlen(name) > 64)
349 return;
350
351 /* are we block or char? where should we live? */
The Android Open Source Project35237d12008-12-17 18:08:08 -0800352 if(!strncmp(uevent->subsystem, "block", 5)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700353 block = 1;
354 base = "/dev/block/";
355 mkdir(base, 0755);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700356 if (!strncmp(uevent->path, "/devices/platform/", 18))
357 links = parse_platform_block_device(uevent);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700358 } else {
359 block = 0;
360 /* this should probably be configurable somehow */
Mike Lockwood93ac1552010-05-06 13:30:09 -0400361 if (!strncmp(uevent->subsystem, "usb", 3)) {
362 if (!strcmp(uevent->subsystem, "usb")) {
363 /* This imitates the file system that would be created
364 * if we were using devfs instead.
365 * Minors are broken up into groups of 128, starting at "001"
366 */
367 int bus_id = uevent->minor / 128 + 1;
368 int device_id = uevent->minor % 128 + 1;
369 /* build directories */
370 mkdir("/dev/bus", 0755);
371 mkdir("/dev/bus/usb", 0755);
372 snprintf(devpath, sizeof(devpath), "/dev/bus/usb/%03d", bus_id);
373 mkdir(devpath, 0755);
374 snprintf(devpath, sizeof(devpath), "/dev/bus/usb/%03d/%03d", bus_id, device_id);
375 devpath_ready = 1;
376 } else {
377 /* ignore other USB events */
378 return;
379 }
380 } else if (!strncmp(uevent->subsystem, "graphics", 8)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700381 base = "/dev/graphics/";
382 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800383 } else if (!strncmp(uevent->subsystem, "oncrpc", 6)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700384 base = "/dev/oncrpc/";
385 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800386 } else if (!strncmp(uevent->subsystem, "adsp", 4)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700387 base = "/dev/adsp/";
388 mkdir(base, 0755);
Iliyan Malchevfc0182e2009-05-01 10:25:05 -0700389 } else if (!strncmp(uevent->subsystem, "msm_camera", 10)) {
390 base = "/dev/msm_camera/";
391 mkdir(base, 0755);
392 } else if(!strncmp(uevent->subsystem, "input", 5)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700393 base = "/dev/input/";
394 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800395 } else if(!strncmp(uevent->subsystem, "mtd", 3)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700396 base = "/dev/mtd/";
397 mkdir(base, 0755);
Xiaopeng Yang5bb44c82008-11-25 16:20:07 -0800398 } else if(!strncmp(uevent->subsystem, "sound", 5)) {
399 base = "/dev/snd/";
400 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800401 } else if(!strncmp(uevent->subsystem, "misc", 4) &&
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700402 !strncmp(name, "log_", 4)) {
403 base = "/dev/log/";
404 mkdir(base, 0755);
405 name += 4;
406 } else
407 base = "/dev/";
408 }
409
Mike Lockwood93ac1552010-05-06 13:30:09 -0400410 if (!devpath_ready)
411 snprintf(devpath, sizeof(devpath), "%s%s", base, name);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700412
413 if(!strcmp(uevent->action, "add")) {
414 make_device(devpath, block, uevent->major, uevent->minor);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700415 if (links) {
416 for (i = 0; links[i]; i++)
417 make_link(devpath, links[i]);
418 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700419 }
420
421 if(!strcmp(uevent->action, "remove")) {
Colin Crossb0ab94b2010-04-08 16:16:20 -0700422 if (links) {
423 for (i = 0; links[i]; i++)
424 remove_link(devpath, links[i]);
425 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700426 unlink(devpath);
Colin Crossb0ab94b2010-04-08 16:16:20 -0700427 }
428
429 if (links) {
430 for (i = 0; links[i]; i++)
431 free(links[i]);
432 free(links);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700433 }
434}
435
436static int load_firmware(int fw_fd, int loading_fd, int data_fd)
437{
438 struct stat st;
439 long len_to_copy;
440 int ret = 0;
441
442 if(fstat(fw_fd, &st) < 0)
443 return -1;
444 len_to_copy = st.st_size;
445
446 write(loading_fd, "1", 1); /* start transfer */
447
448 while (len_to_copy > 0) {
449 char buf[PAGE_SIZE];
450 ssize_t nr;
451
452 nr = read(fw_fd, buf, sizeof(buf));
453 if(!nr)
454 break;
455 if(nr < 0) {
456 ret = -1;
457 break;
458 }
459
460 len_to_copy -= nr;
461 while (nr > 0) {
462 ssize_t nw = 0;
463
464 nw = write(data_fd, buf + nw, nr);
465 if(nw <= 0) {
466 ret = -1;
467 goto out;
468 }
469 nr -= nw;
470 }
471 }
472
473out:
474 if(!ret)
475 write(loading_fd, "0", 1); /* successful end of transfer */
476 else
477 write(loading_fd, "-1", 2); /* abort transfer */
478
479 return ret;
480}
481
482static void process_firmware_event(struct uevent *uevent)
483{
484 char *root, *loading, *data, *file;
485 int l, loading_fd, data_fd, fw_fd;
486
487 log_event_print("firmware event { '%s', '%s' }\n",
488 uevent->path, uevent->firmware);
489
490 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
491 if (l == -1)
492 return;
493
494 l = asprintf(&loading, "%sloading", root);
495 if (l == -1)
496 goto root_free_out;
497
498 l = asprintf(&data, "%sdata", root);
499 if (l == -1)
500 goto loading_free_out;
501
502 l = asprintf(&file, FIRMWARE_DIR"/%s", uevent->firmware);
503 if (l == -1)
504 goto data_free_out;
505
506 loading_fd = open(loading, O_WRONLY);
507 if(loading_fd < 0)
508 goto file_free_out;
509
510 data_fd = open(data, O_WRONLY);
511 if(data_fd < 0)
512 goto loading_close_out;
513
514 fw_fd = open(file, O_RDONLY);
515 if(fw_fd < 0)
516 goto data_close_out;
517
518 if(!load_firmware(fw_fd, loading_fd, data_fd))
519 log_event_print("firmware copy success { '%s', '%s' }\n", root, file);
520 else
521 log_event_print("firmware copy failure { '%s', '%s' }\n", root, file);
522
523 close(fw_fd);
524data_close_out:
525 close(data_fd);
526loading_close_out:
527 close(loading_fd);
528file_free_out:
529 free(file);
530data_free_out:
531 free(data);
532loading_free_out:
533 free(loading);
534root_free_out:
535 free(root);
536}
537
538static void handle_firmware_event(struct uevent *uevent)
539{
540 pid_t pid;
Colin Cross982a8152010-06-03 12:21:01 -0700541 int status;
542 int ret;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700543
544 if(strcmp(uevent->subsystem, "firmware"))
545 return;
546
547 if(strcmp(uevent->action, "add"))
548 return;
549
550 /* we fork, to avoid making large memory allocations in init proper */
551 pid = fork();
552 if (!pid) {
553 process_firmware_event(uevent);
554 exit(EXIT_SUCCESS);
Colin Cross982a8152010-06-03 12:21:01 -0700555 } else {
556 do {
557 ret = waitpid(pid, &status, 0);
558 } while (ret == -1 && errno == EINTR);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700559 }
560}
561
562#define UEVENT_MSG_LEN 1024
Colin Cross0dd7ca62010-04-13 19:25:51 -0700563void handle_device_fd()
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700564{
565 char msg[UEVENT_MSG_LEN+2];
566 int n;
567
Colin Cross0dd7ca62010-04-13 19:25:51 -0700568 while((n = recv(device_fd, msg, UEVENT_MSG_LEN, 0)) > 0) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700569 struct uevent uevent;
570
571 if(n == UEVENT_MSG_LEN) /* overflow -- discard */
572 continue;
573
574 msg[n] = '\0';
575 msg[n+1] = '\0';
576
577 parse_event(msg, &uevent);
578
579 handle_device_event(&uevent);
580 handle_firmware_event(&uevent);
581 }
582}
583
584/* Coldboot walks parts of the /sys tree and pokes the uevent files
585** to cause the kernel to regenerate device add events that happened
586** before init's device manager was started
587**
588** We drain any pending events from the netlink socket every time
589** we poke another uevent file to make sure we don't overrun the
590** socket's buffer.
591*/
592
Colin Cross0dd7ca62010-04-13 19:25:51 -0700593static void do_coldboot(DIR *d)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700594{
595 struct dirent *de;
596 int dfd, fd;
597
598 dfd = dirfd(d);
599
600 fd = openat(dfd, "uevent", O_WRONLY);
601 if(fd >= 0) {
602 write(fd, "add\n", 4);
603 close(fd);
Colin Cross0dd7ca62010-04-13 19:25:51 -0700604 handle_device_fd();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700605 }
606
607 while((de = readdir(d))) {
608 DIR *d2;
609
610 if(de->d_type != DT_DIR || de->d_name[0] == '.')
611 continue;
612
613 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
614 if(fd < 0)
615 continue;
616
617 d2 = fdopendir(fd);
618 if(d2 == 0)
619 close(fd);
620 else {
Colin Cross0dd7ca62010-04-13 19:25:51 -0700621 do_coldboot(d2);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700622 closedir(d2);
623 }
624 }
625}
626
Colin Cross0dd7ca62010-04-13 19:25:51 -0700627static void coldboot(const char *path)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700628{
629 DIR *d = opendir(path);
630 if(d) {
Colin Cross0dd7ca62010-04-13 19:25:51 -0700631 do_coldboot(d);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700632 closedir(d);
633 }
634}
635
Colin Cross0dd7ca62010-04-13 19:25:51 -0700636void device_init(void)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700637{
638 suseconds_t t0, t1;
Colin Crossf83d0b92010-04-21 12:04:20 -0700639 struct stat info;
640 int fd;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700641
Colin Cross0dd7ca62010-04-13 19:25:51 -0700642 device_fd = open_uevent_socket();
643 if(device_fd < 0)
644 return;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700645
Colin Cross0dd7ca62010-04-13 19:25:51 -0700646 fcntl(device_fd, F_SETFD, FD_CLOEXEC);
647 fcntl(device_fd, F_SETFL, O_NONBLOCK);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700648
Colin Crossf83d0b92010-04-21 12:04:20 -0700649 if (stat(coldboot_done, &info) < 0) {
650 t0 = get_usecs();
651 coldboot("/sys/class");
652 coldboot("/sys/block");
653 coldboot("/sys/devices");
654 t1 = get_usecs();
655 fd = open(coldboot_done, O_WRONLY|O_CREAT, 0000);
656 close(fd);
657 log_event_print("coldboot %ld uS\n", ((long) (t1 - t0)));
658 } else {
659 log_event_print("skipping coldboot, already done\n");
660 }
Colin Cross0dd7ca62010-04-13 19:25:51 -0700661}
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700662
Colin Cross0dd7ca62010-04-13 19:25:51 -0700663int get_device_fd()
664{
665 return device_fd;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700666}