blob: 606a07445e2a0f6c1ca84f1a6be7f758c0929e40 [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>
34
35#include "init.h"
36#include "devices.h"
37
38#define CMDLINE_PREFIX "/dev"
39#define SYSFS_PREFIX "/sys"
40#define FIRMWARE_DIR "/etc/firmware"
41#define MAX_QEMU_PERM 6
42
43struct uevent {
44 const char *action;
45 const char *path;
46 const char *subsystem;
47 const char *firmware;
48 int major;
49 int minor;
50};
51
52static int open_uevent_socket(void)
53{
54 struct sockaddr_nl addr;
55 int sz = 64*1024; // XXX larger? udev uses 16MB!
56 int s;
57
58 memset(&addr, 0, sizeof(addr));
59 addr.nl_family = AF_NETLINK;
60 addr.nl_pid = getpid();
61 addr.nl_groups = 0xffffffff;
62
63 s = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
64 if(s < 0)
65 return -1;
66
67 setsockopt(s, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz));
68
69 if(bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
70 close(s);
71 return -1;
72 }
73
74 return s;
75}
76
77struct perms_ {
78 char *name;
79 mode_t perm;
80 unsigned int uid;
81 unsigned int gid;
82 unsigned short prefix;
83};
84static struct perms_ devperms[] = {
85 { "/dev/null", 0666, AID_ROOT, AID_ROOT, 0 },
86 { "/dev/zero", 0666, AID_ROOT, AID_ROOT, 0 },
87 { "/dev/full", 0666, AID_ROOT, AID_ROOT, 0 },
88 { "/dev/ptmx", 0666, AID_ROOT, AID_ROOT, 0 },
89 { "/dev/tty", 0666, AID_ROOT, AID_ROOT, 0 },
90 { "/dev/random", 0666, AID_ROOT, AID_ROOT, 0 },
91 { "/dev/urandom", 0666, AID_ROOT, AID_ROOT, 0 },
92 { "/dev/ashmem", 0666, AID_ROOT, AID_ROOT, 0 },
93 { "/dev/binder", 0666, AID_ROOT, AID_ROOT, 0 },
94
95 /* logger should be world writable (for logging) but not readable */
96 { "/dev/log/", 0662, AID_ROOT, AID_LOG, 1 },
97
98 /* these should not be world writable */
99 { "/dev/android_adb", 0660, AID_ADB, AID_ADB, 0 },
100 { "/dev/android_adb_enable", 0660, AID_ADB, AID_ADB, 0 },
The Android Open Source Project35237d12008-12-17 18:08:08 -0800101 { "/dev/ttyMSM0", 0600, AID_BLUETOOTH, AID_BLUETOOTH, 0 },
102 { "/dev/ttyHS0", 0600, AID_BLUETOOTH, AID_BLUETOOTH, 0 },
103 { "/dev/uinput", 0600, AID_BLUETOOTH, AID_BLUETOOTH, 0 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700104 { "/dev/alarm", 0664, AID_SYSTEM, AID_RADIO, 0 },
The Android Open Source Project35237d12008-12-17 18:08:08 -0800105 { "/dev/tty0", 0660, AID_ROOT, AID_SYSTEM, 0 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700106 { "/dev/graphics/", 0660, AID_ROOT, AID_GRAPHICS, 1 },
107 { "/dev/hw3d", 0660, AID_SYSTEM, AID_GRAPHICS, 0 },
108 { "/dev/input/", 0660, AID_ROOT, AID_INPUT, 1 },
109 { "/dev/eac", 0660, AID_ROOT, AID_AUDIO, 0 },
110 { "/dev/cam", 0660, AID_ROOT, AID_CAMERA, 0 },
111 { "/dev/pmem", 0660, AID_SYSTEM, AID_GRAPHICS, 0 },
112 { "/dev/pmem_gpu", 0660, AID_SYSTEM, AID_GRAPHICS, 1 },
113 { "/dev/pmem_adsp", 0660, AID_SYSTEM, AID_AUDIO, 1 },
114 { "/dev/pmem_camera", 0660, AID_SYSTEM, AID_CAMERA, 1 },
115 { "/dev/oncrpc/", 0660, AID_ROOT, AID_SYSTEM, 1 },
116 { "/dev/adsp/", 0660, AID_SYSTEM, AID_AUDIO, 1 },
117 { "/dev/mt9t013", 0660, AID_SYSTEM, AID_SYSTEM, 0 },
Iliyan Malchevfc0182e2009-05-01 10:25:05 -0700118 { "/dev/msm_camera/", 0660, AID_SYSTEM, AID_SYSTEM, 1 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700119 { "/dev/akm8976_daemon",0640, AID_COMPASS, AID_SYSTEM, 0 },
120 { "/dev/akm8976_aot", 0640, AID_COMPASS, AID_SYSTEM, 0 },
121 { "/dev/akm8976_pffd", 0640, AID_COMPASS, AID_SYSTEM, 0 },
122 { "/dev/msm_pcm_out", 0660, AID_SYSTEM, AID_AUDIO, 1 },
123 { "/dev/msm_pcm_in", 0660, AID_SYSTEM, AID_AUDIO, 1 },
124 { "/dev/msm_pcm_ctl", 0660, AID_SYSTEM, AID_AUDIO, 1 },
The Android Open Source Project5ae090e2009-01-09 17:51:25 -0800125 { "/dev/msm_snd", 0660, AID_SYSTEM, AID_AUDIO, 1 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700126 { "/dev/msm_mp3", 0660, AID_SYSTEM, AID_AUDIO, 1 },
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800127 { "/dev/msm_audpre", 0660, AID_SYSTEM, AID_AUDIO, 0 },
128 { "/dev/htc-acoustic", 0660, AID_SYSTEM, AID_AUDIO, 0 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700129 { "/dev/smd0", 0640, AID_RADIO, AID_RADIO, 0 },
Jack Veenstra4a762352009-05-05 11:48:17 -0700130 { "/dev/qemu_trace", 0666, AID_SYSTEM, AID_SYSTEM, 0 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700131 { "/dev/qmi", 0640, AID_RADIO, AID_RADIO, 0 },
132 { "/dev/qmi0", 0640, AID_RADIO, AID_RADIO, 0 },
133 { "/dev/qmi1", 0640, AID_RADIO, AID_RADIO, 0 },
134 { "/dev/qmi2", 0640, AID_RADIO, AID_RADIO, 0 },
Chia-chi Yeh88dc6572009-06-19 14:59:08 +0800135 { "/dev/ppp", 0660, AID_RADIO, AID_VPN, 0 },
136 { "/dev/tun", 0640, AID_VPN, AID_VPN, 0 },
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700137 { NULL, 0, 0, 0, 0 },
138};
139
140/* devperms_partners list and perm_node are for hardware specific /dev entries */
141struct perm_node {
142 struct perms_ dp;
143 struct listnode plist;
144};
145list_declare(devperms_partners);
146
147/*
148 * Permission override when in emulator mode, must be parsed before
149 * system properties is initalized.
150 */
151static int qemu_perm_count;
152static struct perms_ qemu_perms[MAX_QEMU_PERM + 1];
153
154int add_devperms_partners(const char *name, mode_t perm, unsigned int uid,
155 unsigned int gid, unsigned short prefix) {
156 int size;
157 struct perm_node *node = malloc(sizeof (struct perm_node));
158 if (!node)
159 return -ENOMEM;
160
161 size = strlen(name) + 1;
162 if ((node->dp.name = malloc(size)) == NULL)
163 return -ENOMEM;
164
165 memcpy(node->dp.name, name, size);
166 node->dp.perm = perm;
167 node->dp.uid = uid;
168 node->dp.gid = gid;
169 node->dp.prefix = prefix;
170
171 list_add_tail(&devperms_partners, &node->plist);
172 return 0;
173}
174
175void qemu_init(void) {
176 qemu_perm_count = 0;
177 memset(&qemu_perms, 0, sizeof(qemu_perms));
178}
179
180static int qemu_perm(const char* name, mode_t perm, unsigned int uid,
181 unsigned int gid, unsigned short prefix)
182{
183 char *buf;
184 if (qemu_perm_count == MAX_QEMU_PERM)
185 return -ENOSPC;
186
187 buf = malloc(strlen(name) + 1);
188 if (!buf)
189 return -errno;
190
191 strlcpy(buf, name, strlen(name) + 1);
192 qemu_perms[qemu_perm_count].name = buf;
193 qemu_perms[qemu_perm_count].perm = perm;
194 qemu_perms[qemu_perm_count].uid = uid;
195 qemu_perms[qemu_perm_count].gid = gid;
196 qemu_perms[qemu_perm_count].prefix = prefix;
197
198 qemu_perm_count++;
199 return 0;
200}
201
202/* Permission overrides for emulator that are parsed from /proc/cmdline. */
203void qemu_cmdline(const char* name, const char *value)
204{
205 char *buf;
206 if (!strcmp(name, "android.ril")) {
207 /* cmd line params currently assume /dev/ prefix */
208 if (asprintf(&buf, CMDLINE_PREFIX"/%s", value) == -1) {
209 return;
210 }
211 INFO("nani- buf:: %s\n", buf);
212 qemu_perm(buf, 0660, AID_RADIO, AID_ROOT, 0);
213 }
214}
215
216static int get_device_perm_inner(struct perms_ *perms, const char *path,
217 unsigned *uid, unsigned *gid, mode_t *perm)
218{
219 int i;
220 for(i = 0; perms[i].name; i++) {
221
222 if(perms[i].prefix) {
223 if(strncmp(path, perms[i].name, strlen(perms[i].name)))
224 continue;
225 } else {
226 if(strcmp(path, perms[i].name))
227 continue;
228 }
229 *uid = perms[i].uid;
230 *gid = perms[i].gid;
231 *perm = perms[i].perm;
232 return 0;
233 }
234 return -1;
235}
236
237/* First checks for emulator specific permissions specified in /proc/cmdline. */
238static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
239{
240 mode_t perm;
241
242 if (get_device_perm_inner(qemu_perms, path, uid, gid, &perm) == 0) {
243 return perm;
244 } else if (get_device_perm_inner(devperms, path, uid, gid, &perm) == 0) {
245 return perm;
246 } else {
247 struct listnode *node;
248 struct perm_node *perm_node;
249 struct perms_ *dp;
250
251 /* Check partners list. */
252 list_for_each(node, &devperms_partners) {
253 perm_node = node_to_item(node, struct perm_node, plist);
254 dp = &perm_node->dp;
255
256 if (dp->prefix) {
257 if (strncmp(path, dp->name, strlen(dp->name)))
258 continue;
259 } else {
260 if (strcmp(path, dp->name))
261 continue;
262 }
263 /* Found perm in partner list. */
264 *uid = dp->uid;
265 *gid = dp->gid;
266 return dp->perm;
267 }
268 /* Default if nothing found. */
269 *uid = 0;
270 *gid = 0;
271 return 0600;
272 }
273}
274
275static void make_device(const char *path, int block, int major, int minor)
276{
277 unsigned uid;
278 unsigned gid;
279 mode_t mode;
280 dev_t dev;
281
282 if(major > 255 || minor > 255)
283 return;
284
285 mode = get_device_perm(path, &uid, &gid) | (block ? S_IFBLK : S_IFCHR);
286 dev = (major << 8) | minor;
287 mknod(path, mode, dev);
288 chown(path, uid, gid);
289}
290
Chuck Tuffli1e070842008-12-15 14:26:56 -0800291#if LOG_UEVENTS
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700292
293static inline suseconds_t get_usecs(void)
294{
295 struct timeval tv;
296 gettimeofday(&tv, 0);
297 return tv.tv_sec * (suseconds_t) 1000000 + tv.tv_usec;
298}
299
300#define log_event_print(x...) INFO(x)
301
302#else
303
304#define log_event_print(fmt, args...) do { } while (0)
305#define get_usecs() 0
306
307#endif
308
309static void parse_event(const char *msg, struct uevent *uevent)
310{
311 uevent->action = "";
312 uevent->path = "";
313 uevent->subsystem = "";
314 uevent->firmware = "";
315 uevent->major = -1;
316 uevent->minor = -1;
317
318 /* currently ignoring SEQNUM */
319 while(*msg) {
320 if(!strncmp(msg, "ACTION=", 7)) {
321 msg += 7;
322 uevent->action = msg;
323 } else if(!strncmp(msg, "DEVPATH=", 8)) {
324 msg += 8;
325 uevent->path = msg;
326 } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
327 msg += 10;
328 uevent->subsystem = msg;
329 } else if(!strncmp(msg, "FIRMWARE=", 9)) {
330 msg += 9;
331 uevent->firmware = msg;
332 } else if(!strncmp(msg, "MAJOR=", 6)) {
333 msg += 6;
334 uevent->major = atoi(msg);
335 } else if(!strncmp(msg, "MINOR=", 6)) {
336 msg += 6;
337 uevent->minor = atoi(msg);
338 }
339
340 /* advance to after the next \0 */
341 while(*msg++)
342 ;
343 }
344
345 log_event_print("event { '%s', '%s', '%s', '%s', %d, %d }\n",
346 uevent->action, uevent->path, uevent->subsystem,
347 uevent->firmware, uevent->major, uevent->minor);
348}
349
350static void handle_device_event(struct uevent *uevent)
351{
352 char devpath[96];
353 char *base, *name;
354 int block;
355
356 /* if it's not a /dev device, nothing to do */
357 if((uevent->major < 0) || (uevent->minor < 0))
358 return;
359
360 /* do we have a name? */
361 name = strrchr(uevent->path, '/');
362 if(!name)
363 return;
364 name++;
365
366 /* too-long names would overrun our buffer */
367 if(strlen(name) > 64)
368 return;
369
370 /* are we block or char? where should we live? */
The Android Open Source Project35237d12008-12-17 18:08:08 -0800371 if(!strncmp(uevent->subsystem, "block", 5)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700372 block = 1;
373 base = "/dev/block/";
374 mkdir(base, 0755);
375 } else {
376 block = 0;
377 /* this should probably be configurable somehow */
The Android Open Source Project35237d12008-12-17 18:08:08 -0800378 if(!strncmp(uevent->subsystem, "graphics", 8)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700379 base = "/dev/graphics/";
380 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800381 } else if (!strncmp(uevent->subsystem, "oncrpc", 6)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700382 base = "/dev/oncrpc/";
383 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800384 } else if (!strncmp(uevent->subsystem, "adsp", 4)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700385 base = "/dev/adsp/";
386 mkdir(base, 0755);
Iliyan Malchevfc0182e2009-05-01 10:25:05 -0700387 } else if (!strncmp(uevent->subsystem, "msm_camera", 10)) {
388 base = "/dev/msm_camera/";
389 mkdir(base, 0755);
390 } else if(!strncmp(uevent->subsystem, "input", 5)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700391 base = "/dev/input/";
392 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800393 } else if(!strncmp(uevent->subsystem, "mtd", 3)) {
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700394 base = "/dev/mtd/";
395 mkdir(base, 0755);
Xiaopeng Yang5bb44c82008-11-25 16:20:07 -0800396 } else if(!strncmp(uevent->subsystem, "sound", 5)) {
397 base = "/dev/snd/";
398 mkdir(base, 0755);
The Android Open Source Project35237d12008-12-17 18:08:08 -0800399 } else if(!strncmp(uevent->subsystem, "misc", 4) &&
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700400 !strncmp(name, "log_", 4)) {
401 base = "/dev/log/";
402 mkdir(base, 0755);
403 name += 4;
404 } else
405 base = "/dev/";
406 }
407
408 snprintf(devpath, sizeof(devpath), "%s%s", base, name);
409
410 if(!strcmp(uevent->action, "add")) {
411 make_device(devpath, block, uevent->major, uevent->minor);
412 return;
413 }
414
415 if(!strcmp(uevent->action, "remove")) {
416 unlink(devpath);
417 return;
418 }
419}
420
421static int load_firmware(int fw_fd, int loading_fd, int data_fd)
422{
423 struct stat st;
424 long len_to_copy;
425 int ret = 0;
426
427 if(fstat(fw_fd, &st) < 0)
428 return -1;
429 len_to_copy = st.st_size;
430
431 write(loading_fd, "1", 1); /* start transfer */
432
433 while (len_to_copy > 0) {
434 char buf[PAGE_SIZE];
435 ssize_t nr;
436
437 nr = read(fw_fd, buf, sizeof(buf));
438 if(!nr)
439 break;
440 if(nr < 0) {
441 ret = -1;
442 break;
443 }
444
445 len_to_copy -= nr;
446 while (nr > 0) {
447 ssize_t nw = 0;
448
449 nw = write(data_fd, buf + nw, nr);
450 if(nw <= 0) {
451 ret = -1;
452 goto out;
453 }
454 nr -= nw;
455 }
456 }
457
458out:
459 if(!ret)
460 write(loading_fd, "0", 1); /* successful end of transfer */
461 else
462 write(loading_fd, "-1", 2); /* abort transfer */
463
464 return ret;
465}
466
467static void process_firmware_event(struct uevent *uevent)
468{
469 char *root, *loading, *data, *file;
470 int l, loading_fd, data_fd, fw_fd;
471
472 log_event_print("firmware event { '%s', '%s' }\n",
473 uevent->path, uevent->firmware);
474
475 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
476 if (l == -1)
477 return;
478
479 l = asprintf(&loading, "%sloading", root);
480 if (l == -1)
481 goto root_free_out;
482
483 l = asprintf(&data, "%sdata", root);
484 if (l == -1)
485 goto loading_free_out;
486
487 l = asprintf(&file, FIRMWARE_DIR"/%s", uevent->firmware);
488 if (l == -1)
489 goto data_free_out;
490
491 loading_fd = open(loading, O_WRONLY);
492 if(loading_fd < 0)
493 goto file_free_out;
494
495 data_fd = open(data, O_WRONLY);
496 if(data_fd < 0)
497 goto loading_close_out;
498
499 fw_fd = open(file, O_RDONLY);
500 if(fw_fd < 0)
501 goto data_close_out;
502
503 if(!load_firmware(fw_fd, loading_fd, data_fd))
504 log_event_print("firmware copy success { '%s', '%s' }\n", root, file);
505 else
506 log_event_print("firmware copy failure { '%s', '%s' }\n", root, file);
507
508 close(fw_fd);
509data_close_out:
510 close(data_fd);
511loading_close_out:
512 close(loading_fd);
513file_free_out:
514 free(file);
515data_free_out:
516 free(data);
517loading_free_out:
518 free(loading);
519root_free_out:
520 free(root);
521}
522
523static void handle_firmware_event(struct uevent *uevent)
524{
525 pid_t pid;
526
527 if(strcmp(uevent->subsystem, "firmware"))
528 return;
529
530 if(strcmp(uevent->action, "add"))
531 return;
532
533 /* we fork, to avoid making large memory allocations in init proper */
534 pid = fork();
535 if (!pid) {
536 process_firmware_event(uevent);
537 exit(EXIT_SUCCESS);
538 }
539}
540
541#define UEVENT_MSG_LEN 1024
542void handle_device_fd(int fd)
543{
544 char msg[UEVENT_MSG_LEN+2];
545 int n;
546
547 while((n = recv(fd, msg, UEVENT_MSG_LEN, 0)) > 0) {
548 struct uevent uevent;
549
550 if(n == UEVENT_MSG_LEN) /* overflow -- discard */
551 continue;
552
553 msg[n] = '\0';
554 msg[n+1] = '\0';
555
556 parse_event(msg, &uevent);
557
558 handle_device_event(&uevent);
559 handle_firmware_event(&uevent);
560 }
561}
562
563/* Coldboot walks parts of the /sys tree and pokes the uevent files
564** to cause the kernel to regenerate device add events that happened
565** before init's device manager was started
566**
567** We drain any pending events from the netlink socket every time
568** we poke another uevent file to make sure we don't overrun the
569** socket's buffer.
570*/
571
572static void do_coldboot(int event_fd, DIR *d)
573{
574 struct dirent *de;
575 int dfd, fd;
576
577 dfd = dirfd(d);
578
579 fd = openat(dfd, "uevent", O_WRONLY);
580 if(fd >= 0) {
581 write(fd, "add\n", 4);
582 close(fd);
583 handle_device_fd(event_fd);
584 }
585
586 while((de = readdir(d))) {
587 DIR *d2;
588
589 if(de->d_type != DT_DIR || de->d_name[0] == '.')
590 continue;
591
592 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
593 if(fd < 0)
594 continue;
595
596 d2 = fdopendir(fd);
597 if(d2 == 0)
598 close(fd);
599 else {
600 do_coldboot(event_fd, d2);
601 closedir(d2);
602 }
603 }
604}
605
606static void coldboot(int event_fd, const char *path)
607{
608 DIR *d = opendir(path);
609 if(d) {
610 do_coldboot(event_fd, d);
611 closedir(d);
612 }
613}
614
615int device_init(void)
616{
617 suseconds_t t0, t1;
618 int fd;
619
620 fd = open_uevent_socket();
621 if(fd < 0)
622 return -1;
623
624 fcntl(fd, F_SETFD, FD_CLOEXEC);
625 fcntl(fd, F_SETFL, O_NONBLOCK);
626
627 t0 = get_usecs();
628 coldboot(fd, "/sys/class");
629 coldboot(fd, "/sys/block");
630 coldboot(fd, "/sys/devices");
631 t1 = get_usecs();
632
633 log_event_print("coldboot %ld uS\n", ((long) (t1 - t0)));
634
635 return fd;
636}