2010-04-21 21:04:20 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <poll.h>
|
2010-04-20 23:32:50 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
2011-03-24 23:45:30 +01:00
|
|
|
#include <signal.h>
|
2014-06-24 19:45:43 +02:00
|
|
|
#include <selinux/selinux.h>
|
2011-03-24 23:45:30 +01:00
|
|
|
|
2010-04-20 23:32:50 +02:00
|
|
|
#include <private/android_filesystem_config.h>
|
2010-04-21 21:04:20 +02:00
|
|
|
|
|
|
|
#include "ueventd.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "devices.h"
|
2010-04-20 23:32:50 +02:00
|
|
|
#include "ueventd_parser.h"
|
2015-02-28 02:20:29 +01:00
|
|
|
#include "property_service.h"
|
2011-09-28 18:55:31 +02:00
|
|
|
|
2010-04-21 21:04:20 +02:00
|
|
|
int ueventd_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct pollfd ufd;
|
|
|
|
int nr;
|
2015-02-28 02:20:29 +01:00
|
|
|
char hardware[PROP_VALUE_MAX];
|
2010-04-20 23:32:50 +02:00
|
|
|
char tmp[32];
|
2010-04-21 21:04:20 +02:00
|
|
|
|
2012-03-26 18:09:11 +02:00
|
|
|
/*
|
|
|
|
* init sets the umask to 077 for forked processes. We need to
|
|
|
|
* create files with exact permissions, without modification by
|
|
|
|
* the umask.
|
|
|
|
*/
|
|
|
|
umask(000);
|
|
|
|
|
|
|
|
/* Prevent fire-and-forget children from becoming zombies.
|
|
|
|
* If we should need to wait() for some children in the future
|
|
|
|
* (as opposed to none right now), double-forking here instead
|
|
|
|
* of ignoring SIGCHLD may be the better solution.
|
|
|
|
*/
|
2011-03-24 23:45:30 +01:00
|
|
|
signal(SIGCHLD, SIG_IGN);
|
|
|
|
|
2010-04-21 21:04:20 +02:00
|
|
|
open_devnull_stdio();
|
2011-09-01 03:26:17 +02:00
|
|
|
klog_init();
|
2015-02-04 23:46:36 +01:00
|
|
|
if (LOG_UEVENTS) {
|
|
|
|
/* Ensure we're at a logging level that will show the events */
|
|
|
|
if (klog_get_level() < KLOG_INFO_LEVEL) {
|
|
|
|
klog_set_level(KLOG_INFO_LEVEL);
|
|
|
|
}
|
2014-03-07 00:07:42 +01:00
|
|
|
}
|
2010-04-21 21:04:20 +02:00
|
|
|
|
2014-06-24 19:45:43 +02:00
|
|
|
union selinux_callback cb;
|
|
|
|
cb.func_log = log_callback;
|
|
|
|
selinux_set_callback(SELINUX_CB_LOG, cb);
|
|
|
|
|
2010-04-21 21:04:20 +02:00
|
|
|
INFO("starting ueventd\n");
|
|
|
|
|
2015-02-28 02:20:29 +01:00
|
|
|
property_get("ro.hardware", hardware);
|
2010-04-20 23:32:50 +02:00
|
|
|
|
|
|
|
ueventd_parse_config_file("/ueventd.rc");
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), "/ueventd.%s.rc", hardware);
|
|
|
|
ueventd_parse_config_file(tmp);
|
|
|
|
|
2010-04-21 21:04:20 +02:00
|
|
|
device_init();
|
|
|
|
|
|
|
|
ufd.events = POLLIN;
|
|
|
|
ufd.fd = get_device_fd();
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
ufd.revents = 0;
|
|
|
|
nr = poll(&ufd, 1, -1);
|
|
|
|
if (nr <= 0)
|
|
|
|
continue;
|
2013-11-10 14:36:58 +01:00
|
|
|
if (ufd.revents & POLLIN)
|
2010-04-21 21:04:20 +02:00
|
|
|
handle_device_fd();
|
|
|
|
}
|
2015-02-04 19:19:50 +01:00
|
|
|
|
|
|
|
return 0;
|
2010-04-21 21:04:20 +02:00
|
|
|
}
|
2010-04-20 23:32:50 +02:00
|
|
|
|
|
|
|
static int get_android_id(const char *id)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(android_ids); i++)
|
|
|
|
if (!strcmp(id, android_ids[i].name))
|
|
|
|
return android_ids[i].aid;
|
2012-08-03 00:20:49 +02:00
|
|
|
return -1;
|
2010-04-20 23:32:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_device_permission(int nargs, char **args)
|
|
|
|
{
|
|
|
|
char *name;
|
2010-10-27 00:09:43 +02:00
|
|
|
char *attr = 0;
|
2010-04-20 23:32:50 +02:00
|
|
|
mode_t perm;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
int prefix = 0;
|
2012-07-02 20:32:30 +02:00
|
|
|
int wildcard = 0;
|
2010-04-20 23:32:50 +02:00
|
|
|
char *endptr;
|
|
|
|
int ret;
|
|
|
|
char *tmp = 0;
|
|
|
|
|
|
|
|
if (nargs == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (args[0][0] == '#')
|
|
|
|
return;
|
|
|
|
|
2010-10-27 00:09:43 +02:00
|
|
|
name = args[0];
|
|
|
|
|
|
|
|
if (!strncmp(name,"/sys/", 5) && (nargs == 5)) {
|
|
|
|
INFO("/sys/ rule %s %s\n",args[0],args[1]);
|
|
|
|
attr = args[1];
|
|
|
|
args++;
|
|
|
|
nargs--;
|
|
|
|
}
|
|
|
|
|
2010-04-20 23:32:50 +02:00
|
|
|
if (nargs != 4) {
|
|
|
|
ERROR("invalid line ueventd.rc line for '%s'\n", args[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If path starts with mtd@ lookup the mount number. */
|
|
|
|
if (!strncmp(name, "mtd@", 4)) {
|
|
|
|
int n = mtd_name_to_number(name + 4);
|
|
|
|
if (n >= 0)
|
|
|
|
asprintf(&tmp, "/dev/mtd/mtd%d", n);
|
|
|
|
name = tmp;
|
|
|
|
} else {
|
|
|
|
int len = strlen(name);
|
2012-07-02 20:32:30 +02:00
|
|
|
char *wildcard_chr = strchr(name, '*');
|
|
|
|
if ((name[len - 1] == '*') &&
|
|
|
|
(wildcard_chr == (name + len - 1))) {
|
2010-04-20 23:32:50 +02:00
|
|
|
prefix = 1;
|
|
|
|
name[len - 1] = '\0';
|
2012-07-02 20:32:30 +02:00
|
|
|
} else if (wildcard_chr) {
|
|
|
|
wildcard = 1;
|
2010-04-20 23:32:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
perm = strtol(args[1], &endptr, 8);
|
|
|
|
if (!endptr || *endptr != '\0') {
|
|
|
|
ERROR("invalid mode '%s'\n", args[1]);
|
|
|
|
free(tmp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = get_android_id(args[2]);
|
|
|
|
if (ret < 0) {
|
|
|
|
ERROR("invalid uid '%s'\n", args[2]);
|
|
|
|
free(tmp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uid = ret;
|
|
|
|
|
|
|
|
ret = get_android_id(args[3]);
|
|
|
|
if (ret < 0) {
|
|
|
|
ERROR("invalid gid '%s'\n", args[3]);
|
|
|
|
free(tmp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
gid = ret;
|
|
|
|
|
2012-07-02 20:32:30 +02:00
|
|
|
add_dev_perms(name, attr, perm, uid, gid, prefix, wildcard);
|
2010-04-20 23:32:50 +02:00
|
|
|
free(tmp);
|
|
|
|
}
|