2015-05-22 02:43:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
2017-02-16 00:31:13 +01:00
|
|
|
* All rights reserved.
|
2015-05-22 02:43:49 +02:00
|
|
|
*
|
2017-02-16 00:31:13 +01:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2015-05-22 02:43:49 +02:00
|
|
|
*
|
2017-02-16 00:31:13 +01:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2015-05-22 02:43:49 +02:00
|
|
|
*/
|
|
|
|
|
2019-08-09 13:15:40 +02:00
|
|
|
#include <atomic>
|
2019-08-07 04:23:45 +02:00
|
|
|
|
2019-08-21 02:59:14 +02:00
|
|
|
#include <android/api-level.h>
|
|
|
|
#include <android/fdsan.h>
|
|
|
|
|
2021-03-05 22:31:41 +01:00
|
|
|
#include "private/bionic_globals.h"
|
|
|
|
|
2019-08-21 02:59:14 +02:00
|
|
|
#include "linker.h"
|
|
|
|
|
2018-11-13 01:01:37 +01:00
|
|
|
static std::atomic<int> g_target_sdk_version(__ANDROID_API__);
|
2015-05-22 02:43:49 +02:00
|
|
|
|
2018-11-13 01:01:37 +01:00
|
|
|
void set_application_target_sdk_version(int target) {
|
2015-06-17 00:38:21 +02:00
|
|
|
// translate current sdk_version to platform sdk_version
|
|
|
|
if (target == 0) {
|
|
|
|
target = __ANDROID_API__;
|
|
|
|
}
|
2015-05-22 02:43:49 +02:00
|
|
|
g_target_sdk_version = target;
|
2019-08-21 02:59:14 +02:00
|
|
|
|
|
|
|
if (target < 30) {
|
|
|
|
android_fdsan_set_error_level_from_property(ANDROID_FDSAN_ERROR_LEVEL_WARN_ONCE);
|
|
|
|
}
|
2021-03-05 22:31:41 +01:00
|
|
|
if (__libc_shared_globals()->set_target_sdk_version_hook) {
|
|
|
|
__libc_shared_globals()->set_target_sdk_version_hook(target);
|
|
|
|
}
|
2015-05-22 02:43:49 +02:00
|
|
|
}
|
|
|
|
|
2018-11-13 01:01:37 +01:00
|
|
|
int get_application_target_sdk_version() {
|
2015-05-22 02:43:49 +02:00
|
|
|
return g_target_sdk_version;
|
|
|
|
}
|
|
|
|
|