The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -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 <hardware/hardware.h> |
| 18 | |
| 19 | #include <cutils/properties.h> |
| 20 | |
| 21 | #include <dlfcn.h> |
| 22 | #include <string.h> |
| 23 | #include <pthread.h> |
| 24 | #include <errno.h> |
| 25 | #include <limits.h> |
Dan Willemsen | 4d53a04 | 2017-04-07 14:15:17 -0700 | [diff] [blame] | 26 | #include <stdio.h> |
Steven Moreland | e448a05 | 2018-06-25 15:25:32 -0700 | [diff] [blame] | 27 | #include <stdlib.h> |
Dan Willemsen | 4d53a04 | 2017-04-07 14:15:17 -0700 | [diff] [blame] | 28 | #include <unistd.h> |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 29 | |
| 30 | #define LOG_TAG "HAL" |
Dan Willemsen | 4d53a04 | 2017-04-07 14:15:17 -0700 | [diff] [blame] | 31 | #include <log/log.h> |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 32 | |
Devin Moore | 690e02a | 2022-11-14 19:13:56 +0000 | [diff] [blame] | 33 | #if !defined(__ANDROID_RECOVERY__) && defined(__ANDROID__) |
Jiyong Park | 4d67d2e | 2017-05-11 02:15:07 +0900 | [diff] [blame] | 34 | #include <vndksupport/linker.h> |
Jerry Zhang | 551e1f7 | 2018-06-20 17:04:52 -0700 | [diff] [blame] | 35 | #endif |
Jiyong Park | 4d67d2e | 2017-05-11 02:15:07 +0900 | [diff] [blame] | 36 | |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 37 | #ifdef __ANDROID_APEX__ |
| 38 | #include <android/apexsupport.h> |
| 39 | #endif |
| 40 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 41 | /** Base path of the hal modules */ |
Dan Willemsen | 86389d1 | 2014-02-16 10:07:15 -0800 | [diff] [blame] | 42 | #if defined(__LP64__) |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 43 | #define HAL_LIBRARY_SUBDIR "lib64/hw" |
Dan Willemsen | 86389d1 | 2014-02-16 10:07:15 -0800 | [diff] [blame] | 44 | #else |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 45 | #define HAL_LIBRARY_SUBDIR "lib/hw" |
Dan Willemsen | 86389d1 | 2014-02-16 10:07:15 -0800 | [diff] [blame] | 46 | #endif |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 47 | |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 48 | #define HAL_LIBRARY_PATH1 "/system/" HAL_LIBRARY_SUBDIR |
| 49 | #define HAL_LIBRARY_PATH2 "/vendor/" HAL_LIBRARY_SUBDIR |
| 50 | #define HAL_LIBRARY_PATH3 "/odm/" HAL_LIBRARY_SUBDIR |
| 51 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 52 | /** |
| 53 | * There are a set of variant filename for modules. The form of the filename |
| 54 | * is "<MODULE_ID>.variant.so" so for the led module the Dream variants |
| 55 | * of base "ro.product.board", "ro.board.platform" and "ro.arch" would be: |
| 56 | * |
| 57 | * led.trout.so |
| 58 | * led.msm7k.so |
| 59 | * led.ARMV6.so |
| 60 | * led.default.so |
| 61 | */ |
| 62 | |
The Android Open Source Project | 8232b50 | 2009-03-13 13:04:23 -0700 | [diff] [blame] | 63 | static const char *variant_keys[] = { |
| 64 | "ro.hardware", /* This goes first so that it can pick up a different |
| 65 | file on the emulator. */ |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 66 | "ro.product.board", |
| 67 | "ro.board.platform", |
Mathias Agopian | cab816f | 2009-09-24 15:11:04 -0700 | [diff] [blame] | 68 | "ro.arch" |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 69 | }; |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 70 | |
| 71 | static const int HAL_VARIANT_KEYS_COUNT = |
| 72 | (sizeof(variant_keys)/sizeof(variant_keys[0])); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 73 | |
| 74 | /** |
Mathias Agopian | 8c4ab1f | 2009-06-11 16:32:05 -0700 | [diff] [blame] | 75 | * Load the file defined by the variant and if successful |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 76 | * return the dlopen handle and the hmi. |
| 77 | * @return 0 = success, !0 = failure. |
| 78 | */ |
| 79 | static int load(const char *id, |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 80 | const char *path, |
| 81 | const struct hw_module_t **pHmi) |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 82 | { |
Andrei V. FOMITCHEV | ec2ddf5 | 2012-10-19 16:26:33 +0200 | [diff] [blame] | 83 | int status = -EINVAL; |
| 84 | void *handle = NULL; |
| 85 | struct hw_module_t *hmi = NULL; |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 86 | #if defined(__ANDROID_VNDK__) || defined(__ANDROID_APEX__) |
Justin Yun | 8f30cfc | 2017-11-30 16:45:16 +0900 | [diff] [blame] | 87 | const bool try_system = false; |
| 88 | #else |
| 89 | const bool try_system = true; |
| 90 | #endif |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 91 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 92 | /* |
| 93 | * load the symbols resolving undefined symbols before |
| 94 | * dlopen returns. Since RTLD_GLOBAL is not or'd in with |
| 95 | * RTLD_NOW the external symbols will not be global |
| 96 | */ |
Justin Yun | 8f30cfc | 2017-11-30 16:45:16 +0900 | [diff] [blame] | 97 | if (try_system && |
| 98 | strncmp(path, HAL_LIBRARY_PATH1, strlen(HAL_LIBRARY_PATH1)) == 0) { |
Justin Yun | c571709 | 2017-05-23 16:30:43 +0900 | [diff] [blame] | 99 | /* If the library is in system partition, no need to check |
| 100 | * sphal namespace. Open it with dlopen. |
| 101 | */ |
| 102 | handle = dlopen(path, RTLD_NOW); |
| 103 | } else { |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 104 | #if defined(__ANDROID_RECOVERY__) || !defined(__ANDROID__) || defined(__ANDROID_APEX__) |
Jerry Zhang | 551e1f7 | 2018-06-20 17:04:52 -0700 | [diff] [blame] | 105 | handle = dlopen(path, RTLD_NOW); |
| 106 | #else |
Justin Yun | c571709 | 2017-05-23 16:30:43 +0900 | [diff] [blame] | 107 | handle = android_load_sphal_library(path, RTLD_NOW); |
Jerry Zhang | 551e1f7 | 2018-06-20 17:04:52 -0700 | [diff] [blame] | 108 | #endif |
Justin Yun | c571709 | 2017-05-23 16:30:43 +0900 | [diff] [blame] | 109 | } |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 110 | if (handle == NULL) { |
| 111 | char const *err_str = dlerror(); |
Steve Block | 60d056b | 2012-01-08 10:17:53 +0000 | [diff] [blame] | 112 | ALOGE("load: module=%s\n%s", path, err_str?err_str:"unknown"); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 113 | status = -EINVAL; |
| 114 | goto done; |
| 115 | } |
| 116 | |
| 117 | /* Get the address of the struct hal_module_info. */ |
| 118 | const char *sym = HAL_MODULE_INFO_SYM_AS_STR; |
Mathias Agopian | a8a7516 | 2009-04-10 14:24:31 -0700 | [diff] [blame] | 119 | hmi = (struct hw_module_t *)dlsym(handle, sym); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 120 | if (hmi == NULL) { |
Steve Block | 60d056b | 2012-01-08 10:17:53 +0000 | [diff] [blame] | 121 | ALOGE("load: couldn't find symbol %s", sym); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 122 | status = -EINVAL; |
| 123 | goto done; |
| 124 | } |
| 125 | |
| 126 | /* Check that the id matches */ |
| 127 | if (strcmp(id, hmi->id) != 0) { |
Steve Block | 60d056b | 2012-01-08 10:17:53 +0000 | [diff] [blame] | 128 | ALOGE("load: id=%s != hmi->id=%s", id, hmi->id); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 129 | status = -EINVAL; |
| 130 | goto done; |
| 131 | } |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 132 | |
Mathias Agopian | a8a7516 | 2009-04-10 14:24:31 -0700 | [diff] [blame] | 133 | hmi->dso = handle; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 134 | |
| 135 | /* success */ |
| 136 | status = 0; |
| 137 | |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 138 | done: |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 139 | if (status != 0) { |
| 140 | hmi = NULL; |
| 141 | if (handle != NULL) { |
| 142 | dlclose(handle); |
| 143 | handle = NULL; |
| 144 | } |
Mathias Agopian | 6d125da | 2009-07-15 15:01:10 -0700 | [diff] [blame] | 145 | } else { |
Steve Block | 7567eba | 2011-10-20 13:58:15 +0100 | [diff] [blame] | 146 | ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p", |
Ernie Hua | 5c7a3bd | 2018-07-10 15:15:40 -0700 | [diff] [blame] | 147 | id, path, hmi, handle); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | *pHmi = hmi; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 151 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 152 | return status; |
| 153 | } |
| 154 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 155 | /* |
Steven Moreland | e448a05 | 2018-06-25 15:25:32 -0700 | [diff] [blame] | 156 | * If path is in in_path. |
| 157 | */ |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 158 | static bool __attribute__ ((unused)) path_in_path(const char *path, const char *in_path) { |
Steven Moreland | e448a05 | 2018-06-25 15:25:32 -0700 | [diff] [blame] | 159 | char real_path[PATH_MAX]; |
| 160 | if (realpath(path, real_path) == NULL) return false; |
| 161 | |
| 162 | char real_in_path[PATH_MAX]; |
| 163 | if (realpath(in_path, real_in_path) == NULL) return false; |
| 164 | |
| 165 | const size_t real_in_path_len = strlen(real_in_path); |
| 166 | if (strncmp(real_path, real_in_path, real_in_path_len) != 0) { |
| 167 | return false; |
| 168 | } |
| 169 | |
| 170 | return strlen(real_path) > real_in_path_len && |
| 171 | real_path[real_in_path_len] == '/'; |
| 172 | } |
| 173 | |
| 174 | /* |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 175 | * Check if a HAL with given name and subname exists, if so return 0, otherwise |
| 176 | * otherwise return negative. On success path will contain the path to the HAL. |
| 177 | */ |
| 178 | static int hw_module_exists(char *path, size_t path_len, const char *name, |
| 179 | const char *subname) |
| 180 | { |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 181 | #ifdef __ANDROID_APEX__ |
Jooyung Han | 4695d8a | 2024-02-01 12:44:37 +0900 | [diff] [blame] | 182 | // When used in VAPEX, it should look only into the same APEX because |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 183 | // libhardware modules don't provide ABI stability. |
Jooyung Han | d9ce83c | 2024-11-08 17:02:35 +0900 | [diff] [blame] | 184 | if (__builtin_available(android __ANDROID_API_V__, *)) { |
| 185 | AApexInfo *apex_info; |
| 186 | if (AApexInfo_create(&apex_info) == AAPEXINFO_OK) { |
| 187 | snprintf(path, path_len, "/apex/%s/%s/%s.%s.so", |
| 188 | AApexInfo_getName(apex_info), HAL_LIBRARY_SUBDIR, name, subname); |
| 189 | AApexInfo_destroy(apex_info); |
| 190 | if (access(path, R_OK) == 0) |
| 191 | return 0; |
| 192 | } |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 193 | } |
| 194 | #else // __ANDROID_APEX__ |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 195 | snprintf(path, path_len, "%s/%s.%s.so", |
Hung-ying Tyan | 48f57ad | 2015-11-12 11:19:45 +0800 | [diff] [blame] | 196 | HAL_LIBRARY_PATH3, name, subname); |
Steven Moreland | e448a05 | 2018-06-25 15:25:32 -0700 | [diff] [blame] | 197 | if (path_in_path(path, HAL_LIBRARY_PATH3) && access(path, R_OK) == 0) |
Hung-ying Tyan | 48f57ad | 2015-11-12 11:19:45 +0800 | [diff] [blame] | 198 | return 0; |
| 199 | |
| 200 | snprintf(path, path_len, "%s/%s.%s.so", |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 201 | HAL_LIBRARY_PATH2, name, subname); |
Steven Moreland | e448a05 | 2018-06-25 15:25:32 -0700 | [diff] [blame] | 202 | if (path_in_path(path, HAL_LIBRARY_PATH2) && access(path, R_OK) == 0) |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 203 | return 0; |
| 204 | |
Justin Yun | 8f30cfc | 2017-11-30 16:45:16 +0900 | [diff] [blame] | 205 | #ifndef __ANDROID_VNDK__ |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 206 | snprintf(path, path_len, "%s/%s.%s.so", |
| 207 | HAL_LIBRARY_PATH1, name, subname); |
Steven Moreland | e448a05 | 2018-06-25 15:25:32 -0700 | [diff] [blame] | 208 | if (path_in_path(path, HAL_LIBRARY_PATH1) && access(path, R_OK) == 0) |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 209 | return 0; |
Justin Yun | 8f30cfc | 2017-11-30 16:45:16 +0900 | [diff] [blame] | 210 | #endif |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 211 | |
Jooyung Han | 40fa6e1 | 2023-09-26 14:51:44 +0900 | [diff] [blame] | 212 | #endif // __ANDROID_APEX__ |
| 213 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 214 | return -ENOENT; |
| 215 | } |
| 216 | |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 217 | int hw_get_module_by_class(const char *class_id, const char *inst, |
| 218 | const struct hw_module_t **module) |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 219 | { |
Andrei V. FOMITCHEV | ec2ddf5 | 2012-10-19 16:26:33 +0200 | [diff] [blame] | 220 | int i = 0; |
| 221 | char prop[PATH_MAX] = {0}; |
| 222 | char path[PATH_MAX] = {0}; |
| 223 | char name[PATH_MAX] = {0}; |
| 224 | char prop_name[PATH_MAX] = {0}; |
| 225 | |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 226 | |
| 227 | if (inst) |
| 228 | snprintf(name, PATH_MAX, "%s.%s", class_id, inst); |
Devin Moore | 690e02a | 2022-11-14 19:13:56 +0000 | [diff] [blame] | 229 | #if defined(__ANDROID__) |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 230 | else |
| 231 | strlcpy(name, class_id, PATH_MAX); |
Devin Moore | 690e02a | 2022-11-14 19:13:56 +0000 | [diff] [blame] | 232 | #else |
| 233 | else |
| 234 | snprintf(name, PATH_MAX, "%s", class_id); |
| 235 | #endif |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 236 | |
| 237 | /* |
| 238 | * Here we rely on the fact that calling dlopen multiple times on |
| 239 | * the same .so will simply increment a refcount (and not load |
| 240 | * a new copy of the library). |
| 241 | * We also assume that dlopen() is thread-safe. |
| 242 | */ |
The Android Open Source Project | 8232b50 | 2009-03-13 13:04:23 -0700 | [diff] [blame] | 243 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 244 | /* First try a property specific to the class and possibly instance */ |
| 245 | snprintf(prop_name, sizeof(prop_name), "ro.hardware.%s", name); |
Colin Cross | f7d761c | 2014-01-13 23:43:23 -0800 | [diff] [blame] | 246 | if (property_get(prop_name, prop, NULL) > 0) { |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 247 | if (hw_module_exists(path, sizeof(path), name, prop) == 0) { |
| 248 | goto found; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 249 | } |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 250 | } |
The Android Open Source Project | 8232b50 | 2009-03-13 13:04:23 -0700 | [diff] [blame] | 251 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 252 | /* Loop through the configuration variants looking for a module */ |
| 253 | for (i=0 ; i<HAL_VARIANT_KEYS_COUNT; i++) { |
| 254 | if (property_get(variant_keys[i], prop, NULL) == 0) { |
| 255 | continue; |
| 256 | } |
| 257 | if (hw_module_exists(path, sizeof(path), name, prop) == 0) { |
| 258 | goto found; |
| 259 | } |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 260 | } |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 261 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 262 | /* Nothing found, try the default */ |
| 263 | if (hw_module_exists(path, sizeof(path), name, "default") == 0) { |
| 264 | goto found; |
| 265 | } |
| 266 | |
| 267 | return -ENOENT; |
| 268 | |
| 269 | found: |
| 270 | /* load the module, if this fails, we're doomed, and we should not try |
| 271 | * to load a different variant. */ |
| 272 | return load(class_id, path, module); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 273 | } |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 274 | |
| 275 | int hw_get_module(const char *id, const struct hw_module_t **module) |
| 276 | { |
| 277 | return hw_get_module_by_class(id, NULL, module); |
| 278 | } |