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> |
| 26 | |
| 27 | #define LOG_TAG "HAL" |
| 28 | #include <utils/Log.h> |
| 29 | |
| 30 | /** Base path of the hal modules */ |
Dan Willemsen | 86389d1 | 2014-02-16 10:07:15 -0800 | [diff] [blame] | 31 | #if defined(__LP64__) |
| 32 | #define HAL_LIBRARY_PATH1 "/system/lib64/hw" |
| 33 | #define HAL_LIBRARY_PATH2 "/vendor/lib64/hw" |
Hung-ying Tyan | 48f57ad | 2015-11-12 11:19:45 +0800 | [diff] [blame] | 34 | #define HAL_LIBRARY_PATH3 "/odm/lib64/hw" |
Dan Willemsen | 86389d1 | 2014-02-16 10:07:15 -0800 | [diff] [blame] | 35 | #else |
Brian Swetland | e755bd4 | 2010-09-19 03:41:01 -0700 | [diff] [blame] | 36 | #define HAL_LIBRARY_PATH1 "/system/lib/hw" |
| 37 | #define HAL_LIBRARY_PATH2 "/vendor/lib/hw" |
Hung-ying Tyan | 48f57ad | 2015-11-12 11:19:45 +0800 | [diff] [blame] | 38 | #define HAL_LIBRARY_PATH3 "/odm/lib/hw" |
Dan Willemsen | 86389d1 | 2014-02-16 10:07:15 -0800 | [diff] [blame] | 39 | #endif |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 40 | |
| 41 | /** |
| 42 | * There are a set of variant filename for modules. The form of the filename |
| 43 | * is "<MODULE_ID>.variant.so" so for the led module the Dream variants |
| 44 | * of base "ro.product.board", "ro.board.platform" and "ro.arch" would be: |
| 45 | * |
| 46 | * led.trout.so |
| 47 | * led.msm7k.so |
| 48 | * led.ARMV6.so |
| 49 | * led.default.so |
| 50 | */ |
| 51 | |
The Android Open Source Project | 8232b50 | 2009-03-13 13:04:23 -0700 | [diff] [blame] | 52 | static const char *variant_keys[] = { |
| 53 | "ro.hardware", /* This goes first so that it can pick up a different |
| 54 | file on the emulator. */ |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 55 | "ro.product.board", |
| 56 | "ro.board.platform", |
Mathias Agopian | cab816f | 2009-09-24 15:11:04 -0700 | [diff] [blame] | 57 | "ro.arch" |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 58 | }; |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 59 | |
| 60 | static const int HAL_VARIANT_KEYS_COUNT = |
| 61 | (sizeof(variant_keys)/sizeof(variant_keys[0])); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 62 | |
| 63 | /** |
Mathias Agopian | 8c4ab1f | 2009-06-11 16:32:05 -0700 | [diff] [blame] | 64 | * 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] | 65 | * return the dlopen handle and the hmi. |
| 66 | * @return 0 = success, !0 = failure. |
| 67 | */ |
| 68 | static int load(const char *id, |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 69 | const char *path, |
| 70 | const struct hw_module_t **pHmi) |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 71 | { |
Andrei V. FOMITCHEV | ec2ddf5 | 2012-10-19 16:26:33 +0200 | [diff] [blame] | 72 | int status = -EINVAL; |
| 73 | void *handle = NULL; |
| 74 | struct hw_module_t *hmi = NULL; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 75 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 76 | /* |
| 77 | * load the symbols resolving undefined symbols before |
| 78 | * dlopen returns. Since RTLD_GLOBAL is not or'd in with |
| 79 | * RTLD_NOW the external symbols will not be global |
| 80 | */ |
| 81 | handle = dlopen(path, RTLD_NOW); |
| 82 | if (handle == NULL) { |
| 83 | char const *err_str = dlerror(); |
Steve Block | 60d056b | 2012-01-08 10:17:53 +0000 | [diff] [blame] | 84 | 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] | 85 | status = -EINVAL; |
| 86 | goto done; |
| 87 | } |
| 88 | |
| 89 | /* Get the address of the struct hal_module_info. */ |
| 90 | const char *sym = HAL_MODULE_INFO_SYM_AS_STR; |
Mathias Agopian | a8a7516 | 2009-04-10 14:24:31 -0700 | [diff] [blame] | 91 | hmi = (struct hw_module_t *)dlsym(handle, sym); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 92 | if (hmi == NULL) { |
Steve Block | 60d056b | 2012-01-08 10:17:53 +0000 | [diff] [blame] | 93 | ALOGE("load: couldn't find symbol %s", sym); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 94 | status = -EINVAL; |
| 95 | goto done; |
| 96 | } |
| 97 | |
| 98 | /* Check that the id matches */ |
| 99 | if (strcmp(id, hmi->id) != 0) { |
Steve Block | 60d056b | 2012-01-08 10:17:53 +0000 | [diff] [blame] | 100 | 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] | 101 | status = -EINVAL; |
| 102 | goto done; |
| 103 | } |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 104 | |
Mathias Agopian | a8a7516 | 2009-04-10 14:24:31 -0700 | [diff] [blame] | 105 | hmi->dso = handle; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 106 | |
| 107 | /* success */ |
| 108 | status = 0; |
| 109 | |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 110 | done: |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 111 | if (status != 0) { |
| 112 | hmi = NULL; |
| 113 | if (handle != NULL) { |
| 114 | dlclose(handle); |
| 115 | handle = NULL; |
| 116 | } |
Mathias Agopian | 6d125da | 2009-07-15 15:01:10 -0700 | [diff] [blame] | 117 | } else { |
Steve Block | 7567eba | 2011-10-20 13:58:15 +0100 | [diff] [blame] | 118 | ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p", |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 119 | id, path, *pHmi, handle); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | *pHmi = hmi; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 123 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 124 | return status; |
| 125 | } |
| 126 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 127 | /* |
| 128 | * Check if a HAL with given name and subname exists, if so return 0, otherwise |
| 129 | * otherwise return negative. On success path will contain the path to the HAL. |
| 130 | */ |
| 131 | static int hw_module_exists(char *path, size_t path_len, const char *name, |
| 132 | const char *subname) |
| 133 | { |
| 134 | snprintf(path, path_len, "%s/%s.%s.so", |
Hung-ying Tyan | 48f57ad | 2015-11-12 11:19:45 +0800 | [diff] [blame] | 135 | HAL_LIBRARY_PATH3, name, subname); |
| 136 | if (access(path, R_OK) == 0) |
| 137 | return 0; |
| 138 | |
| 139 | snprintf(path, path_len, "%s/%s.%s.so", |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 140 | HAL_LIBRARY_PATH2, name, subname); |
| 141 | if (access(path, R_OK) == 0) |
| 142 | return 0; |
| 143 | |
| 144 | snprintf(path, path_len, "%s/%s.%s.so", |
| 145 | HAL_LIBRARY_PATH1, name, subname); |
| 146 | if (access(path, R_OK) == 0) |
| 147 | return 0; |
| 148 | |
| 149 | return -ENOENT; |
| 150 | } |
| 151 | |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 152 | int hw_get_module_by_class(const char *class_id, const char *inst, |
| 153 | const struct hw_module_t **module) |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 154 | { |
Andrei V. FOMITCHEV | ec2ddf5 | 2012-10-19 16:26:33 +0200 | [diff] [blame] | 155 | int i = 0; |
| 156 | char prop[PATH_MAX] = {0}; |
| 157 | char path[PATH_MAX] = {0}; |
| 158 | char name[PATH_MAX] = {0}; |
| 159 | char prop_name[PATH_MAX] = {0}; |
| 160 | |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 161 | |
| 162 | if (inst) |
| 163 | snprintf(name, PATH_MAX, "%s.%s", class_id, inst); |
| 164 | else |
| 165 | strlcpy(name, class_id, PATH_MAX); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 166 | |
| 167 | /* |
| 168 | * Here we rely on the fact that calling dlopen multiple times on |
| 169 | * the same .so will simply increment a refcount (and not load |
| 170 | * a new copy of the library). |
| 171 | * We also assume that dlopen() is thread-safe. |
| 172 | */ |
The Android Open Source Project | 8232b50 | 2009-03-13 13:04:23 -0700 | [diff] [blame] | 173 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 174 | /* First try a property specific to the class and possibly instance */ |
| 175 | snprintf(prop_name, sizeof(prop_name), "ro.hardware.%s", name); |
Colin Cross | f7d761c | 2014-01-13 23:43:23 -0800 | [diff] [blame] | 176 | if (property_get(prop_name, prop, NULL) > 0) { |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 177 | if (hw_module_exists(path, sizeof(path), name, prop) == 0) { |
| 178 | goto found; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 179 | } |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 180 | } |
The Android Open Source Project | 8232b50 | 2009-03-13 13:04:23 -0700 | [diff] [blame] | 181 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 182 | /* Loop through the configuration variants looking for a module */ |
| 183 | for (i=0 ; i<HAL_VARIANT_KEYS_COUNT; i++) { |
| 184 | if (property_get(variant_keys[i], prop, NULL) == 0) { |
| 185 | continue; |
| 186 | } |
| 187 | if (hw_module_exists(path, sizeof(path), name, prop) == 0) { |
| 188 | goto found; |
| 189 | } |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 190 | } |
Mathias Agopian | 3f03e98 | 2009-09-21 22:50:44 -0700 | [diff] [blame] | 191 | |
Colin Cross | 85ab5d1 | 2013-12-26 13:47:56 -0800 | [diff] [blame] | 192 | /* Nothing found, try the default */ |
| 193 | if (hw_module_exists(path, sizeof(path), name, "default") == 0) { |
| 194 | goto found; |
| 195 | } |
| 196 | |
| 197 | return -ENOENT; |
| 198 | |
| 199 | found: |
| 200 | /* load the module, if this fails, we're doomed, and we should not try |
| 201 | * to load a different variant. */ |
| 202 | return load(class_id, path, module); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 203 | } |
Dima Zavin | 54921de | 2011-04-18 10:55:37 -0700 | [diff] [blame] | 204 | |
| 205 | int hw_get_module(const char *id, const struct hw_module_t **module) |
| 206 | { |
| 207 | return hw_get_module_by_class(id, NULL, module); |
| 208 | } |