blob: 662196dc1ce3ef4af0c02563c13bfb06d406531a [file] [log] [blame]
Colin Crossf83d0b92010-04-21 12:04:20 -07001/*
2 * Copyright (C) 2010 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 <poll.h>
Colin Cross44b65d02010-04-20 14:32:50 -070018#include <fcntl.h>
19#include <string.h>
20#include <stdlib.h>
21#include <stdio.h>
22#include <ctype.h>
Brian Swetland8d48c8e2011-03-24 15:45:30 -070023#include <signal.h>
24
Colin Cross44b65d02010-04-20 14:32:50 -070025#include <private/android_filesystem_config.h>
Colin Crossf83d0b92010-04-21 12:04:20 -070026
27#include "ueventd.h"
28#include "log.h"
29#include "util.h"
30#include "devices.h"
Colin Cross44b65d02010-04-20 14:32:50 -070031#include "ueventd_parser.h"
32
33static char hardware[32];
34static unsigned revision = 0;
Colin Crossf83d0b92010-04-21 12:04:20 -070035
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -070036static void import_kernel_nv(char *name, int in_qemu)
37{
38 if (*name != '\0') {
39 char *value = strchr(name, '=');
40 if (value != NULL) {
41 *value++ = 0;
42 if (!strcmp(name,"androidboot.hardware"))
43 {
44 strlcpy(hardware, value, sizeof(hardware));
45 }
46 }
47 }
48}
49
Colin Crossf83d0b92010-04-21 12:04:20 -070050int ueventd_main(int argc, char **argv)
51{
52 struct pollfd ufd;
53 int nr;
Colin Cross44b65d02010-04-20 14:32:50 -070054 char tmp[32];
Colin Crossf83d0b92010-04-21 12:04:20 -070055
Nick Kralevich6ebf12f2012-03-26 09:09:11 -070056 /*
57 * init sets the umask to 077 for forked processes. We need to
58 * create files with exact permissions, without modification by
59 * the umask.
60 */
61 umask(000);
62
63 /* Prevent fire-and-forget children from becoming zombies.
64 * If we should need to wait() for some children in the future
65 * (as opposed to none right now), double-forking here instead
66 * of ignoring SIGCHLD may be the better solution.
67 */
Brian Swetland8d48c8e2011-03-24 15:45:30 -070068 signal(SIGCHLD, SIG_IGN);
69
Colin Crossf83d0b92010-04-21 12:04:20 -070070 open_devnull_stdio();
Dima Zavin8f912822011-08-31 18:26:17 -070071 klog_init();
Alex Ray18ccc1b2014-03-06 15:07:42 -080072#if LOG_UEVENTS
73 /* Ensure we're at a logging level that will show the events */
Alex Rayeb6ffc72014-03-19 15:08:22 -070074 if (klog_get_level() < KLOG_INFO_LEVEL) {
75 klog_set_level(KLOG_INFO_LEVEL);
Alex Ray18ccc1b2014-03-06 15:07:42 -080076 }
77#endif
Colin Crossf83d0b92010-04-21 12:04:20 -070078
79 INFO("starting ueventd\n");
80
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -070081 /* Respect hardware passed in through the kernel cmd line. Here we will look
82 * for androidboot.hardware param in kernel cmdline, and save its value in
83 * hardware[]. */
84 import_kernel_cmdline(0, import_kernel_nv);
85
Colin Cross44b65d02010-04-20 14:32:50 -070086 get_hardware_name(hardware, &revision);
87
88 ueventd_parse_config_file("/ueventd.rc");
89
90 snprintf(tmp, sizeof(tmp), "/ueventd.%s.rc", hardware);
91 ueventd_parse_config_file(tmp);
92
Colin Crossf83d0b92010-04-21 12:04:20 -070093 device_init();
94
95 ufd.events = POLLIN;
96 ufd.fd = get_device_fd();
97
98 while(1) {
99 ufd.revents = 0;
100 nr = poll(&ufd, 1, -1);
101 if (nr <= 0)
102 continue;
Amir Goldstein1d4e86c2013-11-10 15:36:58 +0200103 if (ufd.revents & POLLIN)
Colin Crossf83d0b92010-04-21 12:04:20 -0700104 handle_device_fd();
105 }
106}
Colin Cross44b65d02010-04-20 14:32:50 -0700107
108static int get_android_id(const char *id)
109{
110 unsigned int i;
111 for (i = 0; i < ARRAY_SIZE(android_ids); i++)
112 if (!strcmp(id, android_ids[i].name))
113 return android_ids[i].aid;
Veeren Mandalia4f97fd92012-08-02 15:20:49 -0700114 return -1;
Colin Cross44b65d02010-04-20 14:32:50 -0700115}
116
117void set_device_permission(int nargs, char **args)
118{
119 char *name;
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700120 char *attr = 0;
Colin Cross44b65d02010-04-20 14:32:50 -0700121 mode_t perm;
122 uid_t uid;
123 gid_t gid;
124 int prefix = 0;
125 char *endptr;
126 int ret;
127 char *tmp = 0;
128
129 if (nargs == 0)
130 return;
131
132 if (args[0][0] == '#')
133 return;
134
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700135 name = args[0];
136
137 if (!strncmp(name,"/sys/", 5) && (nargs == 5)) {
138 INFO("/sys/ rule %s %s\n",args[0],args[1]);
139 attr = args[1];
140 args++;
141 nargs--;
142 }
143
Colin Cross44b65d02010-04-20 14:32:50 -0700144 if (nargs != 4) {
145 ERROR("invalid line ueventd.rc line for '%s'\n", args[0]);
146 return;
147 }
148
Colin Cross44b65d02010-04-20 14:32:50 -0700149 /* If path starts with mtd@ lookup the mount number. */
150 if (!strncmp(name, "mtd@", 4)) {
151 int n = mtd_name_to_number(name + 4);
152 if (n >= 0)
153 asprintf(&tmp, "/dev/mtd/mtd%d", n);
154 name = tmp;
155 } else {
156 int len = strlen(name);
157 if (name[len - 1] == '*') {
158 prefix = 1;
159 name[len - 1] = '\0';
160 }
161 }
162
163 perm = strtol(args[1], &endptr, 8);
164 if (!endptr || *endptr != '\0') {
165 ERROR("invalid mode '%s'\n", args[1]);
166 free(tmp);
167 return;
168 }
169
170 ret = get_android_id(args[2]);
171 if (ret < 0) {
172 ERROR("invalid uid '%s'\n", args[2]);
173 free(tmp);
174 return;
175 }
176 uid = ret;
177
178 ret = get_android_id(args[3]);
179 if (ret < 0) {
180 ERROR("invalid gid '%s'\n", args[3]);
181 free(tmp);
182 return;
183 }
184 gid = ret;
185
Brian Swetlandbc57d4c2010-10-26 15:09:43 -0700186 add_dev_perms(name, attr, perm, uid, gid, prefix);
Colin Cross44b65d02010-04-20 14:32:50 -0700187 free(tmp);
188}