blob: d9da32a599a1d71a2e3b2f64eb0c7231cf115ba1 [file] [log] [blame]
Dmitriy Ivanovd97e9f52014-06-29 12:28:37 -07001/*
2 * Copyright (C) 2014 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 <stdlib.h>
18#include <dlfcn.h>
19#include <stdio.h>
20
21extern const uint32_t private_taxicab_number;
22
23extern "C" {
24uint32_t dlsym_local_symbol_get_taxicab_number();
25uint32_t dlsym_local_symbol_get_taxicab_number_using_dlsym();
26}
27
28uint32_t dlsym_local_symbol_get_taxicab_number() {
29 return private_taxicab_number;
30}
31
32// Let's make sure that dlsym works correctly for local symbol
33uint32_t dlsym_local_symbol_get_taxicab_number_using_dlsym() {
34 dlerror();
35 uint32_t* ptr = reinterpret_cast<uint32_t*>(dlsym(RTLD_DEFAULT, "private_taxicab_number"));
36 if (ptr == nullptr) {
37 const char* dlerr = dlerror();
38 if (dlerr != nullptr) {
39 fprintf(stderr, "dlsym error: %s\n", dlerr);
40 } else {
41 fprintf(stderr, "dlsym returned NULL with no dlerror.\n");
42 }
43 return 0;
44 }
45
46 return *ptr;
47}