devices.c revision 8d48c8e45724c7103f0ace7885d339e49399908b
1/*
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 <stddef.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <sys/stat.h>
22#include <sys/types.h>
23
24#include <fcntl.h>
25#include <dirent.h>
26#include <unistd.h>
27#include <string.h>
28
29#include <sys/socket.h>
30#include <sys/un.h>
31#include <linux/netlink.h>
32#include <private/android_filesystem_config.h>
33#include <sys/time.h>
34#include <asm/page.h>
35#include <sys/wait.h>
36
37#include "devices.h"
38#include "util.h"
39#include "log.h"
40#include "list.h"
41
42#define SYSFS_PREFIX    "/sys"
43#define FIRMWARE_DIR1   "/etc/firmware"
44#define FIRMWARE_DIR2   "/vendor/firmware"
45
46static int device_fd = -1;
47
48struct uevent {
49    const char *action;
50    const char *path;
51    const char *subsystem;
52    const char *firmware;
53    const char *partition_name;
54    int partition_num;
55    int major;
56    int minor;
57};
58
59static int open_uevent_socket(void)
60{
61    struct sockaddr_nl addr;
62    int sz = 64*1024; // XXX larger? udev uses 16MB!
63    int on = 1;
64    int s;
65
66    memset(&addr, 0, sizeof(addr));
67    addr.nl_family = AF_NETLINK;
68    addr.nl_pid = getpid();
69    addr.nl_groups = 0xffffffff;
70
71    s = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
72    if(s < 0)
73        return -1;
74
75    setsockopt(s, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz));
76    setsockopt(s, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
77
78    if(bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
79        close(s);
80        return -1;
81    }
82
83    return s;
84}
85
86struct perms_ {
87    char *name;
88    char *attr;
89    mode_t perm;
90    unsigned int uid;
91    unsigned int gid;
92    unsigned short prefix;
93};
94
95struct perm_node {
96    struct perms_ dp;
97    struct listnode plist;
98};
99
100static list_declare(sys_perms);
101static list_declare(dev_perms);
102
103int add_dev_perms(const char *name, const char *attr,
104                  mode_t perm, unsigned int uid, unsigned int gid,
105                  unsigned short prefix) {
106    struct perm_node *node = calloc(1, sizeof(*node));
107    if (!node)
108        return -ENOMEM;
109
110    node->dp.name = strdup(name);
111    if (!node->dp.name)
112        return -ENOMEM;
113
114    if (attr) {
115        node->dp.attr = strdup(attr);
116        if (!node->dp.attr)
117            return -ENOMEM;
118    }
119
120    node->dp.perm = perm;
121    node->dp.uid = uid;
122    node->dp.gid = gid;
123    node->dp.prefix = prefix;
124
125    if (attr)
126        list_add_tail(&sys_perms, &node->plist);
127    else
128        list_add_tail(&dev_perms, &node->plist);
129
130    return 0;
131}
132
133void fixup_sys_perms(const char *upath)
134{
135    char buf[512];
136    struct listnode *node;
137    struct perms_ *dp;
138
139        /* upaths omit the "/sys" that paths in this list
140         * contain, so we add 4 when comparing...
141         */
142    list_for_each(node, &sys_perms) {
143        dp = &(node_to_item(node, struct perm_node, plist))->dp;
144        if (dp->prefix) {
145            if (strncmp(upath, dp->name + 4, strlen(dp->name + 4)))
146                continue;
147        } else {
148            if (strcmp(upath, dp->name + 4))
149                continue;
150        }
151
152        if ((strlen(upath) + strlen(dp->attr) + 6) > sizeof(buf))
153            return;
154
155        sprintf(buf,"/sys%s/%s", upath, dp->attr);
156        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);
159    }
160}
161
162static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
163{
164    mode_t perm;
165    struct listnode *node;
166    struct perm_node *perm_node;
167    struct perms_ *dp;
168
169    /* search the perms list in reverse so that ueventd.$hardware can
170     * override ueventd.rc
171     */
172    list_for_each_reverse(node, &dev_perms) {
173        perm_node = node_to_item(node, struct perm_node, plist);
174        dp = &perm_node->dp;
175
176        if (dp->prefix) {
177            if (strncmp(path, dp->name, strlen(dp->name)))
178                continue;
179        } else {
180            if (strcmp(path, dp->name))
181                continue;
182        }
183        *uid = dp->uid;
184        *gid = dp->gid;
185        return dp->perm;
186    }
187    /* Default if nothing found. */
188    *uid = 0;
189    *gid = 0;
190    return 0600;
191}
192
193static void make_device(const char *path,
194                        const char *upath,
195                        int block, int major, int minor)
196{
197    unsigned uid;
198    unsigned gid;
199    mode_t mode;
200    dev_t dev;
201
202    mode = get_device_perm(path, &uid, &gid) | (block ? S_IFBLK : S_IFCHR);
203    dev = makedev(major, minor);
204    /* Temporarily change egid to avoid race condition setting the gid of the
205     * device node. Unforunately changing the euid would prevent creation of
206     * some device nodes, so the uid has to be set with chown() and is still
207     * racy. Fixing the gid race at least fixed the issue with system_server
208     * opening dynamic input devices under the AID_INPUT gid. */
209    setegid(gid);
210    mknod(path, mode, dev);
211    chown(path, uid, -1);
212    setegid(AID_ROOT);
213}
214
215#if LOG_UEVENTS
216
217static inline suseconds_t get_usecs(void)
218{
219    struct timeval tv;
220    gettimeofday(&tv, 0);
221    return tv.tv_sec * (suseconds_t) 1000000 + tv.tv_usec;
222}
223
224#define log_event_print(x...) INFO(x)
225
226#else
227
228#define log_event_print(fmt, args...)   do { } while (0)
229#define get_usecs()                     0
230
231#endif
232
233static void parse_event(const char *msg, struct uevent *uevent)
234{
235    uevent->action = "";
236    uevent->path = "";
237    uevent->subsystem = "";
238    uevent->firmware = "";
239    uevent->major = -1;
240    uevent->minor = -1;
241    uevent->partition_name = NULL;
242    uevent->partition_num = -1;
243
244        /* currently ignoring SEQNUM */
245    while(*msg) {
246        if(!strncmp(msg, "ACTION=", 7)) {
247            msg += 7;
248            uevent->action = msg;
249        } else if(!strncmp(msg, "DEVPATH=", 8)) {
250            msg += 8;
251            uevent->path = msg;
252        } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
253            msg += 10;
254            uevent->subsystem = msg;
255        } else if(!strncmp(msg, "FIRMWARE=", 9)) {
256            msg += 9;
257            uevent->firmware = msg;
258        } else if(!strncmp(msg, "MAJOR=", 6)) {
259            msg += 6;
260            uevent->major = atoi(msg);
261        } else if(!strncmp(msg, "MINOR=", 6)) {
262            msg += 6;
263            uevent->minor = atoi(msg);
264        } else if(!strncmp(msg, "PARTN=", 6)) {
265            msg += 6;
266            uevent->partition_num = atoi(msg);
267        } else if(!strncmp(msg, "PARTNAME=", 9)) {
268            msg += 9;
269            uevent->partition_name = msg;
270        }
271
272            /* advance to after the next \0 */
273        while(*msg++)
274            ;
275    }
276
277    log_event_print("event { '%s', '%s', '%s', '%s', %d, %d }\n",
278                    uevent->action, uevent->path, uevent->subsystem,
279                    uevent->firmware, uevent->major, uevent->minor);
280}
281
282static char **get_character_device_symlinks(struct uevent *uevent)
283{
284    const char *parent;
285    char *slash;
286    char **links;
287    int link_num = 0;
288    int width;
289
290    if (strncmp(uevent->path, "/devices/platform/", 18))
291        return NULL;
292
293    links = malloc(sizeof(char *) * 2);
294    if (!links)
295        return NULL;
296    memset(links, 0, sizeof(char *) * 2);
297
298    /* skip "/devices/platform/<driver>" */
299    parent = strchr(uevent->path + 18, '/');
300    if (!*parent)
301        goto err;
302
303    if (!strncmp(parent, "/usb", 4)) {
304        /* skip root hub name and device. use device interface */
305        while (*++parent && *parent != '/');
306        if (*parent)
307            while (*++parent && *parent != '/');
308        if (!*parent)
309            goto err;
310        slash = strchr(++parent, '/');
311        if (!slash)
312            goto err;
313        width = slash - parent;
314        if (width <= 0)
315            goto err;
316
317        if (asprintf(&links[link_num], "/dev/usb/%s%.*s", uevent->subsystem, width, parent) > 0)
318            link_num++;
319        else
320            links[link_num] = NULL;
321        mkdir("/dev/usb", 0755);
322    }
323    else {
324        goto err;
325    }
326
327    return links;
328err:
329    free(links);
330    return NULL;
331}
332
333static char **parse_platform_block_device(struct uevent *uevent)
334{
335    const char *driver;
336    const char *path;
337    char *slash;
338    int width;
339    char buf[256];
340    char link_path[256];
341    int fd;
342    int link_num = 0;
343    int ret;
344    char *p;
345    unsigned int size;
346    struct stat info;
347
348    char **links = malloc(sizeof(char *) * 4);
349    if (!links)
350        return NULL;
351    memset(links, 0, sizeof(char *) * 4);
352
353    /* Drop "/devices/platform/" */
354    path = uevent->path;
355    driver = path + 18;
356    slash = strchr(driver, '/');
357    if (!slash)
358        goto err;
359    width = slash - driver;
360    if (width <= 0)
361        goto err;
362
363    snprintf(link_path, sizeof(link_path), "/dev/block/platform/%.*s",
364             width, driver);
365
366    if (uevent->partition_name) {
367        p = strdup(uevent->partition_name);
368        sanitize(p);
369        if (asprintf(&links[link_num], "%s/by-name/%s", link_path, p) > 0)
370            link_num++;
371        else
372            links[link_num] = NULL;
373        free(p);
374    }
375
376    if (uevent->partition_num >= 0) {
377        if (asprintf(&links[link_num], "%s/by-num/p%d", link_path, uevent->partition_num) > 0)
378            link_num++;
379        else
380            links[link_num] = NULL;
381    }
382
383    slash = strrchr(path, '/');
384    if (asprintf(&links[link_num], "%s/%s", link_path, slash + 1) > 0)
385        link_num++;
386    else
387        links[link_num] = NULL;
388
389    return links;
390
391err:
392    free(links);
393    return NULL;
394}
395
396static void handle_device_event(struct uevent *uevent)
397{
398    char devpath[96];
399    int devpath_ready = 0;
400    char *base, *name;
401    char **links = NULL;
402    int block;
403    int i;
404
405    if (!strcmp(uevent->action,"add"))
406        fixup_sys_perms(uevent->path);
407
408        /* if it's not a /dev device, nothing else to do */
409    if((uevent->major < 0) || (uevent->minor < 0))
410        return;
411
412        /* do we have a name? */
413    name = strrchr(uevent->path, '/');
414    if(!name)
415        return;
416    name++;
417
418        /* too-long names would overrun our buffer */
419    if(strlen(name) > 64)
420        return;
421
422        /* are we block or char? where should we live? */
423    if(!strncmp(uevent->subsystem, "block", 5)) {
424        block = 1;
425        base = "/dev/block/";
426        mkdir(base, 0755);
427        if (!strncmp(uevent->path, "/devices/platform/", 18))
428            links = parse_platform_block_device(uevent);
429    } else {
430        block = 0;
431            /* this should probably be configurable somehow */
432        if (!strncmp(uevent->subsystem, "usb", 3)) {
433            if (!strcmp(uevent->subsystem, "usb")) {
434                /* This imitates the file system that would be created
435                 * if we were using devfs instead.
436                 * Minors are broken up into groups of 128, starting at "001"
437                 */
438                int bus_id = uevent->minor / 128 + 1;
439                int device_id = uevent->minor % 128 + 1;
440                /* build directories */
441                mkdir("/dev/bus", 0755);
442                mkdir("/dev/bus/usb", 0755);
443                snprintf(devpath, sizeof(devpath), "/dev/bus/usb/%03d", bus_id);
444                mkdir(devpath, 0755);
445                snprintf(devpath, sizeof(devpath), "/dev/bus/usb/%03d/%03d", bus_id, device_id);
446                devpath_ready = 1;
447            } else {
448                /* ignore other USB events */
449                return;
450            }
451        } else if (!strncmp(uevent->subsystem, "graphics", 8)) {
452            base = "/dev/graphics/";
453            mkdir(base, 0755);
454        } else if (!strncmp(uevent->subsystem, "oncrpc", 6)) {
455            base = "/dev/oncrpc/";
456            mkdir(base, 0755);
457        } else if (!strncmp(uevent->subsystem, "adsp", 4)) {
458            base = "/dev/adsp/";
459            mkdir(base, 0755);
460        } else if (!strncmp(uevent->subsystem, "msm_camera", 10)) {
461            base = "/dev/msm_camera/";
462            mkdir(base, 0755);
463        } else if(!strncmp(uevent->subsystem, "input", 5)) {
464            base = "/dev/input/";
465            mkdir(base, 0755);
466        } else if(!strncmp(uevent->subsystem, "mtd", 3)) {
467            base = "/dev/mtd/";
468            mkdir(base, 0755);
469        } else if(!strncmp(uevent->subsystem, "sound", 5)) {
470            base = "/dev/snd/";
471            mkdir(base, 0755);
472        } else if(!strncmp(uevent->subsystem, "misc", 4) &&
473                    !strncmp(name, "log_", 4)) {
474            base = "/dev/log/";
475            mkdir(base, 0755);
476            name += 4;
477        } else
478            base = "/dev/";
479        links = get_character_device_symlinks(uevent);
480    }
481
482    if (!devpath_ready)
483        snprintf(devpath, sizeof(devpath), "%s%s", base, name);
484
485    if(!strcmp(uevent->action, "add")) {
486        make_device(devpath, uevent->path, block, uevent->major, uevent->minor);
487        if (links) {
488            for (i = 0; links[i]; i++)
489                make_link(devpath, links[i]);
490        }
491    }
492
493    if(!strcmp(uevent->action, "remove")) {
494        if (links) {
495            for (i = 0; links[i]; i++)
496                remove_link(devpath, links[i]);
497        }
498        unlink(devpath);
499    }
500
501    if (links) {
502        for (i = 0; links[i]; i++)
503            free(links[i]);
504        free(links);
505    }
506}
507
508static int load_firmware(int fw_fd, int loading_fd, int data_fd)
509{
510    struct stat st;
511    long len_to_copy;
512    int ret = 0;
513
514    if(fstat(fw_fd, &st) < 0)
515        return -1;
516    len_to_copy = st.st_size;
517
518    write(loading_fd, "1", 1);  /* start transfer */
519
520    while (len_to_copy > 0) {
521        char buf[PAGE_SIZE];
522        ssize_t nr;
523
524        nr = read(fw_fd, buf, sizeof(buf));
525        if(!nr)
526            break;
527        if(nr < 0) {
528            ret = -1;
529            break;
530        }
531
532        len_to_copy -= nr;
533        while (nr > 0) {
534            ssize_t nw = 0;
535
536            nw = write(data_fd, buf + nw, nr);
537            if(nw <= 0) {
538                ret = -1;
539                goto out;
540            }
541            nr -= nw;
542        }
543    }
544
545out:
546    if(!ret)
547        write(loading_fd, "0", 1);  /* successful end of transfer */
548    else
549        write(loading_fd, "-1", 2); /* abort transfer */
550
551    return ret;
552}
553
554static int is_booting(void)
555{
556    return access("/dev/.booting", F_OK) == 0;
557}
558
559static void process_firmware_event(struct uevent *uevent)
560{
561    char *root, *loading, *data, *file1 = NULL, *file2 = NULL;
562    int l, loading_fd, data_fd, fw_fd;
563    int booting = is_booting();
564
565    INFO("firmware: loading '%s' for '%s'\n",
566         uevent->firmware, uevent->path);
567
568    l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
569    if (l == -1)
570        return;
571
572    l = asprintf(&loading, "%sloading", root);
573    if (l == -1)
574        goto root_free_out;
575
576    l = asprintf(&data, "%sdata", root);
577    if (l == -1)
578        goto loading_free_out;
579
580    l = asprintf(&file1, FIRMWARE_DIR1"/%s", uevent->firmware);
581    if (l == -1)
582        goto data_free_out;
583
584    l = asprintf(&file2, FIRMWARE_DIR2"/%s", uevent->firmware);
585    if (l == -1)
586        goto data_free_out;
587
588    loading_fd = open(loading, O_WRONLY);
589    if(loading_fd < 0)
590        goto file_free_out;
591
592    data_fd = open(data, O_WRONLY);
593    if(data_fd < 0)
594        goto loading_close_out;
595
596try_loading_again:
597    fw_fd = open(file1, O_RDONLY);
598    if(fw_fd < 0) {
599        fw_fd = open(file2, O_RDONLY);
600        if (fw_fd < 0) {
601            if (booting) {
602                    /* If we're not fully booted, we may be missing
603                     * filesystems needed for firmware, wait and retry.
604                     */
605                usleep(100000);
606                booting = is_booting();
607                goto try_loading_again;
608            }
609            INFO("firmware: could not open '%s' %d\n", uevent->firmware, errno);
610            write(loading_fd, "-1", 2);
611            goto data_close_out;
612        }
613    }
614
615    if(!load_firmware(fw_fd, loading_fd, data_fd))
616        INFO("firmware: copy success { '%s', '%s' }\n", root, uevent->firmware);
617    else
618        INFO("firmware: copy failure { '%s', '%s' }\n", root, uevent->firmware);
619
620    close(fw_fd);
621data_close_out:
622    close(data_fd);
623loading_close_out:
624    close(loading_fd);
625file_free_out:
626    free(file1);
627    free(file2);
628data_free_out:
629    free(data);
630loading_free_out:
631    free(loading);
632root_free_out:
633    free(root);
634}
635
636static void handle_firmware_event(struct uevent *uevent)
637{
638    pid_t pid;
639    int ret;
640
641    if(strcmp(uevent->subsystem, "firmware"))
642        return;
643
644    if(strcmp(uevent->action, "add"))
645        return;
646
647    /* we fork, to avoid making large memory allocations in init proper */
648    pid = fork();
649    if (!pid) {
650        process_firmware_event(uevent);
651        exit(EXIT_SUCCESS);
652    }
653}
654
655#define UEVENT_MSG_LEN  1024
656void handle_device_fd()
657{
658    for(;;) {
659        char msg[UEVENT_MSG_LEN+2];
660        char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
661        struct iovec iov = {msg, sizeof(msg)};
662        struct sockaddr_nl snl;
663        struct msghdr hdr = {&snl, sizeof(snl), &iov, 1, cred_msg, sizeof(cred_msg), 0};
664
665        ssize_t n = recvmsg(device_fd, &hdr, 0);
666        if (n <= 0) {
667            break;
668        }
669
670        if ((snl.nl_groups != 1) || (snl.nl_pid != 0)) {
671            /* ignoring non-kernel netlink multicast message */
672            continue;
673        }
674
675        struct cmsghdr * cmsg = CMSG_FIRSTHDR(&hdr);
676        if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
677            /* no sender credentials received, ignore message */
678            continue;
679        }
680
681        struct ucred * cred = (struct ucred *)CMSG_DATA(cmsg);
682        if (cred->uid != 0) {
683            /* message from non-root user, ignore */
684            continue;
685        }
686
687        if(n >= UEVENT_MSG_LEN)   /* overflow -- discard */
688            continue;
689
690        msg[n] = '\0';
691        msg[n+1] = '\0';
692
693        struct uevent uevent;
694        parse_event(msg, &uevent);
695
696        handle_device_event(&uevent);
697        handle_firmware_event(&uevent);
698    }
699}
700
701/* Coldboot walks parts of the /sys tree and pokes the uevent files
702** to cause the kernel to regenerate device add events that happened
703** before init's device manager was started
704**
705** We drain any pending events from the netlink socket every time
706** we poke another uevent file to make sure we don't overrun the
707** socket's buffer.
708*/
709
710static void do_coldboot(DIR *d)
711{
712    struct dirent *de;
713    int dfd, fd;
714
715    dfd = dirfd(d);
716
717    fd = openat(dfd, "uevent", O_WRONLY);
718    if(fd >= 0) {
719        write(fd, "add\n", 4);
720        close(fd);
721        handle_device_fd();
722    }
723
724    while((de = readdir(d))) {
725        DIR *d2;
726
727        if(de->d_type != DT_DIR || de->d_name[0] == '.')
728            continue;
729
730        fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
731        if(fd < 0)
732            continue;
733
734        d2 = fdopendir(fd);
735        if(d2 == 0)
736            close(fd);
737        else {
738            do_coldboot(d2);
739            closedir(d2);
740        }
741    }
742}
743
744static void coldboot(const char *path)
745{
746    DIR *d = opendir(path);
747    if(d) {
748        do_coldboot(d);
749        closedir(d);
750    }
751}
752
753void device_init(void)
754{
755    suseconds_t t0, t1;
756    struct stat info;
757    int fd;
758
759    device_fd = open_uevent_socket();
760    if(device_fd < 0)
761        return;
762
763    fcntl(device_fd, F_SETFD, FD_CLOEXEC);
764    fcntl(device_fd, F_SETFL, O_NONBLOCK);
765
766    if (stat(coldboot_done, &info) < 0) {
767        t0 = get_usecs();
768        coldboot("/sys/class");
769        coldboot("/sys/block");
770        coldboot("/sys/devices");
771        t1 = get_usecs();
772        fd = open(coldboot_done, O_WRONLY|O_CREAT, 0000);
773        close(fd);
774        log_event_print("coldboot %ld uS\n", ((long) (t1 - t0)));
775    } else {
776        log_event_print("skipping coldboot, already done\n");
777    }
778}
779
780int get_device_fd()
781{
782    return device_fd;
783}
784