blob: da89dd9cdb2578e61db82dc5b993b3769f5a500e [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>
26
27#define LOG_TAG "HAL"
28#include <utils/Log.h>
29
30/** Base path of the hal modules */
Brian Swetlande755bd42010-09-19 03:41:01 -070031#define HAL_LIBRARY_PATH1 "/system/lib/hw"
32#define HAL_LIBRARY_PATH2 "/vendor/lib/hw"
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080033
34/**
35 * There are a set of variant filename for modules. The form of the filename
36 * is "<MODULE_ID>.variant.so" so for the led module the Dream variants
37 * of base "ro.product.board", "ro.board.platform" and "ro.arch" would be:
38 *
39 * led.trout.so
40 * led.msm7k.so
41 * led.ARMV6.so
42 * led.default.so
43 */
44
The Android Open Source Project8232b502009-03-13 13:04:23 -070045static const char *variant_keys[] = {
46 "ro.hardware", /* This goes first so that it can pick up a different
47 file on the emulator. */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080048 "ro.product.board",
49 "ro.board.platform",
Mathias Agopiancab816f2009-09-24 15:11:04 -070050 "ro.arch"
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080051};
Mathias Agopian3f03e982009-09-21 22:50:44 -070052
53static const int HAL_VARIANT_KEYS_COUNT =
54 (sizeof(variant_keys)/sizeof(variant_keys[0]));
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080055
56/**
Mathias Agopian8c4ab1f2009-06-11 16:32:05 -070057 * Load the file defined by the variant and if successful
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080058 * return the dlopen handle and the hmi.
59 * @return 0 = success, !0 = failure.
60 */
61static int load(const char *id,
Mathias Agopian3f03e982009-09-21 22:50:44 -070062 const char *path,
63 const struct hw_module_t **pHmi)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080064{
65 int status;
66 void *handle;
Mathias Agopiana8a75162009-04-10 14:24:31 -070067 struct hw_module_t *hmi;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080068
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080069 /*
70 * load the symbols resolving undefined symbols before
71 * dlopen returns. Since RTLD_GLOBAL is not or'd in with
72 * RTLD_NOW the external symbols will not be global
73 */
74 handle = dlopen(path, RTLD_NOW);
75 if (handle == NULL) {
76 char const *err_str = dlerror();
Steve Block60d056b2012-01-08 10:17:53 +000077 ALOGE("load: module=%s\n%s", path, err_str?err_str:"unknown");
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080078 status = -EINVAL;
79 goto done;
80 }
81
82 /* Get the address of the struct hal_module_info. */
83 const char *sym = HAL_MODULE_INFO_SYM_AS_STR;
Mathias Agopiana8a75162009-04-10 14:24:31 -070084 hmi = (struct hw_module_t *)dlsym(handle, sym);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080085 if (hmi == NULL) {
Steve Block60d056b2012-01-08 10:17:53 +000086 ALOGE("load: couldn't find symbol %s", sym);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080087 status = -EINVAL;
88 goto done;
89 }
90
91 /* Check that the id matches */
92 if (strcmp(id, hmi->id) != 0) {
Steve Block60d056b2012-01-08 10:17:53 +000093 ALOGE("load: id=%s != hmi->id=%s", id, hmi->id);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080094 status = -EINVAL;
95 goto done;
96 }
Mathias Agopian3f03e982009-09-21 22:50:44 -070097
Mathias Agopiana8a75162009-04-10 14:24:31 -070098 hmi->dso = handle;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080099
100 /* success */
101 status = 0;
102
Mathias Agopian3f03e982009-09-21 22:50:44 -0700103 done:
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800104 if (status != 0) {
105 hmi = NULL;
106 if (handle != NULL) {
107 dlclose(handle);
108 handle = NULL;
109 }
Mathias Agopian6d125da2009-07-15 15:01:10 -0700110 } else {
Steve Block7567eba2011-10-20 13:58:15 +0100111 ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p",
Mathias Agopian3f03e982009-09-21 22:50:44 -0700112 id, path, *pHmi, handle);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800113 }
114
115 *pHmi = hmi;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800116
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800117 return status;
118}
119
Colin Cross85ab5d12013-12-26 13:47:56 -0800120/*
121 * Check if a HAL with given name and subname exists, if so return 0, otherwise
122 * otherwise return negative. On success path will contain the path to the HAL.
123 */
124static int hw_module_exists(char *path, size_t path_len, const char *name,
125 const char *subname)
126{
127 snprintf(path, path_len, "%s/%s.%s.so",
128 HAL_LIBRARY_PATH2, name, subname);
129 if (access(path, R_OK) == 0)
130 return 0;
131
132 snprintf(path, path_len, "%s/%s.%s.so",
133 HAL_LIBRARY_PATH1, name, subname);
134 if (access(path, R_OK) == 0)
135 return 0;
136
137 return -ENOENT;
138}
139
Dima Zavin54921de2011-04-18 10:55:37 -0700140int hw_get_module_by_class(const char *class_id, const char *inst,
141 const struct hw_module_t **module)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800142{
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800143 int i;
The Android Open Source Project8232b502009-03-13 13:04:23 -0700144 char prop[PATH_MAX];
Mathias Agopian3f03e982009-09-21 22:50:44 -0700145 char path[PATH_MAX];
Dima Zavin54921de2011-04-18 10:55:37 -0700146 char name[PATH_MAX];
Colin Cross85ab5d12013-12-26 13:47:56 -0800147 char prop_name[PATH_MAX];
Dima Zavin54921de2011-04-18 10:55:37 -0700148
149 if (inst)
150 snprintf(name, PATH_MAX, "%s.%s", class_id, inst);
151 else
152 strlcpy(name, class_id, PATH_MAX);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800153
154 /*
155 * Here we rely on the fact that calling dlopen multiple times on
156 * the same .so will simply increment a refcount (and not load
157 * a new copy of the library).
158 * We also assume that dlopen() is thread-safe.
159 */
The Android Open Source Project8232b502009-03-13 13:04:23 -0700160
Colin Cross85ab5d12013-12-26 13:47:56 -0800161 /* First try a property specific to the class and possibly instance */
162 snprintf(prop_name, sizeof(prop_name), "ro.hardware.%s", name);
163 if (property_get(prop_name, prop, NULL) == 0) {
164 if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
165 goto found;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800166 }
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800167 }
The Android Open Source Project8232b502009-03-13 13:04:23 -0700168
Colin Cross85ab5d12013-12-26 13:47:56 -0800169 /* Loop through the configuration variants looking for a module */
170 for (i=0 ; i<HAL_VARIANT_KEYS_COUNT; i++) {
171 if (property_get(variant_keys[i], prop, NULL) == 0) {
172 continue;
173 }
174 if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
175 goto found;
176 }
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800177 }
Mathias Agopian3f03e982009-09-21 22:50:44 -0700178
Colin Cross85ab5d12013-12-26 13:47:56 -0800179 /* Nothing found, try the default */
180 if (hw_module_exists(path, sizeof(path), name, "default") == 0) {
181 goto found;
182 }
183
184 return -ENOENT;
185
186found:
187 /* load the module, if this fails, we're doomed, and we should not try
188 * to load a different variant. */
189 return load(class_id, path, module);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800190}
Dima Zavin54921de2011-04-18 10:55:37 -0700191
192int hw_get_module(const char *id, const struct hw_module_t **module)
193{
194 return hw_get_module_by_class(id, NULL, module);
195}