blob: 224297c43899a9a767ff57d7c6e6909b3b8be93b [file] [log] [blame]
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001/*
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 Willemsen4d53a042017-04-07 14:15:17 -070026#include <stdio.h>
Steven Morelande448a052018-06-25 15:25:32 -070027#include <stdlib.h>
Dan Willemsen4d53a042017-04-07 14:15:17 -070028#include <unistd.h>
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080029
30#define LOG_TAG "HAL"
Dan Willemsen4d53a042017-04-07 14:15:17 -070031#include <log/log.h>
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080032
Jiyong Park4d67d2e2017-05-11 02:15:07 +090033#include <vndksupport/linker.h>
34
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080035/** Base path of the hal modules */
Dan Willemsen86389d12014-02-16 10:07:15 -080036#if defined(__LP64__)
37#define HAL_LIBRARY_PATH1 "/system/lib64/hw"
38#define HAL_LIBRARY_PATH2 "/vendor/lib64/hw"
Hung-ying Tyan48f57ad2015-11-12 11:19:45 +080039#define HAL_LIBRARY_PATH3 "/odm/lib64/hw"
Dan Willemsen86389d12014-02-16 10:07:15 -080040#else
Brian Swetlande755bd42010-09-19 03:41:01 -070041#define HAL_LIBRARY_PATH1 "/system/lib/hw"
42#define HAL_LIBRARY_PATH2 "/vendor/lib/hw"
Hung-ying Tyan48f57ad2015-11-12 11:19:45 +080043#define HAL_LIBRARY_PATH3 "/odm/lib/hw"
Dan Willemsen86389d12014-02-16 10:07:15 -080044#endif
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080045
46/**
47 * There are a set of variant filename for modules. The form of the filename
48 * is "<MODULE_ID>.variant.so" so for the led module the Dream variants
49 * of base "ro.product.board", "ro.board.platform" and "ro.arch" would be:
50 *
51 * led.trout.so
52 * led.msm7k.so
53 * led.ARMV6.so
54 * led.default.so
55 */
56
The Android Open Source Project8232b502009-03-13 13:04:23 -070057static const char *variant_keys[] = {
58 "ro.hardware", /* This goes first so that it can pick up a different
59 file on the emulator. */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080060 "ro.product.board",
61 "ro.board.platform",
Mathias Agopiancab816f2009-09-24 15:11:04 -070062 "ro.arch"
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080063};
Mathias Agopian3f03e982009-09-21 22:50:44 -070064
65static const int HAL_VARIANT_KEYS_COUNT =
66 (sizeof(variant_keys)/sizeof(variant_keys[0]));
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080067
68/**
Mathias Agopian8c4ab1f2009-06-11 16:32:05 -070069 * Load the file defined by the variant and if successful
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080070 * return the dlopen handle and the hmi.
71 * @return 0 = success, !0 = failure.
72 */
73static int load(const char *id,
Mathias Agopian3f03e982009-09-21 22:50:44 -070074 const char *path,
75 const struct hw_module_t **pHmi)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080076{
Andrei V. FOMITCHEVec2ddf52012-10-19 16:26:33 +020077 int status = -EINVAL;
78 void *handle = NULL;
79 struct hw_module_t *hmi = NULL;
Justin Yun8f30cfc2017-11-30 16:45:16 +090080#ifdef __ANDROID_VNDK__
81 const bool try_system = false;
82#else
83 const bool try_system = true;
84#endif
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080085
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080086 /*
87 * load the symbols resolving undefined symbols before
88 * dlopen returns. Since RTLD_GLOBAL is not or'd in with
89 * RTLD_NOW the external symbols will not be global
90 */
Justin Yun8f30cfc2017-11-30 16:45:16 +090091 if (try_system &&
92 strncmp(path, HAL_LIBRARY_PATH1, strlen(HAL_LIBRARY_PATH1)) == 0) {
Justin Yunc5717092017-05-23 16:30:43 +090093 /* If the library is in system partition, no need to check
94 * sphal namespace. Open it with dlopen.
95 */
96 handle = dlopen(path, RTLD_NOW);
97 } else {
98 handle = android_load_sphal_library(path, RTLD_NOW);
99 }
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800100 if (handle == NULL) {
101 char const *err_str = dlerror();
Steve Block60d056b2012-01-08 10:17:53 +0000102 ALOGE("load: module=%s\n%s", path, err_str?err_str:"unknown");
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800103 status = -EINVAL;
104 goto done;
105 }
106
107 /* Get the address of the struct hal_module_info. */
108 const char *sym = HAL_MODULE_INFO_SYM_AS_STR;
Mathias Agopiana8a75162009-04-10 14:24:31 -0700109 hmi = (struct hw_module_t *)dlsym(handle, sym);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800110 if (hmi == NULL) {
Steve Block60d056b2012-01-08 10:17:53 +0000111 ALOGE("load: couldn't find symbol %s", sym);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800112 status = -EINVAL;
113 goto done;
114 }
115
116 /* Check that the id matches */
117 if (strcmp(id, hmi->id) != 0) {
Steve Block60d056b2012-01-08 10:17:53 +0000118 ALOGE("load: id=%s != hmi->id=%s", id, hmi->id);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800119 status = -EINVAL;
120 goto done;
121 }
Mathias Agopian3f03e982009-09-21 22:50:44 -0700122
Mathias Agopiana8a75162009-04-10 14:24:31 -0700123 hmi->dso = handle;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800124
125 /* success */
126 status = 0;
127
Mathias Agopian3f03e982009-09-21 22:50:44 -0700128 done:
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800129 if (status != 0) {
130 hmi = NULL;
131 if (handle != NULL) {
132 dlclose(handle);
133 handle = NULL;
134 }
Mathias Agopian6d125da2009-07-15 15:01:10 -0700135 } else {
Steve Block7567eba2011-10-20 13:58:15 +0100136 ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p",
Mathias Agopian3f03e982009-09-21 22:50:44 -0700137 id, path, *pHmi, handle);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800138 }
139
140 *pHmi = hmi;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800141
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800142 return status;
143}
144
Colin Cross85ab5d12013-12-26 13:47:56 -0800145/*
Steven Morelande448a052018-06-25 15:25:32 -0700146 * If path is in in_path.
147 */
148static bool path_in_path(const char *path, const char *in_path) {
149 char real_path[PATH_MAX];
150 if (realpath(path, real_path) == NULL) return false;
151
152 char real_in_path[PATH_MAX];
153 if (realpath(in_path, real_in_path) == NULL) return false;
154
155 const size_t real_in_path_len = strlen(real_in_path);
156 if (strncmp(real_path, real_in_path, real_in_path_len) != 0) {
157 return false;
158 }
159
160 return strlen(real_path) > real_in_path_len &&
161 real_path[real_in_path_len] == '/';
162}
163
164/*
Colin Cross85ab5d12013-12-26 13:47:56 -0800165 * Check if a HAL with given name and subname exists, if so return 0, otherwise
166 * otherwise return negative. On success path will contain the path to the HAL.
167 */
168static int hw_module_exists(char *path, size_t path_len, const char *name,
169 const char *subname)
170{
171 snprintf(path, path_len, "%s/%s.%s.so",
Hung-ying Tyan48f57ad2015-11-12 11:19:45 +0800172 HAL_LIBRARY_PATH3, name, subname);
Steven Morelande448a052018-06-25 15:25:32 -0700173 if (path_in_path(path, HAL_LIBRARY_PATH3) && access(path, R_OK) == 0)
Hung-ying Tyan48f57ad2015-11-12 11:19:45 +0800174 return 0;
175
176 snprintf(path, path_len, "%s/%s.%s.so",
Colin Cross85ab5d12013-12-26 13:47:56 -0800177 HAL_LIBRARY_PATH2, name, subname);
Steven Morelande448a052018-06-25 15:25:32 -0700178 if (path_in_path(path, HAL_LIBRARY_PATH2) && access(path, R_OK) == 0)
Colin Cross85ab5d12013-12-26 13:47:56 -0800179 return 0;
180
Justin Yun8f30cfc2017-11-30 16:45:16 +0900181#ifndef __ANDROID_VNDK__
Colin Cross85ab5d12013-12-26 13:47:56 -0800182 snprintf(path, path_len, "%s/%s.%s.so",
183 HAL_LIBRARY_PATH1, name, subname);
Steven Morelande448a052018-06-25 15:25:32 -0700184 if (path_in_path(path, HAL_LIBRARY_PATH1) && access(path, R_OK) == 0)
Colin Cross85ab5d12013-12-26 13:47:56 -0800185 return 0;
Justin Yun8f30cfc2017-11-30 16:45:16 +0900186#endif
Colin Cross85ab5d12013-12-26 13:47:56 -0800187
188 return -ENOENT;
189}
190
Dima Zavin54921de2011-04-18 10:55:37 -0700191int hw_get_module_by_class(const char *class_id, const char *inst,
192 const struct hw_module_t **module)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800193{
Andrei V. FOMITCHEVec2ddf52012-10-19 16:26:33 +0200194 int i = 0;
195 char prop[PATH_MAX] = {0};
196 char path[PATH_MAX] = {0};
197 char name[PATH_MAX] = {0};
198 char prop_name[PATH_MAX] = {0};
199
Dima Zavin54921de2011-04-18 10:55:37 -0700200
201 if (inst)
202 snprintf(name, PATH_MAX, "%s.%s", class_id, inst);
203 else
204 strlcpy(name, class_id, PATH_MAX);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800205
206 /*
207 * Here we rely on the fact that calling dlopen multiple times on
208 * the same .so will simply increment a refcount (and not load
209 * a new copy of the library).
210 * We also assume that dlopen() is thread-safe.
211 */
The Android Open Source Project8232b502009-03-13 13:04:23 -0700212
Colin Cross85ab5d12013-12-26 13:47:56 -0800213 /* First try a property specific to the class and possibly instance */
214 snprintf(prop_name, sizeof(prop_name), "ro.hardware.%s", name);
Colin Crossf7d761c2014-01-13 23:43:23 -0800215 if (property_get(prop_name, prop, NULL) > 0) {
Colin Cross85ab5d12013-12-26 13:47:56 -0800216 if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
217 goto found;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800218 }
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800219 }
The Android Open Source Project8232b502009-03-13 13:04:23 -0700220
Colin Cross85ab5d12013-12-26 13:47:56 -0800221 /* Loop through the configuration variants looking for a module */
222 for (i=0 ; i<HAL_VARIANT_KEYS_COUNT; i++) {
223 if (property_get(variant_keys[i], prop, NULL) == 0) {
224 continue;
225 }
226 if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
227 goto found;
228 }
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800229 }
Mathias Agopian3f03e982009-09-21 22:50:44 -0700230
Colin Cross85ab5d12013-12-26 13:47:56 -0800231 /* Nothing found, try the default */
232 if (hw_module_exists(path, sizeof(path), name, "default") == 0) {
233 goto found;
234 }
235
236 return -ENOENT;
237
238found:
239 /* load the module, if this fails, we're doomed, and we should not try
240 * to load a different variant. */
241 return load(class_id, path, module);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800242}
Dima Zavin54921de2011-04-18 10:55:37 -0700243
244int hw_get_module(const char *id, const struct hw_module_t **module)
245{
246 return hw_get_module_by_class(id, NULL, module);
247}