Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| 29 | #include "linker_config.h" |
| 30 | |
| 31 | #include "linker_globals.h" |
| 32 | #include "linker_debug.h" |
| 33 | #include "linker_utils.h" |
| 34 | |
| 35 | #include <android-base/file.h> |
Justin Yun | 53ce742 | 2017-11-27 16:28:07 +0900 | [diff] [blame] | 36 | #include <android-base/properties.h> |
Tom Cherry | b8ab618 | 2017-04-05 16:20:29 -0700 | [diff] [blame] | 37 | #include <android-base/scopeguard.h> |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 38 | #include <android-base/strings.h> |
| 39 | |
Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 40 | #include <async_safe/log.h> |
| 41 | |
Inseob Kim | 216323b | 2018-06-18 15:30:18 +0900 | [diff] [blame] | 42 | #include <limits.h> |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 43 | #include <stdlib.h> |
Jiyong Park | 42e8198 | 2019-01-25 18:18:01 +0900 | [diff] [blame] | 44 | #include <unistd.h> |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 45 | |
| 46 | #include <string> |
| 47 | #include <unordered_map> |
| 48 | |
Sundong Ahn | 8fc5032 | 2017-10-10 14:12:40 +0900 | [diff] [blame] | 49 | #define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_ |
| 50 | #include <sys/_system_properties.h> |
| 51 | |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 52 | class ConfigParser { |
| 53 | public: |
| 54 | enum { |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 55 | kPropertyAssign, |
| 56 | kPropertyAppend, |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 57 | kSection, |
| 58 | kEndOfFile, |
| 59 | kError, |
| 60 | }; |
| 61 | |
| 62 | explicit ConfigParser(std::string&& content) |
Vic Yang | 976d4b4 | 2019-03-12 13:38:30 -0700 | [diff] [blame] | 63 | : content_(std::move(content)), p_(0), lineno_(0), was_end_of_file_(false) {} |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 64 | |
| 65 | /* |
| 66 | * Possible return values |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 67 | * kPropertyAssign: name is set to property name and value is set to property value |
| 68 | * kPropertyAppend: same as kPropertyAssign, but the value should be appended |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 69 | * kSection: name is set to section name. |
| 70 | * kEndOfFile: reached end of file. |
| 71 | * kError: error_msg is set. |
| 72 | */ |
| 73 | int next_token(std::string* name, std::string* value, std::string* error_msg) { |
| 74 | std::string line; |
| 75 | while(NextLine(&line)) { |
| 76 | size_t found = line.find('#'); |
| 77 | line = android::base::Trim(line.substr(0, found)); |
| 78 | |
| 79 | if (line.empty()) { |
| 80 | continue; |
| 81 | } |
| 82 | |
Ryan Prichard | 92b3e1b | 2019-03-11 17:27:52 -0700 | [diff] [blame] | 83 | if (line[0] == '[' && line.back() == ']') { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 84 | *name = line.substr(1, line.size() - 2); |
| 85 | return kSection; |
| 86 | } |
| 87 | |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 88 | size_t found_assign = line.find('='); |
| 89 | size_t found_append = line.find("+="); |
| 90 | if (found_assign != std::string::npos && found_append == std::string::npos) { |
| 91 | *name = android::base::Trim(line.substr(0, found_assign)); |
| 92 | *value = android::base::Trim(line.substr(found_assign + 1)); |
| 93 | return kPropertyAssign; |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 96 | if (found_append != std::string::npos) { |
| 97 | *name = android::base::Trim(line.substr(0, found_append)); |
| 98 | *value = android::base::Trim(line.substr(found_append + 2)); |
| 99 | return kPropertyAppend; |
| 100 | } |
| 101 | |
| 102 | *error_msg = std::string("invalid format: ") + |
| 103 | line + |
| 104 | ", expected \"name = property\", \"name += property\", or \"[section]\""; |
| 105 | return kError; |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | // to avoid infinite cycles when programmer makes a mistake |
| 109 | CHECK(!was_end_of_file_); |
| 110 | was_end_of_file_ = true; |
| 111 | return kEndOfFile; |
| 112 | } |
| 113 | |
| 114 | size_t lineno() const { |
| 115 | return lineno_; |
| 116 | } |
| 117 | |
| 118 | private: |
| 119 | bool NextLine(std::string* line) { |
| 120 | if (p_ == std::string::npos) { |
| 121 | return false; |
| 122 | } |
| 123 | |
| 124 | size_t found = content_.find('\n', p_); |
| 125 | if (found != std::string::npos) { |
| 126 | *line = content_.substr(p_, found - p_); |
| 127 | p_ = found + 1; |
| 128 | } else { |
| 129 | *line = content_.substr(p_); |
| 130 | p_ = std::string::npos; |
| 131 | } |
| 132 | |
| 133 | lineno_++; |
| 134 | return true; |
| 135 | } |
| 136 | |
| 137 | std::string content_; |
| 138 | size_t p_; |
| 139 | size_t lineno_; |
| 140 | bool was_end_of_file_; |
| 141 | |
| 142 | DISALLOW_IMPLICIT_CONSTRUCTORS(ConfigParser); |
| 143 | }; |
| 144 | |
| 145 | class PropertyValue { |
| 146 | public: |
| 147 | PropertyValue() = default; |
| 148 | |
| 149 | PropertyValue(std::string&& value, size_t lineno) |
Vic Yang | 976d4b4 | 2019-03-12 13:38:30 -0700 | [diff] [blame] | 150 | : value_(std::move(value)), lineno_(lineno) {} |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 151 | |
| 152 | const std::string& value() const { |
| 153 | return value_; |
| 154 | } |
| 155 | |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 156 | void append_value(std::string&& value) { |
| 157 | value_ = value_ + value; |
| 158 | // lineno isn't updated as we might have cases like this: |
| 159 | // property.x = blah |
| 160 | // property.y = blah |
| 161 | // property.x += blah |
| 162 | } |
| 163 | |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 164 | size_t lineno() const { |
| 165 | return lineno_; |
| 166 | } |
| 167 | |
| 168 | private: |
| 169 | std::string value_; |
| 170 | size_t lineno_; |
| 171 | }; |
| 172 | |
| 173 | static std::string create_error_msg(const char* file, |
| 174 | size_t lineno, |
| 175 | const std::string& msg) { |
| 176 | char buf[1024]; |
Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 177 | async_safe_format_buffer(buf, sizeof(buf), "%s:%zu: error: %s", file, lineno, msg.c_str()); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 178 | |
| 179 | return std::string(buf); |
| 180 | } |
| 181 | |
| 182 | static bool parse_config_file(const char* ld_config_file_path, |
| 183 | const char* binary_realpath, |
| 184 | std::unordered_map<std::string, PropertyValue>* properties, |
| 185 | std::string* error_msg) { |
| 186 | std::string content; |
| 187 | if (!android::base::ReadFileToString(ld_config_file_path, &content)) { |
| 188 | if (errno != ENOENT) { |
| 189 | *error_msg = std::string("error reading file \"") + |
| 190 | ld_config_file_path + "\": " + strerror(errno); |
| 191 | } |
| 192 | return false; |
| 193 | } |
| 194 | |
| 195 | ConfigParser cp(std::move(content)); |
| 196 | |
| 197 | std::string section_name; |
| 198 | |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 199 | while (true) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 200 | std::string name; |
| 201 | std::string value; |
| 202 | std::string error; |
| 203 | |
| 204 | int result = cp.next_token(&name, &value, &error); |
| 205 | if (result == ConfigParser::kError) { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 206 | DL_WARN("%s:%zd: warning: couldn't parse %s (ignoring this line)", |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 207 | ld_config_file_path, |
| 208 | cp.lineno(), |
| 209 | error.c_str()); |
| 210 | continue; |
| 211 | } |
| 212 | |
| 213 | if (result == ConfigParser::kSection || result == ConfigParser::kEndOfFile) { |
| 214 | return false; |
| 215 | } |
| 216 | |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 217 | if (result == ConfigParser::kPropertyAssign) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 218 | if (!android::base::StartsWith(name, "dir.")) { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 219 | DL_WARN("%s:%zd: warning: unexpected property name \"%s\", " |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 220 | "expected format dir.<section_name> (ignoring this line)", |
| 221 | ld_config_file_path, |
| 222 | cp.lineno(), |
| 223 | name.c_str()); |
| 224 | continue; |
| 225 | } |
| 226 | |
| 227 | // remove trailing '/' |
Inseob Kim | 216323b | 2018-06-18 15:30:18 +0900 | [diff] [blame] | 228 | while (!value.empty() && value.back() == '/') { |
| 229 | value.pop_back(); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | if (value.empty()) { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 233 | DL_WARN("%s:%zd: warning: property value is empty (ignoring this line)", |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 234 | ld_config_file_path, |
| 235 | cp.lineno()); |
| 236 | continue; |
| 237 | } |
| 238 | |
Inseob Kim | 216323b | 2018-06-18 15:30:18 +0900 | [diff] [blame] | 239 | // If the path can be resolved, resolve it |
| 240 | char buf[PATH_MAX]; |
| 241 | std::string resolved_path; |
Jiyong Park | 42e8198 | 2019-01-25 18:18:01 +0900 | [diff] [blame] | 242 | if (access(value.c_str(), R_OK) != 0) { |
| 243 | if (errno == ENOENT) { |
| 244 | // no need to test for non-existing path. skip. |
| 245 | continue; |
| 246 | } |
| 247 | // If not accessible, don't call realpath as it will just cause |
| 248 | // SELinux denial spam. Use the path unresolved. |
| 249 | resolved_path = value; |
| 250 | } else if (realpath(value.c_str(), buf)) { |
Inseob Kim | 216323b | 2018-06-18 15:30:18 +0900 | [diff] [blame] | 251 | resolved_path = buf; |
Jiyong Park | 42e8198 | 2019-01-25 18:18:01 +0900 | [diff] [blame] | 252 | } else { |
Ryan Prichard | 6b55cc3 | 2019-01-04 14:58:26 -0800 | [diff] [blame] | 253 | // realpath is expected to fail with EPERM in some situations, so log |
| 254 | // the failure with INFO rather than DL_WARN. e.g. A binary in |
| 255 | // /data/local/tmp may attempt to stat /postinstall. See |
| 256 | // http://b/120996057. |
| 257 | INFO("%s:%zd: warning: path \"%s\" couldn't be resolved: %s", |
| 258 | ld_config_file_path, |
| 259 | cp.lineno(), |
| 260 | value.c_str(), |
| 261 | strerror(errno)); |
Inseob Kim | 216323b | 2018-06-18 15:30:18 +0900 | [diff] [blame] | 262 | resolved_path = value; |
| 263 | } |
| 264 | |
| 265 | if (file_is_under_dir(binary_realpath, resolved_path)) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 266 | section_name = name.substr(4); |
| 267 | break; |
| 268 | } |
| 269 | } |
| 270 | } |
| 271 | |
Martin Stjernholm | 95252ee | 2019-02-22 22:48:59 +0000 | [diff] [blame] | 272 | INFO("[ Using config section \"%s\" ]", section_name.c_str()); |
| 273 | |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 274 | // skip everything until we meet a correct section |
| 275 | while (true) { |
| 276 | std::string name; |
| 277 | std::string value; |
| 278 | std::string error; |
| 279 | |
| 280 | int result = cp.next_token(&name, &value, &error); |
| 281 | |
| 282 | if (result == ConfigParser::kSection && name == section_name) { |
| 283 | break; |
| 284 | } |
| 285 | |
| 286 | if (result == ConfigParser::kEndOfFile) { |
| 287 | *error_msg = create_error_msg(ld_config_file_path, |
| 288 | cp.lineno(), |
| 289 | std::string("section \"") + section_name + "\" not found"); |
| 290 | return false; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | // found the section - parse it |
| 295 | while (true) { |
| 296 | std::string name; |
| 297 | std::string value; |
| 298 | std::string error; |
| 299 | |
| 300 | int result = cp.next_token(&name, &value, &error); |
| 301 | |
| 302 | if (result == ConfigParser::kEndOfFile || result == ConfigParser::kSection) { |
| 303 | break; |
| 304 | } |
| 305 | |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 306 | if (result == ConfigParser::kPropertyAssign) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 307 | if (properties->find(name) != properties->end()) { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 308 | DL_WARN("%s:%zd: warning: redefining property \"%s\" (overriding previous value)", |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 309 | ld_config_file_path, |
| 310 | cp.lineno(), |
| 311 | name.c_str()); |
| 312 | } |
| 313 | |
| 314 | (*properties)[name] = PropertyValue(std::move(value), cp.lineno()); |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 315 | } else if (result == ConfigParser::kPropertyAppend) { |
| 316 | if (properties->find(name) == properties->end()) { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 317 | DL_WARN("%s:%zd: warning: appending to undefined property \"%s\" (treating as assignment)", |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 318 | ld_config_file_path, |
| 319 | cp.lineno(), |
| 320 | name.c_str()); |
| 321 | (*properties)[name] = PropertyValue(std::move(value), cp.lineno()); |
| 322 | } else { |
| 323 | if (android::base::EndsWith(name, ".links") || |
| 324 | android::base::EndsWith(name, ".namespaces")) { |
| 325 | value = "," + value; |
| 326 | (*properties)[name].append_value(std::move(value)); |
| 327 | } else if (android::base::EndsWith(name, ".paths") || |
| 328 | android::base::EndsWith(name, ".shared_libs")) { |
| 329 | value = ":" + value; |
| 330 | (*properties)[name].append_value(std::move(value)); |
| 331 | } else { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 332 | DL_WARN("%s:%zd: warning: += isn't allowed for property \"%s\" (ignoring)", |
Jiyong Park | 8b02951 | 2017-11-29 18:30:53 +0900 | [diff] [blame] | 333 | ld_config_file_path, |
| 334 | cp.lineno(), |
| 335 | name.c_str()); |
| 336 | } |
| 337 | } |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | if (result == ConfigParser::kError) { |
Elliott Hughes | 9076b0c | 2018-02-28 11:29:45 -0800 | [diff] [blame] | 341 | DL_WARN("%s:%zd: warning: couldn't parse %s (ignoring this line)", |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 342 | ld_config_file_path, |
| 343 | cp.lineno(), |
| 344 | error.c_str()); |
| 345 | continue; |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | return true; |
| 350 | } |
| 351 | |
| 352 | static Config g_config; |
| 353 | |
| 354 | static constexpr const char* kDefaultConfigName = "default"; |
| 355 | static constexpr const char* kPropertyAdditionalNamespaces = "additional.namespaces"; |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 356 | |
| 357 | class Properties { |
| 358 | public: |
| 359 | explicit Properties(std::unordered_map<std::string, PropertyValue>&& properties) |
Vic Yang | 976d4b4 | 2019-03-12 13:38:30 -0700 | [diff] [blame] | 360 | : properties_(std::move(properties)), target_sdk_version_(__ANDROID_API__) {} |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 361 | |
| 362 | std::vector<std::string> get_strings(const std::string& name, size_t* lineno = nullptr) const { |
| 363 | auto it = find_property(name, lineno); |
| 364 | if (it == properties_.end()) { |
| 365 | // return empty vector |
| 366 | return std::vector<std::string>(); |
| 367 | } |
| 368 | |
| 369 | std::vector<std::string> strings = android::base::Split(it->second.value(), ","); |
| 370 | |
| 371 | for (size_t i = 0; i < strings.size(); ++i) { |
| 372 | strings[i] = android::base::Trim(strings[i]); |
| 373 | } |
| 374 | |
| 375 | return strings; |
| 376 | } |
| 377 | |
| 378 | bool get_bool(const std::string& name, size_t* lineno = nullptr) const { |
| 379 | auto it = find_property(name, lineno); |
| 380 | if (it == properties_.end()) { |
| 381 | return false; |
| 382 | } |
| 383 | |
| 384 | return it->second.value() == "true"; |
| 385 | } |
| 386 | |
| 387 | std::string get_string(const std::string& name, size_t* lineno = nullptr) const { |
| 388 | auto it = find_property(name, lineno); |
| 389 | return (it == properties_.end()) ? "" : it->second.value(); |
| 390 | } |
| 391 | |
Jiyong Park | 0f33f23 | 2017-09-21 10:27:36 +0900 | [diff] [blame] | 392 | std::vector<std::string> get_paths(const std::string& name, bool resolve, size_t* lineno = nullptr) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 393 | std::string paths_str = get_string(name, lineno); |
| 394 | |
| 395 | std::vector<std::string> paths; |
| 396 | split_path(paths_str.c_str(), ":", &paths); |
| 397 | |
| 398 | std::vector<std::pair<std::string, std::string>> params; |
Ryan Prichard | 4d4087d | 2019-12-02 16:55:48 -0800 | [diff] [blame^] | 399 | params.push_back({ "LIB", kLibPath }); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 400 | if (target_sdk_version_ != 0) { |
| 401 | char buf[16]; |
Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 402 | async_safe_format_buffer(buf, sizeof(buf), "%d", target_sdk_version_); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 403 | params.push_back({ "SDK_VER", buf }); |
| 404 | } |
| 405 | |
Jooyung Han | 0928399 | 2019-10-29 05:29:56 +0900 | [diff] [blame] | 406 | static std::string vndk_ver = Config::get_vndk_version_string('-'); |
| 407 | params.push_back({ "VNDK_VER", vndk_ver }); |
| 408 | static std::string vndk_apex_ver = Config::get_vndk_version_string('v'); |
| 409 | params.push_back({ "VNDK_APEX_VER", vndk_apex_ver }); |
Jooyung Han | 5d1d907 | 2019-08-26 23:08:33 +0000 | [diff] [blame] | 410 | |
Vic Yang | 976d4b4 | 2019-03-12 13:38:30 -0700 | [diff] [blame] | 411 | for (auto& path : paths) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 412 | format_string(&path, params); |
| 413 | } |
| 414 | |
Jiyong Park | 0f33f23 | 2017-09-21 10:27:36 +0900 | [diff] [blame] | 415 | if (resolve) { |
| 416 | std::vector<std::string> resolved_paths; |
Jiyong Park | 341b61e | 2019-05-13 16:52:01 +0900 | [diff] [blame] | 417 | for (const auto& path : paths) { |
| 418 | if (path.empty()) { |
| 419 | continue; |
| 420 | } |
| 421 | // this is single threaded. no need to lock |
| 422 | auto cached = resolved_paths_.find(path); |
| 423 | if (cached == resolved_paths_.end()) { |
| 424 | resolved_paths_[path] = resolve_path(path); |
| 425 | cached = resolved_paths_.find(path); |
| 426 | } |
| 427 | CHECK(cached != resolved_paths_.end()); |
| 428 | if (cached->second.empty()) { |
| 429 | continue; |
| 430 | } |
| 431 | resolved_paths.push_back(cached->second); |
| 432 | } |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 433 | |
Jiyong Park | 0f33f23 | 2017-09-21 10:27:36 +0900 | [diff] [blame] | 434 | return resolved_paths; |
| 435 | } else { |
| 436 | return paths; |
| 437 | } |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | void set_target_sdk_version(int target_sdk_version) { |
| 441 | target_sdk_version_ = target_sdk_version; |
| 442 | } |
| 443 | |
| 444 | private: |
| 445 | std::unordered_map<std::string, PropertyValue>::const_iterator |
| 446 | find_property(const std::string& name, size_t* lineno) const { |
| 447 | auto it = properties_.find(name); |
| 448 | if (it != properties_.end() && lineno != nullptr) { |
| 449 | *lineno = it->second.lineno(); |
| 450 | } |
| 451 | |
| 452 | return it; |
| 453 | } |
| 454 | std::unordered_map<std::string, PropertyValue> properties_; |
Jiyong Park | 341b61e | 2019-05-13 16:52:01 +0900 | [diff] [blame] | 455 | std::unordered_map<std::string, std::string> resolved_paths_; |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 456 | int target_sdk_version_; |
| 457 | |
| 458 | DISALLOW_IMPLICIT_CONSTRUCTORS(Properties); |
| 459 | }; |
| 460 | |
| 461 | bool Config::read_binary_config(const char* ld_config_file_path, |
| 462 | const char* binary_realpath, |
| 463 | bool is_asan, |
| 464 | const Config** config, |
| 465 | std::string* error_msg) { |
| 466 | g_config.clear(); |
| 467 | |
| 468 | std::unordered_map<std::string, PropertyValue> property_map; |
| 469 | if (!parse_config_file(ld_config_file_path, binary_realpath, &property_map, error_msg)) { |
| 470 | return false; |
| 471 | } |
| 472 | |
| 473 | Properties properties(std::move(property_map)); |
| 474 | |
Tom Cherry | b8ab618 | 2017-04-05 16:20:29 -0700 | [diff] [blame] | 475 | auto failure_guard = android::base::make_scope_guard([] { g_config.clear(); }); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 476 | |
| 477 | std::unordered_map<std::string, NamespaceConfig*> namespace_configs; |
| 478 | |
| 479 | namespace_configs[kDefaultConfigName] = g_config.create_namespace_config(kDefaultConfigName); |
| 480 | |
| 481 | std::vector<std::string> additional_namespaces = properties.get_strings(kPropertyAdditionalNamespaces); |
| 482 | for (const auto& name : additional_namespaces) { |
| 483 | namespace_configs[name] = g_config.create_namespace_config(name); |
| 484 | } |
| 485 | |
| 486 | bool versioning_enabled = properties.get_bool("enable.target.sdk.version"); |
| 487 | int target_sdk_version = __ANDROID_API__; |
| 488 | if (versioning_enabled) { |
| 489 | std::string version_file = dirname(binary_realpath) + "/.version"; |
| 490 | std::string content; |
| 491 | if (!android::base::ReadFileToString(version_file, &content)) { |
| 492 | if (errno != ENOENT) { |
| 493 | *error_msg = std::string("error reading version file \"") + |
| 494 | version_file + "\": " + strerror(errno); |
| 495 | return false; |
| 496 | } |
| 497 | } else { |
| 498 | content = android::base::Trim(content); |
| 499 | errno = 0; |
| 500 | char* end = nullptr; |
| 501 | const char* content_str = content.c_str(); |
| 502 | int result = strtol(content_str, &end, 10); |
| 503 | if (errno == 0 && *end == '\0' && result > 0) { |
| 504 | target_sdk_version = result; |
| 505 | properties.set_target_sdk_version(target_sdk_version); |
| 506 | } else { |
| 507 | *error_msg = std::string("invalid version \"") + version_file + "\": \"" + content +"\""; |
| 508 | return false; |
| 509 | } |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | g_config.set_target_sdk_version(target_sdk_version); |
| 514 | |
Chih-Hung Hsieh | 0218e92 | 2018-12-11 10:22:11 -0800 | [diff] [blame] | 515 | for (const auto& ns_config_it : namespace_configs) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 516 | auto& name = ns_config_it.first; |
| 517 | NamespaceConfig* ns_config = ns_config_it.second; |
| 518 | |
| 519 | std::string property_name_prefix = std::string("namespace.") + name; |
| 520 | |
| 521 | size_t lineno = 0; |
| 522 | std::vector<std::string> linked_namespaces = |
| 523 | properties.get_strings(property_name_prefix + ".links", &lineno); |
| 524 | |
| 525 | for (const auto& linked_ns_name : linked_namespaces) { |
| 526 | if (namespace_configs.find(linked_ns_name) == namespace_configs.end()) { |
| 527 | *error_msg = create_error_msg(ld_config_file_path, |
| 528 | lineno, |
| 529 | std::string("undefined namespace: ") + linked_ns_name); |
| 530 | return false; |
| 531 | } |
| 532 | |
Logan Chien | 9ee4591 | 2018-01-18 12:05:09 +0800 | [diff] [blame] | 533 | bool allow_all_shared_libs = properties.get_bool(property_name_prefix + ".link." + |
| 534 | linked_ns_name + ".allow_all_shared_libs"); |
| 535 | |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 536 | std::string shared_libs = properties.get_string(property_name_prefix + |
| 537 | ".link." + |
| 538 | linked_ns_name + |
| 539 | ".shared_libs", &lineno); |
| 540 | |
Logan Chien | 9ee4591 | 2018-01-18 12:05:09 +0800 | [diff] [blame] | 541 | if (!allow_all_shared_libs && shared_libs.empty()) { |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 542 | *error_msg = create_error_msg(ld_config_file_path, |
| 543 | lineno, |
| 544 | std::string("list of shared_libs for ") + |
| 545 | name + |
| 546 | "->" + |
| 547 | linked_ns_name + |
| 548 | " link is not specified or is empty."); |
| 549 | return false; |
| 550 | } |
| 551 | |
Logan Chien | 9ee4591 | 2018-01-18 12:05:09 +0800 | [diff] [blame] | 552 | if (allow_all_shared_libs && !shared_libs.empty()) { |
| 553 | *error_msg = create_error_msg(ld_config_file_path, lineno, |
| 554 | std::string("both shared_libs and allow_all_shared_libs " |
| 555 | "are set for ") + |
| 556 | name + "->" + linked_ns_name + " link."); |
| 557 | return false; |
| 558 | } |
| 559 | |
| 560 | ns_config->add_namespace_link(linked_ns_name, shared_libs, allow_all_shared_libs); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | ns_config->set_isolated(properties.get_bool(property_name_prefix + ".isolated")); |
Jiyong Park | 01de74e | 2017-04-03 23:10:37 +0900 | [diff] [blame] | 564 | ns_config->set_visible(properties.get_bool(property_name_prefix + ".visible")); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 565 | |
Vic Yang | 2d020e4 | 2019-01-12 21:03:25 -0800 | [diff] [blame] | 566 | std::string whitelisted = |
| 567 | properties.get_string(property_name_prefix + ".whitelisted", &lineno); |
| 568 | if (!whitelisted.empty()) { |
| 569 | ns_config->set_whitelisted_libs(android::base::Split(whitelisted, ":")); |
| 570 | } |
| 571 | |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 572 | // these are affected by is_asan flag |
| 573 | if (is_asan) { |
| 574 | property_name_prefix += ".asan"; |
| 575 | } |
| 576 | |
Jiyong Park | 0f33f23 | 2017-09-21 10:27:36 +0900 | [diff] [blame] | 577 | // search paths are resolved (canonicalized). This is required mainly for |
| 578 | // the case when /vendor is a symlink to /system/vendor, which is true for |
| 579 | // non Treble-ized legacy devices. |
| 580 | ns_config->set_search_paths(properties.get_paths(property_name_prefix + ".search.paths", true)); |
| 581 | |
| 582 | // However, for permitted paths, we are not required to resolve the paths |
| 583 | // since they are only set for isolated namespaces, which implies the device |
| 584 | // is Treble-ized (= /vendor is not a symlink to /system/vendor). |
| 585 | // In fact, the resolving is causing an unexpected side effect of selinux |
| 586 | // denials on some executables which are not allowed to access some of the |
| 587 | // permitted paths. |
| 588 | ns_config->set_permitted_paths(properties.get_paths(property_name_prefix + ".permitted.paths", false)); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 589 | } |
| 590 | |
Tom Cherry | b8ab618 | 2017-04-05 16:20:29 -0700 | [diff] [blame] | 591 | failure_guard.Disable(); |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 592 | *config = &g_config; |
| 593 | return true; |
| 594 | } |
| 595 | |
Jooyung Han | a365ac1 | 2019-10-16 22:37:10 +0000 | [diff] [blame] | 596 | std::string Config::get_vndk_version_string(const char delimiter) { |
Justin Yun | 53ce742 | 2017-11-27 16:28:07 +0900 | [diff] [blame] | 597 | std::string version = android::base::GetProperty("ro.vndk.version", ""); |
| 598 | if (version != "" && version != "current") { |
Jooyung Han | a365ac1 | 2019-10-16 22:37:10 +0000 | [diff] [blame] | 599 | //add the delimiter char in front of the string and return it. |
| 600 | return version.insert(0, 1, delimiter); |
Justin Yun | 53ce742 | 2017-11-27 16:28:07 +0900 | [diff] [blame] | 601 | } |
| 602 | return ""; |
| 603 | } |
| 604 | |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 605 | NamespaceConfig* Config::create_namespace_config(const std::string& name) { |
| 606 | namespace_configs_.push_back(std::unique_ptr<NamespaceConfig>(new NamespaceConfig(name))); |
| 607 | NamespaceConfig* ns_config_ptr = namespace_configs_.back().get(); |
| 608 | namespace_configs_map_[name] = ns_config_ptr; |
| 609 | return ns_config_ptr; |
| 610 | } |
| 611 | |
| 612 | void Config::clear() { |
| 613 | namespace_configs_.clear(); |
| 614 | namespace_configs_map_.clear(); |
| 615 | } |