/* * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved. * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. 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. * * 3. Neither the name of the copyright holder nor the names of its contributors may be used * to endorse or promote products derived from this software without specific prior written * permission. * * 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 HOLDER 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. */ /** * @defgroup dynload Dynamic loading * @ingroup kernel */ #ifndef _LOS_LD_ELFLIB_H #define _LOS_LD_ELFLIB_H #include "los_typedef.h" #ifdef __cplusplus #if __cplusplus extern "C" { #endif /* __cplusplus */ #endif /* __cplusplus */ /** * @ingroup dynload * @brief Set the memory pool address used by dynload * * @par Description: * This API is used to set the memory pool address used by dynload. * @attention * * * @param memPool [IN] the memory pool address. * * @retval TRUE Set successful. * @retval FLASE Set failed. * @par Dependency: * * @see LOS_ModuleUnload */ extern BOOL LOS_DynMemPoolSet(VOID *memPool); /** * @ingroup dynload * @brief Load a shared object file. * * @par Description: * This API is used to load a shared object file under a particular module file path. * @attention * * * @param elfFileName [IN] Shared object file path. * * @retval NULL The shared object file fails to be loaded. * @retval VOID* The shared object file is successfully loaded. * @par Dependency: * * @see LOS_ModuleUnload */ extern VOID *LOS_SoLoad(CHAR *elfFileName); /** * @ingroup dynload * @brief Load an object file. * * @par Description: * This API is used to load an object file under a particular module file path. * @attention * * * @param elfFileName [IN] Object file path. * * @retval NULL The object file fails to be loaded. * @retval VOID* The object file is successfully loaded. * @par Dependency: * * @see LOS_ModuleUnload */ extern VOID *LOS_ObjLoad(CHAR *elfFileName); /** * @ingroup dynload * @brief Unload a module. * * @par Description: * This API is used to unload a module with a particular module handle. * @attention * * * @param handle [IN] Module handle. * * @retval #LOS_NOK The module fails to be unloaded. * @retval #LOS_OK The module is successfully unloaded. * @par Dependency: * * @see LOS_ObjLoad */ extern INT32 LOS_ModuleUnload(VOID *handle); /** * @ingroup dynload * @brief Destroy a dynamic loader. * * @par Description: * This API is used to destroy a dynamic linker. * @attention * * * @param None. * * @retval None. * @par Dependency: * * @see LOS_FindSymByName */ extern VOID LOS_LdDestroy(VOID); /** * @ingroup dynload * @brief Search for a symbol address. * * @par Description: * This API is used to search for the address of a symbol according to a particular module handle and symbol name. * @attention * * * @param handle [IN] Module handle. * @param name [IN] Name of the symbol to be searched for. * * @retval NULL The symbol address is not found. * @retval VOID* Symbol address. * @par Dependency: * * @see LOS_LdDestroy */ extern VOID *LOS_FindSymByName(VOID *handle, CHAR *name); /** * @ingroup dynload * @brief Add a default path. * * @par Description: * This API is used to add a path to default paths. * @attention * * * @param path [IN] Path to be added to default paths. * * @retval #LOS_NOK The path is added unsuccessfully. * @retval #LOS_OK The path is added successfully. * @par Dependency: * * @see LOS_FindSymByName | LOS_LdDestroy */ extern INT32 LOS_PathAdd(CHAR *path); /** * @ingroup dynload * Define an enum type indicates load strategy. * * Type of load strategy of dynamic load, ZIP means using zipped shared object, NOZIP means using normal shared object. */ enum LOAD_STRATEGY { ZIP, NOZIP }; /** * @ingroup dynload * Define the structure of the parameters used for dynamic. * * Information of specified parameters passed in during dynamic load. */ typedef struct tagDynloadParam { enum LOAD_STRATEGY enLoadStrategy; } DYNLOAD_PARAM_S; /** * @ingroup dynload * @brief Register the dynamic parameters. * * @par Description: * This API is used to register the dynamic load parameters. * @attention * * * @param dynloadParam [IN] dynamic load parameters to be registered. * * @par Dependency: * * @see LOS_FindSymByName | LOS_LdDestroy */ extern VOID LOS_DynParamReg(DYNLOAD_PARAM_S *dynloadParam); #ifdef __cplusplus #if __cplusplus } #endif /* __cplusplus */ #endif /* __cplusplus */ #endif /* _LOS_LD_ELFLIB_H */