Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0931ebd authored by Colin Cross's avatar Colin Cross
Browse files

Add tests for multiton issue

Test accessing a singleton from two libraries, the second of which
depends on the first but is dlopen'd after the first is already
loaded.

Bug: 35674422
Test: out/host/linux-x86/nativetest64/libutils_tests/libutils_tests
Change-Id: I975ba933a19b941a52bdb6e9c221a6910ffb8081
parent bb3a515f
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ cc_test {
    srcs: [
        "BitSet_test.cpp",
        "LruCache_test.cpp",
        "Singleton_test.cpp",
        "String8_test.cpp",
        "StrongPointer_test.cpp",
        "Unicode_test.cpp",
@@ -42,6 +43,8 @@ cc_test {
                "liblog",
                "libcutils",
                "libutils",
                "libbase",
                "libdl",
            ],
        },
        linux: {
@@ -54,13 +57,35 @@ cc_test {
            static_libs: [
                "libutils",
                "liblog",
                "libbase",
            ],
            host_ldlibs: ["-ldl"],
        },
    },

    required: [
        "libutils_tests_singleton1",
        "libutils_tests_singleton2",
    ],

    cflags: [
        "-Wall",
        "-Wextra",
        "-Werror",
    ],
}

cc_test_library {
    name: "libutils_tests_singleton1",
    host_supported: true,
    relative_install_path: "libutils_tests",
    srcs: ["Singleton_test1.cpp"],
}

cc_test_library {
    name: "libutils_tests_singleton2",
    host_supported: true,
    relative_install_path: "libutils_tests",
    srcs: ["Singleton_test2.cpp"],
    shared_libs: ["libutils_tests_singleton1"],
}
+69 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#define LOG_TAG "Singleton_test"

#include <dlfcn.h>

#include <android-base/file.h>
#include <android-base/stringprintf.h>
#include <utils/Singleton.h>

#include <gtest/gtest.h>

#include "Singleton_test.h"

namespace android {

TEST(SingletonTest, bug35674422) {
    std::string path = android::base::GetExecutableDirectory();
    // libutils_tests_singleton1.so contains the ANDROID_SINGLETON_STATIC_INSTANCE
    // definition of SingletonTestData, load it first.
    std::string lib = android::base::StringPrintf("%s/libutils_tests_singleton1.so", path.c_str());
    void* handle1 = dlopen(lib.c_str(), RTLD_NOW);
    ASSERT_TRUE(handle1 != nullptr) << dlerror();

    // libutils_tests_singleton2.so references SingletonTestData but should not
    // have a definition
    lib = android::base::StringPrintf("%s/libutils_tests_singleton2.so", path.c_str());
    void* handle2 = dlopen(lib.c_str(), RTLD_NOW);
    ASSERT_TRUE(handle2 != nullptr) << dlerror();

    using has_fn_t = decltype(&singletonHasInstance);
    using get_fn_t = decltype(&singletonGetInstanceContents);
    using set_fn_t = decltype(&singletonSetInstanceContents);

    has_fn_t has1 = reinterpret_cast<has_fn_t>(dlsym(handle1, "singletonHasInstance"));
    ASSERT_TRUE(has1 != nullptr) << dlerror();
    has_fn_t has2 = reinterpret_cast<has_fn_t>(dlsym(handle2, "singletonHasInstance"));
    ASSERT_TRUE(has2 != nullptr) << dlerror();
    get_fn_t get1 = reinterpret_cast<get_fn_t>(dlsym(handle1, "singletonGetInstanceContents"));
    ASSERT_TRUE(get1 != nullptr) << dlerror();
    get_fn_t get2 = reinterpret_cast<get_fn_t>(dlsym(handle2, "singletonGetInstanceContents"));
    ASSERT_TRUE(get2 != nullptr) << dlerror();
    set_fn_t set1 = reinterpret_cast<set_fn_t>(dlsym(handle2, "singletonSetInstanceContents"));
    ASSERT_TRUE(set1 != nullptr) << dlerror();

    EXPECT_FALSE(has1());
    EXPECT_FALSE(has2());
    set1(12345678U);
    EXPECT_TRUE(has1());
    EXPECT_TRUE(has2());
    EXPECT_EQ(12345678U, get1());
    EXPECT_EQ(12345678U, get2());
}

}
+41 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef ANDROID_UTILS_SINGLETON_TEST_H
#define ANDROID_UTILS_SINGLETON_TEST_H

#include <sys/cdefs.h>

#include "Singleton_test.h"

namespace android {

struct SingletonTestData : Singleton<SingletonTestData> {
    unsigned int contents;
};

__BEGIN_DECLS

unsigned int singletonGetInstanceContents();
void singletonSetInstanceContents(unsigned int);
bool singletonHasInstance();

__END_DECLS

}

#endif // ANDROID_UTILS_SINGLETON_TEST_H
+39 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <utils/Singleton.h>

#include "Singleton_test.h"

namespace android {

// Singleton<SingletonTestStruct> is referenced in Singleton_test1.cpp and
// Singleton_test2.cpp, but only defined in Singleton_test1.cpp.
ANDROID_SINGLETON_STATIC_INSTANCE(SingletonTestData);

void singletonSetInstanceContents(unsigned int contents) {
    SingletonTestData::getInstance().contents = contents;
}

unsigned int singletonGetInstanceContents() {
    return SingletonTestData::getInstance().contents;
}

bool singletonHasInstance() {
    return SingletonTestData::hasInstance();
}

}
+38 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <utils/Singleton.h>

#include "Singleton_test.h"

namespace android {

// Singleton<SingletonTestStruct> is referenced in Singleton_test1.cpp and
// Singleton_test2.cpp, but only defined in Singleton_test1.cpp.

void singletonSetInstanceContents(unsigned int contents) {
    SingletonTestData::getInstance().contents = contents;
}

unsigned int singletonGetInstanceContents() {
    return SingletonTestData::getInstance().contents;
}

bool singletonHasInstance() {
    return SingletonTestData::hasInstance();
}

}