The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 <stdarg.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <stdio.h> |
| 20 | #include <string.h> |
| 21 | #include <fcntl.h> |
| 22 | #include <ctype.h> |
| 23 | #include <errno.h> |
Colin Cross | 504bc51 | 2010-04-13 19:35:09 -0700 | [diff] [blame] | 24 | #include <time.h> |
Nick Kralevich | ae76f6d | 2013-07-11 15:38:26 -0700 | [diff] [blame] | 25 | #include <ftw.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 26 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 27 | #include <selinux/label.h> |
Stephen Smalley | dbd37f2 | 2014-01-28 10:34:09 -0500 | [diff] [blame] | 28 | #include <selinux/android.h> |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 29 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 30 | #include <sys/stat.h> |
| 31 | #include <sys/types.h> |
| 32 | #include <sys/socket.h> |
| 33 | #include <sys/un.h> |
| 34 | |
Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 35 | #include <android-base/file.h> |
| 36 | #include <android-base/strings.h> |
Dan Albert | c007bc3 | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 37 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 38 | /* for ANDROID_SOCKET_* */ |
| 39 | #include <cutils/sockets.h> |
Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 40 | #include <android-base/stringprintf.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 41 | |
| 42 | #include <private/android_filesystem_config.h> |
| 43 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 44 | #include "init.h" |
Colin Cross | ed8a7d8 | 2010-04-19 17:05:34 -0700 | [diff] [blame] | 45 | #include "log.h" |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 46 | #include "property_service.h" |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 47 | #include "util.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 49 | /* |
| 50 | * android_name_to_id - returns the integer uid/gid associated with the given |
Nick Kralevich | d2104df | 2015-06-18 17:46:54 -0700 | [diff] [blame] | 51 | * name, or UINT_MAX on error. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 52 | */ |
| 53 | static unsigned int android_name_to_id(const char *name) |
| 54 | { |
Edwin Vane | de7f1ad | 2012-07-26 14:09:13 -0400 | [diff] [blame] | 55 | const struct android_id_info *info = android_ids; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 56 | unsigned int n; |
| 57 | |
| 58 | for (n = 0; n < android_id_count; n++) { |
| 59 | if (!strcmp(info[n].name, name)) |
| 60 | return info[n].aid; |
| 61 | } |
| 62 | |
Nick Kralevich | d2104df | 2015-06-18 17:46:54 -0700 | [diff] [blame] | 63 | return UINT_MAX; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 | } |
| 65 | |
Nick Kralevich | d2104df | 2015-06-18 17:46:54 -0700 | [diff] [blame] | 66 | static unsigned int do_decode_uid(const char *s) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 67 | { |
| 68 | unsigned int v; |
| 69 | |
| 70 | if (!s || *s == '\0') |
Nick Kralevich | d2104df | 2015-06-18 17:46:54 -0700 | [diff] [blame] | 71 | return UINT_MAX; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 72 | if (isalpha(s[0])) |
| 73 | return android_name_to_id(s); |
| 74 | |
| 75 | errno = 0; |
| 76 | v = (unsigned int) strtoul(s, 0, 0); |
| 77 | if (errno) |
Nick Kralevich | d2104df | 2015-06-18 17:46:54 -0700 | [diff] [blame] | 78 | return UINT_MAX; |
| 79 | return v; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * decode_uid - decodes and returns the given string, which can be either the |
| 84 | * numeric or name representation, into the integer uid or gid. Returns |
| 85 | * UINT_MAX on error. |
| 86 | */ |
| 87 | unsigned int decode_uid(const char *s) { |
| 88 | unsigned int v = do_decode_uid(s); |
| 89 | if (v == UINT_MAX) { |
| 90 | ERROR("decode_uid: Unable to find UID for '%s'. Returning UINT_MAX\n", s); |
| 91 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 92 | return v; |
| 93 | } |
| 94 | |
| 95 | /* |
| 96 | * create_socket - creates a Unix domain socket in ANDROID_SOCKET_DIR |
| 97 | * ("/dev/socket") as dictated in init.rc. This socket is inherited by the |
| 98 | * daemon. We communicate the file descriptor's value via the environment |
| 99 | * variable ANDROID_SOCKET_ENV_PREFIX<name> ("ANDROID_SOCKET_foo"). |
| 100 | */ |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 101 | int create_socket(const char *name, int type, mode_t perm, uid_t uid, |
| 102 | gid_t gid, const char *socketcon) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 103 | { |
| 104 | struct sockaddr_un addr; |
Nick Kralevich | 9bcfd64 | 2016-02-24 15:50:52 -0800 | [diff] [blame] | 105 | int fd, ret, savederrno; |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 106 | char *filecon; |
| 107 | |
Nick Kralevich | 83ccb1c | 2015-11-23 16:26:42 -0800 | [diff] [blame] | 108 | if (socketcon) { |
| 109 | if (setsockcreatecon(socketcon) == -1) { |
| 110 | ERROR("setsockcreatecon(\"%s\") failed: %s\n", socketcon, strerror(errno)); |
| 111 | return -1; |
| 112 | } |
| 113 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 114 | |
| 115 | fd = socket(PF_UNIX, type, 0); |
| 116 | if (fd < 0) { |
| 117 | ERROR("Failed to open socket '%s': %s\n", name, strerror(errno)); |
| 118 | return -1; |
| 119 | } |
| 120 | |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 121 | if (socketcon) |
| 122 | setsockcreatecon(NULL); |
| 123 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 124 | memset(&addr, 0 , sizeof(addr)); |
| 125 | addr.sun_family = AF_UNIX; |
| 126 | snprintf(addr.sun_path, sizeof(addr.sun_path), ANDROID_SOCKET_DIR"/%s", |
| 127 | name); |
| 128 | |
| 129 | ret = unlink(addr.sun_path); |
| 130 | if (ret != 0 && errno != ENOENT) { |
| 131 | ERROR("Failed to unlink old socket '%s': %s\n", name, strerror(errno)); |
| 132 | goto out_close; |
| 133 | } |
| 134 | |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 135 | filecon = NULL; |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 136 | if (sehandle) { |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 137 | ret = selabel_lookup(sehandle, &filecon, addr.sun_path, S_IFSOCK); |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 138 | if (ret == 0) |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 139 | setfscreatecon(filecon); |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 140 | } |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 141 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 142 | ret = bind(fd, (struct sockaddr *) &addr, sizeof (addr)); |
Nick Kralevich | 9bcfd64 | 2016-02-24 15:50:52 -0800 | [diff] [blame] | 143 | savederrno = errno; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 144 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 145 | setfscreatecon(NULL); |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 146 | freecon(filecon); |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 147 | |
Nick Kralevich | 9bcfd64 | 2016-02-24 15:50:52 -0800 | [diff] [blame] | 148 | if (ret) { |
| 149 | ERROR("Failed to bind socket '%s': %s\n", name, strerror(savederrno)); |
| 150 | goto out_unlink; |
| 151 | } |
| 152 | |
| 153 | ret = lchown(addr.sun_path, uid, gid); |
| 154 | if (ret) { |
| 155 | ERROR("Failed to lchown socket '%s': %s\n", addr.sun_path, strerror(errno)); |
| 156 | goto out_unlink; |
| 157 | } |
| 158 | ret = fchmodat(AT_FDCWD, addr.sun_path, perm, AT_SYMLINK_NOFOLLOW); |
| 159 | if (ret) { |
| 160 | ERROR("Failed to fchmodat socket '%s': %s\n", addr.sun_path, strerror(errno)); |
| 161 | goto out_unlink; |
| 162 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 163 | |
| 164 | INFO("Created socket '%s' with mode '%o', user '%d', group '%d'\n", |
| 165 | addr.sun_path, perm, uid, gid); |
| 166 | |
| 167 | return fd; |
| 168 | |
| 169 | out_unlink: |
| 170 | unlink(addr.sun_path); |
| 171 | out_close: |
| 172 | close(fd); |
| 173 | return -1; |
| 174 | } |
| 175 | |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 176 | bool read_file(const char* path, std::string* content) { |
| 177 | content->clear(); |
| 178 | |
| 179 | int fd = TEMP_FAILURE_RETRY(open(path, O_RDONLY|O_NOFOLLOW|O_CLOEXEC)); |
| 180 | if (fd == -1) { |
| 181 | return false; |
| 182 | } |
| 183 | |
| 184 | // For security reasons, disallow world-writable |
| 185 | // or group-writable files. |
Nick Kralevich | 38f368c | 2012-01-18 10:39:01 -0800 | [diff] [blame] | 186 | struct stat sb; |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 187 | if (fstat(fd, &sb) == -1) { |
| 188 | ERROR("fstat failed for '%s': %s\n", path, strerror(errno)); |
| 189 | return false; |
Nick Kralevich | 38f368c | 2012-01-18 10:39:01 -0800 | [diff] [blame] | 190 | } |
| 191 | if ((sb.st_mode & (S_IWGRP | S_IWOTH)) != 0) { |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 192 | ERROR("skipping insecure file '%s'\n", path); |
| 193 | return false; |
Nick Kralevich | 38f368c | 2012-01-18 10:39:01 -0800 | [diff] [blame] | 194 | } |
| 195 | |
Dan Albert | c007bc3 | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 196 | bool okay = android::base::ReadFdToString(fd, content); |
Elliott Hughes | 9fc8343 | 2015-05-15 19:16:40 -0700 | [diff] [blame] | 197 | close(fd); |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 198 | return okay; |
| 199 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 200 | |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 201 | int write_file(const char* path, const char* content) { |
| 202 | int fd = TEMP_FAILURE_RETRY(open(path, O_WRONLY|O_CREAT|O_NOFOLLOW|O_CLOEXEC, 0600)); |
| 203 | if (fd == -1) { |
Nick Kralevich | eedbe81 | 2015-04-25 14:10:03 -0700 | [diff] [blame] | 204 | NOTICE("write_file: Unable to open '%s': %s\n", path, strerror(errno)); |
| 205 | return -1; |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 206 | } |
Nick Kralevich | eedbe81 | 2015-04-25 14:10:03 -0700 | [diff] [blame] | 207 | int result = android::base::WriteStringToFd(content, fd) ? 0 : -1; |
| 208 | if (result == -1) { |
| 209 | NOTICE("write_file: Unable to write to '%s': %s\n", path, strerror(errno)); |
| 210 | } |
Elliott Hughes | 9fc8343 | 2015-05-15 19:16:40 -0700 | [diff] [blame] | 211 | close(fd); |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 212 | return result; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 213 | } |
| 214 | |
Colin Cross | f24ed8c | 2010-04-12 18:51:06 -0700 | [diff] [blame] | 215 | #define MAX_MTD_PARTITIONS 16 |
| 216 | |
| 217 | static struct { |
| 218 | char name[16]; |
| 219 | int number; |
| 220 | } mtd_part_map[MAX_MTD_PARTITIONS]; |
| 221 | |
| 222 | static int mtd_part_count = -1; |
| 223 | |
| 224 | static void find_mtd_partitions(void) |
| 225 | { |
| 226 | int fd; |
| 227 | char buf[1024]; |
| 228 | char *pmtdbufp; |
| 229 | ssize_t pmtdsize; |
| 230 | int r; |
| 231 | |
Nick Kralevich | 45a884f | 2015-02-02 14:37:22 -0800 | [diff] [blame] | 232 | fd = open("/proc/mtd", O_RDONLY|O_CLOEXEC); |
Colin Cross | f24ed8c | 2010-04-12 18:51:06 -0700 | [diff] [blame] | 233 | if (fd < 0) |
| 234 | return; |
| 235 | |
| 236 | buf[sizeof(buf) - 1] = '\0'; |
| 237 | pmtdsize = read(fd, buf, sizeof(buf) - 1); |
| 238 | pmtdbufp = buf; |
| 239 | while (pmtdsize > 0) { |
| 240 | int mtdnum, mtdsize, mtderasesize; |
| 241 | char mtdname[16]; |
| 242 | mtdname[0] = '\0'; |
| 243 | mtdnum = -1; |
| 244 | r = sscanf(pmtdbufp, "mtd%d: %x %x %15s", |
| 245 | &mtdnum, &mtdsize, &mtderasesize, mtdname); |
| 246 | if ((r == 4) && (mtdname[0] == '"')) { |
| 247 | char *x = strchr(mtdname + 1, '"'); |
| 248 | if (x) { |
| 249 | *x = 0; |
| 250 | } |
| 251 | INFO("mtd partition %d, %s\n", mtdnum, mtdname + 1); |
| 252 | if (mtd_part_count < MAX_MTD_PARTITIONS) { |
| 253 | strcpy(mtd_part_map[mtd_part_count].name, mtdname + 1); |
| 254 | mtd_part_map[mtd_part_count].number = mtdnum; |
| 255 | mtd_part_count++; |
| 256 | } else { |
| 257 | ERROR("too many mtd partitions\n"); |
| 258 | } |
| 259 | } |
| 260 | while (pmtdsize > 0 && *pmtdbufp != '\n') { |
| 261 | pmtdbufp++; |
| 262 | pmtdsize--; |
| 263 | } |
| 264 | if (pmtdsize > 0) { |
| 265 | pmtdbufp++; |
| 266 | pmtdsize--; |
| 267 | } |
| 268 | } |
| 269 | close(fd); |
| 270 | } |
| 271 | |
| 272 | int mtd_name_to_number(const char *name) |
| 273 | { |
| 274 | int n; |
| 275 | if (mtd_part_count < 0) { |
| 276 | mtd_part_count = 0; |
| 277 | find_mtd_partitions(); |
| 278 | } |
| 279 | for (n = 0; n < mtd_part_count; n++) { |
| 280 | if (!strcmp(name, mtd_part_map[n].name)) { |
| 281 | return mtd_part_map[n].number; |
| 282 | } |
| 283 | } |
| 284 | return -1; |
| 285 | } |
Colin Cross | 504bc51 | 2010-04-13 19:35:09 -0700 | [diff] [blame] | 286 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 287 | time_t gettime() { |
| 288 | timespec now; |
| 289 | clock_gettime(CLOCK_MONOTONIC, &now); |
| 290 | return now.tv_sec; |
| 291 | } |
Colin Cross | 504bc51 | 2010-04-13 19:35:09 -0700 | [diff] [blame] | 292 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 293 | uint64_t gettime_ns() { |
| 294 | timespec now; |
| 295 | clock_gettime(CLOCK_MONOTONIC, &now); |
| 296 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000000) + now.tv_nsec; |
Colin Cross | 504bc51 | 2010-04-13 19:35:09 -0700 | [diff] [blame] | 297 | } |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 298 | |
| 299 | int mkdir_recursive(const char *pathname, mode_t mode) |
| 300 | { |
| 301 | char buf[128]; |
| 302 | const char *slash; |
| 303 | const char *p = pathname; |
| 304 | int width; |
| 305 | int ret; |
| 306 | struct stat info; |
| 307 | |
| 308 | while ((slash = strchr(p, '/')) != NULL) { |
| 309 | width = slash - pathname; |
| 310 | p = slash + 1; |
| 311 | if (width < 0) |
| 312 | break; |
| 313 | if (width == 0) |
| 314 | continue; |
| 315 | if ((unsigned int)width > sizeof(buf) - 1) { |
| 316 | ERROR("path too long for mkdir_recursive\n"); |
| 317 | return -1; |
| 318 | } |
| 319 | memcpy(buf, pathname, width); |
| 320 | buf[width] = 0; |
| 321 | if (stat(buf, &info) != 0) { |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 322 | ret = make_dir(buf, mode); |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 323 | if (ret && errno != EEXIST) |
| 324 | return ret; |
| 325 | } |
| 326 | } |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 327 | ret = make_dir(pathname, mode); |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 328 | if (ret && errno != EEXIST) |
| 329 | return ret; |
| 330 | return 0; |
| 331 | } |
| 332 | |
Johan Redestig | 93ca79b | 2012-04-18 16:41:19 +0200 | [diff] [blame] | 333 | /* |
| 334 | * replaces any unacceptable characters with '_', the |
| 335 | * length of the resulting string is equal to the input string |
| 336 | */ |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 337 | void sanitize(char *s) |
| 338 | { |
Johan Redestig | 93ca79b | 2012-04-18 16:41:19 +0200 | [diff] [blame] | 339 | const char* accept = |
| 340 | "abcdefghijklmnopqrstuvwxyz" |
| 341 | "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 342 | "0123456789" |
| 343 | "_-."; |
| 344 | |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 345 | if (!s) |
| 346 | return; |
Johan Redestig | 93ca79b | 2012-04-18 16:41:19 +0200 | [diff] [blame] | 347 | |
Christopher R. Palmer | 07f3fee | 2014-09-22 14:35:54 -0400 | [diff] [blame] | 348 | while (*s) { |
Johan Redestig | 93ca79b | 2012-04-18 16:41:19 +0200 | [diff] [blame] | 349 | s += strspn(s, accept); |
Christopher R. Palmer | 07f3fee | 2014-09-22 14:35:54 -0400 | [diff] [blame] | 350 | if (*s) *s++ = '_'; |
Johan Redestig | 93ca79b | 2012-04-18 16:41:19 +0200 | [diff] [blame] | 351 | } |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 352 | } |
Johan Redestig | 93ca79b | 2012-04-18 16:41:19 +0200 | [diff] [blame] | 353 | |
Chris Fries | 79f3384 | 2013-09-05 13:19:21 -0500 | [diff] [blame] | 354 | void make_link_init(const char *oldpath, const char *newpath) |
Colin Cross | b0ab94b | 2010-04-08 16:16:20 -0700 | [diff] [blame] | 355 | { |
| 356 | int ret; |
| 357 | char buf[256]; |
| 358 | char *slash; |
| 359 | int width; |
| 360 | |
| 361 | slash = strrchr(newpath, '/'); |
| 362 | if (!slash) |
| 363 | return; |
| 364 | width = slash - newpath; |
| 365 | if (width <= 0 || width > (int)sizeof(buf) - 1) |
| 366 | return; |
| 367 | memcpy(buf, newpath, width); |
| 368 | buf[width] = 0; |
| 369 | ret = mkdir_recursive(buf, 0755); |
| 370 | if (ret) |
| 371 | ERROR("Failed to create directory %s: %s (%d)\n", buf, strerror(errno), errno); |
| 372 | |
| 373 | ret = symlink(oldpath, newpath); |
| 374 | if (ret && errno != EEXIST) |
| 375 | ERROR("Failed to symlink %s to %s: %s (%d)\n", oldpath, newpath, strerror(errno), errno); |
| 376 | } |
| 377 | |
| 378 | void remove_link(const char *oldpath, const char *newpath) |
| 379 | { |
| 380 | char path[256]; |
| 381 | ssize_t ret; |
| 382 | ret = readlink(newpath, path, sizeof(path) - 1); |
| 383 | if (ret <= 0) |
| 384 | return; |
| 385 | path[ret] = 0; |
| 386 | if (!strcmp(path, oldpath)) |
| 387 | unlink(newpath); |
| 388 | } |
Colin Cross | cd0f173 | 2010-04-19 17:10:24 -0700 | [diff] [blame] | 389 | |
| 390 | int wait_for_file(const char *filename, int timeout) |
| 391 | { |
| 392 | struct stat info; |
Thierry Strudel | 91cf41c | 2015-05-22 15:56:14 -0700 | [diff] [blame] | 393 | uint64_t timeout_time_ns = gettime_ns() + timeout * UINT64_C(1000000000); |
Colin Cross | cd0f173 | 2010-04-19 17:10:24 -0700 | [diff] [blame] | 394 | int ret = -1; |
| 395 | |
Thierry Strudel | 91cf41c | 2015-05-22 15:56:14 -0700 | [diff] [blame] | 396 | while (gettime_ns() < timeout_time_ns && ((ret = stat(filename, &info)) < 0)) |
Colin Cross | cd0f173 | 2010-04-19 17:10:24 -0700 | [diff] [blame] | 397 | usleep(10000); |
| 398 | |
| 399 | return ret; |
| 400 | } |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 401 | |
| 402 | void open_devnull_stdio(void) |
| 403 | { |
Nick Kralevich | e34577c | 2015-04-25 16:24:53 -0700 | [diff] [blame] | 404 | int fd = open("/sys/fs/selinux/null", O_RDWR); |
| 405 | if (fd == -1) { |
Nick Kralevich | 3d9e273 | 2016-03-03 10:40:12 -0800 | [diff] [blame] | 406 | /* Fail silently. |
| 407 | * stdout/stderr isn't available, and because |
| 408 | * klog_init() is called after open_devnull_stdio(), we can't |
| 409 | * log to dmesg. Reordering klog_init() to be called before |
| 410 | * open_devnull_stdio() isn't an option either, as then klog_fd |
| 411 | * will be assigned 0 or 1, which will end up getting clobbered |
| 412 | * by the code below. There's nowhere good to log. |
| 413 | */ |
| 414 | |
| 415 | exit(1); |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Nick Kralevich | e34577c | 2015-04-25 16:24:53 -0700 | [diff] [blame] | 418 | dup2(fd, 0); |
| 419 | dup2(fd, 1); |
| 420 | dup2(fd, 2); |
| 421 | if (fd > 2) { |
| 422 | close(fd); |
| 423 | } |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Elliott Hughes | e5ce30f | 2015-05-06 19:19:24 -0700 | [diff] [blame] | 426 | void import_kernel_cmdline(bool in_qemu, |
| 427 | std::function<void(const std::string&, const std::string&, bool)> fn) { |
| 428 | std::string cmdline; |
| 429 | android::base::ReadFileToString("/proc/cmdline", &cmdline); |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 430 | |
Elliott Hughes | e5ce30f | 2015-05-06 19:19:24 -0700 | [diff] [blame] | 431 | for (const auto& entry : android::base::Split(android::base::Trim(cmdline), " ")) { |
| 432 | std::vector<std::string> pieces = android::base::Split(entry, "="); |
| 433 | if (pieces.size() == 2) { |
| 434 | fn(pieces[0], pieces[1], in_qemu); |
| 435 | } |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 436 | } |
| 437 | } |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 438 | |
| 439 | int make_dir(const char *path, mode_t mode) |
| 440 | { |
| 441 | int rc; |
| 442 | |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 443 | char *secontext = NULL; |
| 444 | |
| 445 | if (sehandle) { |
| 446 | selabel_lookup(sehandle, &secontext, path, mode); |
| 447 | setfscreatecon(secontext); |
| 448 | } |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 449 | |
| 450 | rc = mkdir(path, mode); |
| 451 | |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 452 | if (secontext) { |
| 453 | int save_errno = errno; |
| 454 | freecon(secontext); |
| 455 | setfscreatecon(NULL); |
| 456 | errno = save_errno; |
| 457 | } |
Kenny Root | b5982bf | 2012-10-16 23:07:05 -0700 | [diff] [blame] | 458 | |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 459 | return rc; |
| 460 | } |
| 461 | |
Stephen Smalley | dbd37f2 | 2014-01-28 10:34:09 -0500 | [diff] [blame] | 462 | int restorecon(const char* pathname) |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame] | 463 | { |
Stephen Smalley | 27a9365 | 2014-02-07 09:14:13 -0500 | [diff] [blame] | 464 | return selinux_android_restorecon(pathname, 0); |
Nick Kralevich | ae76f6d | 2013-07-11 15:38:26 -0700 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | int restorecon_recursive(const char* pathname) |
| 468 | { |
Stephen Smalley | 27a9365 | 2014-02-07 09:14:13 -0500 | [diff] [blame] | 469 | return selinux_android_restorecon(pathname, SELINUX_ANDROID_RESTORECON_RECURSE); |
Nick Kralevich | ae76f6d | 2013-07-11 15:38:26 -0700 | [diff] [blame] | 470 | } |
Andres Morales | db5f5d4 | 2015-05-08 08:30:33 -0700 | [diff] [blame] | 471 | |
| 472 | /* |
| 473 | * Writes hex_len hex characters (1/2 byte) to hex from bytes. |
| 474 | */ |
| 475 | std::string bytes_to_hex(const uint8_t* bytes, size_t bytes_len) { |
| 476 | std::string hex("0x"); |
| 477 | for (size_t i = 0; i < bytes_len; i++) |
| 478 | android::base::StringAppendF(&hex, "%02x", bytes[i]); |
| 479 | return hex; |
| 480 | } |
Lee Campbell | f13b1b3 | 2015-07-24 16:57:14 -0700 | [diff] [blame] | 481 | |
| 482 | /* |
| 483 | * Returns true is pathname is a directory |
| 484 | */ |
| 485 | bool is_dir(const char* pathname) { |
| 486 | struct stat info; |
| 487 | if (stat(pathname, &info) == -1) { |
| 488 | return false; |
| 489 | } |
| 490 | return S_ISDIR(info.st_mode); |
| 491 | } |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 492 | |
| 493 | bool expand_props(const std::string& src, std::string* dst) { |
| 494 | const char* src_ptr = src.c_str(); |
| 495 | |
| 496 | if (!dst) { |
| 497 | return false; |
| 498 | } |
| 499 | |
| 500 | /* - variables can either be $x.y or ${x.y}, in case they are only part |
| 501 | * of the string. |
| 502 | * - will accept $$ as a literal $. |
| 503 | * - no nested property expansion, i.e. ${foo.${bar}} is not supported, |
| 504 | * bad things will happen |
| 505 | */ |
| 506 | while (*src_ptr) { |
| 507 | const char* c; |
| 508 | |
| 509 | c = strchr(src_ptr, '$'); |
| 510 | if (!c) { |
| 511 | dst->append(src_ptr); |
| 512 | return true; |
| 513 | } |
| 514 | |
| 515 | dst->append(src_ptr, c); |
| 516 | c++; |
| 517 | |
| 518 | if (*c == '$') { |
| 519 | dst->push_back(*(c++)); |
| 520 | src_ptr = c; |
| 521 | continue; |
| 522 | } else if (*c == '\0') { |
| 523 | return true; |
| 524 | } |
| 525 | |
| 526 | std::string prop_name; |
| 527 | if (*c == '{') { |
| 528 | c++; |
| 529 | const char* end = strchr(c, '}'); |
| 530 | if (!end) { |
| 531 | // failed to find closing brace, abort. |
| 532 | ERROR("unexpected end of string in '%s', looking for }\n", src.c_str()); |
| 533 | return false; |
| 534 | } |
| 535 | prop_name = std::string(c, end); |
| 536 | c = end + 1; |
| 537 | } else { |
| 538 | prop_name = c; |
| 539 | ERROR("using deprecated syntax for specifying property '%s', use ${name} instead\n", |
| 540 | c); |
| 541 | c += prop_name.size(); |
| 542 | } |
| 543 | |
| 544 | if (prop_name.empty()) { |
| 545 | ERROR("invalid zero-length prop name in '%s'\n", src.c_str()); |
| 546 | return false; |
| 547 | } |
| 548 | |
| 549 | std::string prop_val = property_get(prop_name.c_str()); |
| 550 | if (prop_val.empty()) { |
| 551 | ERROR("property '%s' doesn't exist while expanding '%s'\n", |
| 552 | prop_name.c_str(), src.c_str()); |
| 553 | return false; |
| 554 | } |
| 555 | |
| 556 | dst->append(prop_val); |
| 557 | src_ptr = c; |
| 558 | } |
| 559 | |
| 560 | return true; |
| 561 | } |