OSDN Git Service

reconcile korg/master into goog/master
[android-x86/hardware-libhardware.git] / hardware.c
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 */
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
44 #define HAL_DEFAULT_VARIANT     "default"
45 static const char *variant_keys[] = {
46     "ro.hardware",  /* This goes first so that it can pick up a different
47                        file on the emulator. */
48     "ro.product.board",
49     "ro.board.platform",
50     "ro.arch"
51 };
52 #define HAL_VARIANT_KEYS_COUNT  (sizeof(variant_keys)/sizeof(variant_keys[0]))
53
54 /**
55  * Load the file defined by the variant and if successful
56  * return the dlopen handle and the hmi.
57  * @return 0 = success, !0 = failure.
58  */
59 static int load(const char *id,
60                 const char *variant,
61                 const struct hw_module_t **pHmi)
62 {
63     int status;
64     void *handle;
65     struct hw_module_t *hmi;
66     char path[PATH_MAX];
67
68     /* Construct the path. */
69     snprintf(path, sizeof(path), "%s/%s.%s.so", HAL_LIBRARY_PATH, id, variant);
70
71     /*
72      * load the symbols resolving undefined symbols before
73      * dlopen returns. Since RTLD_GLOBAL is not or'd in with
74      * RTLD_NOW the external symbols will not be global
75      */
76     handle = dlopen(path, RTLD_NOW);
77     if (handle == NULL) {
78         char const *err_str = dlerror();
79         //LOGW("load: module=%s error=%s", path, err_str);
80         status = -EINVAL;
81         goto done;
82     }
83
84     /* Get the address of the struct hal_module_info. */
85     const char *sym = HAL_MODULE_INFO_SYM_AS_STR;
86     hmi = (struct hw_module_t *)dlsym(handle, sym);
87     if (hmi == NULL) {
88         char const *err_str = dlerror();
89         LOGE("load: couldn't find symbol %s", sym);
90         status = -EINVAL;
91         goto done;
92     }
93
94     /* Check that the id matches */
95     if (strcmp(id, hmi->id) != 0) {
96         LOGE("load: id=%s != hmi->id=%s", id, hmi->id);
97         status = -EINVAL;
98         goto done;
99     }
100     
101     hmi->dso = handle;
102
103     /* success */
104     status = 0;
105
106 done:
107     if (status != 0) {
108         hmi = NULL;
109         if (handle != NULL) {
110             dlclose(handle);
111             handle = NULL;
112         }
113     } else {
114         LOGV("loaded HAL id=%s path=%s hmi=%p handle=%p",
115              id, path, *pHmi, handle);
116     }
117
118     *pHmi = hmi;
119
120     return status;
121 }
122
123 int hw_get_module(const char *id, const struct hw_module_t **module) 
124 {
125     int status;
126     int i;
127     const struct hw_module_t *hmi = NULL;
128     char prop[PATH_MAX];
129
130     /*
131      * Here we rely on the fact that calling dlopen multiple times on
132      * the same .so will simply increment a refcount (and not load
133      * a new copy of the library).
134      * We also assume that dlopen() is thread-safe.
135      */
136     
137     status = -EINVAL;
138
139     /* Loop through the configuration variants looking for a module */
140     for (i = 0; (status != 0) && (i < HAL_VARIANT_KEYS_COUNT); i++) {
141         if (property_get(variant_keys[i], prop, NULL) == 0) {
142             continue;
143         }
144         status = load(id, prop, &hmi);
145     }
146
147     /* Try default */
148     if (status != 0) {
149         status = load(id, HAL_DEFAULT_VARIANT, &hmi);
150     }
151     
152     *module = hmi;
153     return status;
154 }