The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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> |
Olivier Bailly | b93e581 | 2010-11-17 11:47:23 -0800 | [diff] [blame] | 18 | #include <stddef.h> |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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> |
Colin Cross | 982a815 | 2010-06-03 12:21:01 -0700 | [diff] [blame] | 35 | #include <sys/wait.h> |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 36 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | #include "devices.h" |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 38 | #include "util.h" |
Colin Cross | ed8a7d8 | 2010-04-19 17:05:34 -0700 | [diff] [blame] | 39 | #include "log.h" |
| 40 | #include "list.h" |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 41 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 42 | #define SYSFS_PREFIX "/sys" |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 43 | #define FIRMWARE_DIR1 "/etc/firmware" |
| 44 | #define FIRMWARE_DIR2 "/vendor/firmware" |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 45 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 46 | static int device_fd = -1; |
| 47 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 48 | struct uevent { |
| 49 | const char *action; |
| 50 | const char *path; |
| 51 | const char *subsystem; |
| 52 | const char *firmware; |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 53 | const char *partition_name; |
| 54 | int partition_num; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 55 | int major; |
| 56 | int minor; |
| 57 | }; |
| 58 | |
| 59 | static int open_uevent_socket(void) |
| 60 | { |
| 61 | struct sockaddr_nl addr; |
| 62 | int sz = 64*1024; // XXX larger? udev uses 16MB! |
Nick Kralevich | 5f5d5c8 | 2010-07-19 14:31:20 -0700 | [diff] [blame] | 63 | int on = 1; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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)); |
Nick Kralevich | 5f5d5c8 | 2010-07-19 14:31:20 -0700 | [diff] [blame] | 76 | setsockopt(s, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 77 | |
| 78 | if(bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) { |
| 79 | close(s); |
| 80 | return -1; |
| 81 | } |
| 82 | |
| 83 | return s; |
| 84 | } |
| 85 | |
| 86 | struct perms_ { |
| 87 | char *name; |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 88 | char *attr; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 89 | mode_t perm; |
| 90 | unsigned int uid; |
| 91 | unsigned int gid; |
| 92 | unsigned short prefix; |
| 93 | }; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 94 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 95 | struct perm_node { |
| 96 | struct perms_ dp; |
| 97 | struct listnode plist; |
| 98 | }; |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 99 | |
| 100 | static list_declare(sys_perms); |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 101 | static list_declare(dev_perms); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 102 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 103 | int 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)); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 107 | if (!node) |
| 108 | return -ENOMEM; |
| 109 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 110 | node->dp.name = strdup(name); |
| 111 | if (!node->dp.name) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 112 | return -ENOMEM; |
| 113 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 114 | if (attr) { |
| 115 | node->dp.attr = strdup(attr); |
| 116 | if (!node->dp.attr) |
| 117 | return -ENOMEM; |
| 118 | } |
| 119 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 120 | node->dp.perm = perm; |
| 121 | node->dp.uid = uid; |
| 122 | node->dp.gid = gid; |
| 123 | node->dp.prefix = prefix; |
| 124 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 125 | if (attr) |
| 126 | list_add_tail(&sys_perms, &node->plist); |
| 127 | else |
| 128 | list_add_tail(&dev_perms, &node->plist); |
| 129 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 130 | return 0; |
| 131 | } |
| 132 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 133 | void fixup_sys_perms(const char *upath) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 134 | { |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 135 | char buf[512]; |
| 136 | struct listnode *node; |
| 137 | struct perms_ *dp; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 138 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 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))) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 146 | continue; |
| 147 | } else { |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 148 | if (strcmp(upath, dp->name + 4)) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 149 | continue; |
| 150 | } |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 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); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 159 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 160 | } |
| 161 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 162 | static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid) |
| 163 | { |
| 164 | mode_t perm; |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 165 | struct listnode *node; |
| 166 | struct perm_node *perm_node; |
| 167 | struct perms_ *dp; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 168 | |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 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; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 175 | |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 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; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 182 | } |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 183 | *uid = dp->uid; |
| 184 | *gid = dp->gid; |
| 185 | return dp->perm; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 186 | } |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 187 | /* Default if nothing found. */ |
| 188 | *uid = 0; |
| 189 | *gid = 0; |
| 190 | return 0600; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 193 | static void make_device(const char *path, |
| 194 | const char *upath, |
| 195 | int block, int major, int minor) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 196 | { |
| 197 | unsigned uid; |
| 198 | unsigned gid; |
| 199 | mode_t mode; |
| 200 | dev_t dev; |
| 201 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 202 | mode = get_device_perm(path, &uid, &gid) | (block ? S_IFBLK : S_IFCHR); |
Colin Cross | 17dcc5c | 2010-09-03 12:25:34 -0700 | [diff] [blame] | 203 | dev = makedev(major, minor); |
Nick Pelly | 6405c69 | 2010-01-21 18:13:39 -0800 | [diff] [blame] | 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); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 210 | mknod(path, mode, dev); |
Nick Pelly | 6405c69 | 2010-01-21 18:13:39 -0800 | [diff] [blame] | 211 | chown(path, uid, -1); |
| 212 | setegid(AID_ROOT); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Chuck Tuffli | 1e07084 | 2008-12-15 14:26:56 -0800 | [diff] [blame] | 215 | #if LOG_UEVENTS |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 216 | |
| 217 | static 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 | |
| 233 | static 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; |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 241 | uevent->partition_name = NULL; |
| 242 | uevent->partition_num = -1; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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); |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 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; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 | |
Benoit Goby | d227863 | 2010-08-03 14:36:02 -0700 | [diff] [blame] | 282 | static 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; |
| 328 | err: |
| 329 | free(links); |
| 330 | return NULL; |
| 331 | } |
| 332 | |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 333 | static 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 | |
| 391 | err: |
| 392 | free(links); |
| 393 | return NULL; |
| 394 | } |
| 395 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 396 | static void handle_device_event(struct uevent *uevent) |
| 397 | { |
| 398 | char devpath[96]; |
Mike Lockwood | 93ac155 | 2010-05-06 13:30:09 -0400 | [diff] [blame] | 399 | int devpath_ready = 0; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 400 | char *base, *name; |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 401 | char **links = NULL; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 402 | int block; |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 403 | int i; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 404 | |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 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 */ |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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? */ |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 423 | if(!strncmp(uevent->subsystem, "block", 5)) { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 424 | block = 1; |
| 425 | base = "/dev/block/"; |
| 426 | mkdir(base, 0755); |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 427 | if (!strncmp(uevent->path, "/devices/platform/", 18)) |
| 428 | links = parse_platform_block_device(uevent); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 429 | } else { |
| 430 | block = 0; |
| 431 | /* this should probably be configurable somehow */ |
Mike Lockwood | 93ac155 | 2010-05-06 13:30:09 -0400 | [diff] [blame] | 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)) { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 452 | base = "/dev/graphics/"; |
| 453 | mkdir(base, 0755); |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 454 | } else if (!strncmp(uevent->subsystem, "oncrpc", 6)) { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 455 | base = "/dev/oncrpc/"; |
| 456 | mkdir(base, 0755); |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 457 | } else if (!strncmp(uevent->subsystem, "adsp", 4)) { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 458 | base = "/dev/adsp/"; |
| 459 | mkdir(base, 0755); |
Iliyan Malchev | fc0182e | 2009-05-01 10:25:05 -0700 | [diff] [blame] | 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)) { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 464 | base = "/dev/input/"; |
| 465 | mkdir(base, 0755); |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 466 | } else if(!strncmp(uevent->subsystem, "mtd", 3)) { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 467 | base = "/dev/mtd/"; |
| 468 | mkdir(base, 0755); |
Xiaopeng Yang | 5bb44c8 | 2008-11-25 16:20:07 -0800 | [diff] [blame] | 469 | } else if(!strncmp(uevent->subsystem, "sound", 5)) { |
| 470 | base = "/dev/snd/"; |
| 471 | mkdir(base, 0755); |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 472 | } else if(!strncmp(uevent->subsystem, "misc", 4) && |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 473 | !strncmp(name, "log_", 4)) { |
| 474 | base = "/dev/log/"; |
| 475 | mkdir(base, 0755); |
| 476 | name += 4; |
| 477 | } else |
| 478 | base = "/dev/"; |
Benoit Goby | d227863 | 2010-08-03 14:36:02 -0700 | [diff] [blame] | 479 | links = get_character_device_symlinks(uevent); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 480 | } |
| 481 | |
Mike Lockwood | 93ac155 | 2010-05-06 13:30:09 -0400 | [diff] [blame] | 482 | if (!devpath_ready) |
| 483 | snprintf(devpath, sizeof(devpath), "%s%s", base, name); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 484 | |
| 485 | if(!strcmp(uevent->action, "add")) { |
Brian Swetland | bc57d4c | 2010-10-26 15:09:43 -0700 | [diff] [blame] | 486 | make_device(devpath, uevent->path, block, uevent->major, uevent->minor); |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 487 | if (links) { |
| 488 | for (i = 0; links[i]; i++) |
| 489 | make_link(devpath, links[i]); |
| 490 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | if(!strcmp(uevent->action, "remove")) { |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 494 | if (links) { |
| 495 | for (i = 0; links[i]; i++) |
| 496 | remove_link(devpath, links[i]); |
| 497 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 498 | unlink(devpath); |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | if (links) { |
| 502 | for (i = 0; links[i]; i++) |
| 503 | free(links[i]); |
| 504 | free(links); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 505 | } |
| 506 | } |
| 507 | |
| 508 | static 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 | |
| 545 | out: |
| 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 | |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 554 | static int is_booting(void) |
| 555 | { |
| 556 | return access("/dev/.booting", F_OK) == 0; |
| 557 | } |
| 558 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 559 | static void process_firmware_event(struct uevent *uevent) |
| 560 | { |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 561 | char *root, *loading, *data, *file1 = NULL, *file2 = NULL; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 562 | int l, loading_fd, data_fd, fw_fd; |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 563 | int booting = is_booting(); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 564 | |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 565 | INFO("firmware: loading '%s' for '%s'\n", |
| 566 | uevent->firmware, uevent->path); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 | |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 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); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 | |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 596 | try_loading_again: |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 597 | fw_fd = open(file1, O_RDONLY); |
| 598 | if(fw_fd < 0) { |
| 599 | fw_fd = open(file2, O_RDONLY); |
Benoit Goby | 609d882 | 2010-11-09 18:10:24 -0800 | [diff] [blame] | 600 | if (fw_fd < 0) { |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 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); |
Benoit Goby | 609d882 | 2010-11-09 18:10:24 -0800 | [diff] [blame] | 610 | write(loading_fd, "-1", 2); |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 611 | goto data_close_out; |
Benoit Goby | 609d882 | 2010-11-09 18:10:24 -0800 | [diff] [blame] | 612 | } |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 613 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 614 | |
| 615 | if(!load_firmware(fw_fd, loading_fd, data_fd)) |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 616 | INFO("firmware: copy success { '%s', '%s' }\n", root, uevent->firmware); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 617 | else |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 618 | INFO("firmware: copy failure { '%s', '%s' }\n", root, uevent->firmware); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 619 | |
| 620 | close(fw_fd); |
| 621 | data_close_out: |
| 622 | close(data_fd); |
| 623 | loading_close_out: |
| 624 | close(loading_fd); |
| 625 | file_free_out: |
Brian Swetland | 02863b9 | 2010-09-19 03:36:39 -0700 | [diff] [blame] | 626 | free(file1); |
| 627 | free(file2); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 628 | data_free_out: |
| 629 | free(data); |
| 630 | loading_free_out: |
| 631 | free(loading); |
| 632 | root_free_out: |
| 633 | free(root); |
| 634 | } |
| 635 | |
| 636 | static void handle_firmware_event(struct uevent *uevent) |
| 637 | { |
| 638 | pid_t pid; |
Colin Cross | 982a815 | 2010-06-03 12:21:01 -0700 | [diff] [blame] | 639 | int ret; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 656 | void handle_device_fd() |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 657 | { |
Nick Kralevich | 5f5d5c8 | 2010-07-19 14:31:20 -0700 | [diff] [blame] | 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}; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 664 | |
Nick Kralevich | fad7204 | 2010-07-19 15:53:05 -0700 | [diff] [blame] | 665 | ssize_t n = recvmsg(device_fd, &hdr, 0); |
Nick Kralevich | 5f5d5c8 | 2010-07-19 14:31:20 -0700 | [diff] [blame] | 666 | if (n <= 0) { |
| 667 | break; |
| 668 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 669 | |
Nick Kralevich | 5f5d5c8 | 2010-07-19 14:31:20 -0700 | [diff] [blame] | 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 */ |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 688 | continue; |
| 689 | |
| 690 | msg[n] = '\0'; |
| 691 | msg[n+1] = '\0'; |
| 692 | |
Nick Kralevich | 5f5d5c8 | 2010-07-19 14:31:20 -0700 | [diff] [blame] | 693 | struct uevent uevent; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 710 | static void do_coldboot(DIR *d) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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); |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 721 | handle_device_fd(); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 { |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 738 | do_coldboot(d2); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 739 | closedir(d2); |
| 740 | } |
| 741 | } |
| 742 | } |
| 743 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 744 | static void coldboot(const char *path) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 745 | { |
| 746 | DIR *d = opendir(path); |
| 747 | if(d) { |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 748 | do_coldboot(d); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 749 | closedir(d); |
| 750 | } |
| 751 | } |
| 752 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 753 | void device_init(void) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 754 | { |
| 755 | suseconds_t t0, t1; |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 756 | struct stat info; |
| 757 | int fd; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 758 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 759 | device_fd = open_uevent_socket(); |
| 760 | if(device_fd < 0) |
| 761 | return; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 762 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 763 | fcntl(device_fd, F_SETFD, FD_CLOEXEC); |
| 764 | fcntl(device_fd, F_SETFL, O_NONBLOCK); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 765 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 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 | } |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 778 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 779 | |
Colin Cross | 0dd7ca6 | 2010-04-13 19:25:51 -0700 | [diff] [blame] | 780 | int get_device_fd() |
| 781 | { |
| 782 | return device_fd; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 783 | } |