blob: 04154489af02e107bbcbb5e80794124a9d63b777 [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 */
31#define HAL_LIBRARY_PATH "/system/lib/hw"
32
33/**
34 * There are a set of variant filename for modules. The form of the filename
35 * is "<MODULE_ID>.variant.so" so for the led module the Dream variants
36 * of base "ro.product.board", "ro.board.platform" and "ro.arch" would be:
37 *
38 * led.trout.so
39 * led.msm7k.so
40 * led.ARMV6.so
41 * led.default.so
42 */
43
The Android Open Source Project8232b502009-03-13 13:04:23 -070044static const char *variant_keys[] = {
45 "ro.hardware", /* This goes first so that it can pick up a different
46 file on the emulator. */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080047 "ro.product.board",
48 "ro.board.platform",
Mathias Agopiancab816f2009-09-24 15:11:04 -070049 "ro.arch"
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080050};
Mathias Agopian3f03e982009-09-21 22:50:44 -070051
52static const int HAL_VARIANT_KEYS_COUNT =
53 (sizeof(variant_keys)/sizeof(variant_keys[0]));
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080054
55/**
Mathias Agopian8c4ab1f2009-06-11 16:32:05 -070056 * Load the file defined by the variant and if successful
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080057 * return the dlopen handle and the hmi.
58 * @return 0 = success, !0 = failure.
59 */
60static int load(const char *id,
Mathias Agopian3f03e982009-09-21 22:50:44 -070061 const char *path,
62 const struct hw_module_t **pHmi)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080063{
64 int status;
65 void *handle;
Mathias Agopiana8a75162009-04-10 14:24:31 -070066 struct hw_module_t *hmi;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080067
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080068 /*
69 * load the symbols resolving undefined symbols before
70 * dlopen returns. Since RTLD_GLOBAL is not or'd in with
71 * RTLD_NOW the external symbols will not be global
72 */
73 handle = dlopen(path, RTLD_NOW);
74 if (handle == NULL) {
75 char const *err_str = dlerror();
Mathias Agopian3f03e982009-09-21 22:50:44 -070076 LOGE("load: module=%s\n%s", path, err_str?err_str:"unknown");
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080077 status = -EINVAL;
78 goto done;
79 }
80
81 /* Get the address of the struct hal_module_info. */
82 const char *sym = HAL_MODULE_INFO_SYM_AS_STR;
Mathias Agopiana8a75162009-04-10 14:24:31 -070083 hmi = (struct hw_module_t *)dlsym(handle, sym);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080084 if (hmi == NULL) {
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080085 LOGE("load: couldn't find symbol %s", sym);
86 status = -EINVAL;
87 goto done;
88 }
89
90 /* Check that the id matches */
91 if (strcmp(id, hmi->id) != 0) {
92 LOGE("load: id=%s != hmi->id=%s", id, hmi->id);
93 status = -EINVAL;
94 goto done;
95 }
Mathias Agopian3f03e982009-09-21 22:50:44 -070096
Mathias Agopiana8a75162009-04-10 14:24:31 -070097 hmi->dso = handle;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080098
99 /* success */
100 status = 0;
101
Mathias Agopian3f03e982009-09-21 22:50:44 -0700102 done:
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800103 if (status != 0) {
104 hmi = NULL;
105 if (handle != NULL) {
106 dlclose(handle);
107 handle = NULL;
108 }
Mathias Agopian6d125da2009-07-15 15:01:10 -0700109 } else {
110 LOGV("loaded HAL id=%s path=%s hmi=%p handle=%p",
Mathias Agopian3f03e982009-09-21 22:50:44 -0700111 id, path, *pHmi, handle);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800112 }
113
114 *pHmi = hmi;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800115
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800116 return status;
117}
118
119int hw_get_module(const char *id, const struct hw_module_t **module)
120{
121 int status;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800122 int i;
The Android Open Source Project8232b502009-03-13 13:04:23 -0700123 const struct hw_module_t *hmi = NULL;
124 char prop[PATH_MAX];
Mathias Agopian3f03e982009-09-21 22:50:44 -0700125 char path[PATH_MAX];
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800126
127 /*
128 * Here we rely on the fact that calling dlopen multiple times on
129 * the same .so will simply increment a refcount (and not load
130 * a new copy of the library).
131 * We also assume that dlopen() is thread-safe.
132 */
The Android Open Source Project8232b502009-03-13 13:04:23 -0700133
134 /* Loop through the configuration variants looking for a module */
Mathias Agopiancab816f2009-09-24 15:11:04 -0700135 for (i=0 ; i<HAL_VARIANT_KEYS_COUNT+1 ; i++) {
136 if (i < HAL_VARIANT_KEYS_COUNT) {
137 if (property_get(variant_keys[i], prop, NULL) == 0) {
138 continue;
139 }
140 snprintf(path, sizeof(path), "%s/%s.%s.so",
141 HAL_LIBRARY_PATH, id, prop);
142 } else {
143 snprintf(path, sizeof(path), "%s/%s.default.so",
144 HAL_LIBRARY_PATH, id);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800145 }
Mathias Agopian3f03e982009-09-21 22:50:44 -0700146 if (access(path, R_OK)) {
147 continue;
148 }
149 /* we found a library matching this id/variant */
150 break;
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800151 }
The Android Open Source Project8232b502009-03-13 13:04:23 -0700152
Mathias Agopian3f03e982009-09-21 22:50:44 -0700153 status = -ENOENT;
154 if (i < HAL_VARIANT_KEYS_COUNT) {
155 /* load the module, if this fails, we're doomed, and we should not try
156 * to load a different variant. */
157 status = load(id, path, module);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800158 }
Mathias Agopian3f03e982009-09-21 22:50:44 -0700159
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800160 return status;
161}