tbm_bufmgr: add tbm_bufmgr_internal_import_bo_with_fd and use it
[platform/core/uifw/libtbm.git] / src / tbm_bufmgr.c
index c9872df..a056c03 100644 (file)
@@ -33,7 +33,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 #include "tbm_bufmgr.h"
 #include "tbm_bufmgr_int.h"
-#include "tbm_bufmgr_backend.h"
+#include "tbm_drm_helper.h"
 #include "list.h"
 
 #include <sys/resource.h>
@@ -54,22 +54,6 @@ void _tbm_bufmgr_mutex_unlock(void);
 
 //#define TBM_BUFMGR_INIT_TIME
 
-#define PREFIX_LIB    "libtbm_"
-#define SUFFIX_LIB    ".so"
-#define DEFAULT_LIB   PREFIX_LIB"default"SUFFIX_LIB
-
-/* values to indicate unspecified fields in XF86ModReqInfo. */
-#define MAJOR_UNSPEC      0xFF
-#define MINOR_UNSPEC      0xFF
-#define PATCH_UNSPEC      0xFFFF
-#define ABI_VERS_UNSPEC   0xFFFFFFFF
-
-#define MODULE_VERSION_NUMERIC(maj, min, patch) \
-                       ((((maj) & 0xFF) << 24) | (((min) & 0xFF) << 16) | (patch & 0xFFFF))
-#define GET_MODULE_MAJOR_VERSION(vers)    (((vers) >> 24) & 0xFF)
-#define GET_MODULE_MINOR_VERSION(vers)    (((vers) >> 16) & 0xFF)
-#define GET_MODULE_PATCHLEVEL(vers)    ((vers) & 0xFFFF)
-
 #define MAX_SIZE_N(dest)       (sizeof(dest) - strlen(dest) - 1)
 
 /* check condition */
@@ -93,6 +77,33 @@ void _tbm_bufmgr_mutex_unlock(void);
 
 /* LCOV_EXCL_START */
 
+static void
+_tbm_bufmgr_check_bo_cnt(tbm_bufmgr bufmgr)
+{
+       static int last_chk_bo_cnt = 0;
+
+       if ((bufmgr->bo_cnt >= 500) && ((bufmgr->bo_cnt % 20) == 0) &&
+               (bufmgr->bo_cnt > last_chk_bo_cnt)) {
+               TBM_DBG("============TBM BO CNT DEBUG: bo_cnt=%d\n", bufmgr->bo_cnt);
+               tbm_bufmgr_debug_show(bufmgr);
+               last_chk_bo_cnt = bufmgr->bo_cnt;
+       }
+}
+
+static void
+_tbm_bufmgr_initialize_bo(tbm_bufmgr bufmgr, tbm_bo bo, int flags)
+{
+       bo->bufmgr = bufmgr;
+       bo->flags = flags;
+       bo->magic = TBM_BO_MAGIC;
+       bo->ref_cnt = 1;
+
+       LIST_INITHEAD(&bo->user_data_list);
+
+       bufmgr->bo_cnt++;
+       LIST_ADD(&bo->item_link, &bufmgr->bo_list);
+}
+
 void
 _tbm_bufmgr_mutex_lock(void)
 {
@@ -184,347 +195,48 @@ _tbm_util_get_appname_from_pid(long pid, char *str)
        snprintf(str, sizeof(cmdline), "%s", cmdline);
 }
 
-static int
-_tbm_backend_load_hal_tbm(tbm_bufmgr bufmgr)
-{
-       hal_tbm_backend *hal_backend = NULL;
-       hal_tbm_bufmgr_capability capability;
-       hal_tbm_bufmgr *hal_bufmgr;
-       hal_tbm_error ret = HAL_TBM_ERROR_NONE;
-
-       hal_backend = hal_tbm_get_backend(&ret);
-       if (hal_backend == NULL || ret != HAL_TBM_ERROR_NONE) {
-               TBM_ERR("get backend fail");
-               return 0;
-       }
-
-       hal_bufmgr = hal_tbm_backend_get_bufmgr(hal_backend, &ret);
-       if (hal_bufmgr == NULL || ret != HAL_TBM_ERROR_NONE) {
-               TBM_ERR("get hal_bufmgr fail");
-               goto get_backend_fail;
-       }
-
-       capability = hal_tbm_bufmgr_get_capabilities(hal_bufmgr, &ret);
-       if (ret != HAL_TBM_ERROR_NONE) {
-               TBM_ERR("hal_tbm_bufmgr_get_capabilities fail.");
-               goto get_backend_fail;
-       }
-
-       if (capability == HAL_TBM_BUFMGR_CAPABILITY_NONE) {
-               TBM_ERR("The capabilities of the backend module is TBM_BUFMGR_CAPABILITY_NONE.");
-               TBM_ERR("TBM_BUFMGR_CAPABILITY_SHARE_FD is the essential capability.");
-               goto get_backend_fail;
-       }
-       if (!(capability & HAL_TBM_BUFMGR_CAPABILITY_SHARE_FD)) {
-               TBM_ERR("The capabilities of the backend module had no TBM_BUFMGR_CAPABILITY_SHARE_FD.");
-               TBM_ERR("The tbm backend has to get TBM_BUFMGR_CAPABILITY_SHARE_FD. ");
-               goto get_backend_fail;
-       }
-       bufmgr->capabilities = capability;
-
-       bufmgr->hal_backend = hal_backend;
-       bufmgr->hal_bufmgr = hal_bufmgr;
-
-       bufmgr->use_hal_tbm = 1;
-
-       TBM_INFO("use hal tbm");
-
-       return 1;
-
-get_backend_fail:
-       hal_tbm_put_backend(hal_backend);
-       return 0;
-}
-
-static int
-_check_version(TBMModuleVersionInfo *data)
-{
-       int backend_module_major, backend_module_minor;
-       int tbm_backend_major, tbm_backend_minor;
-
-       backend_module_major = GET_ABI_MAJOR(data->abiversion);
-       backend_module_minor = GET_ABI_MINOR(data->abiversion);
-
-       TBM_DBG("TBM module %s: vendor=\"%s\" ABI=%d,%d\n",
-           data->modname ? data->modname : "UNKNOWN!",
-           data->vendor ? data->vendor : "UNKNOWN!", backend_module_major, backend_module_minor);
-
-       tbm_backend_major = GET_ABI_MAJOR(TBM_ABI_VERSION);
-       tbm_backend_minor = GET_ABI_MINOR(TBM_ABI_VERSION);
-
-       TBM_DBG("TBM ABI version %d.%d\n",
-           tbm_backend_major, tbm_backend_minor);
-
-       if (backend_module_major != tbm_backend_major) {
-               TBM_ERR("TBM module ABI major ver(%d) doesn't match the TBM's ver(%d)\n",
-                       backend_module_major, tbm_backend_major);
-               return 0;
-       } else if (backend_module_minor > tbm_backend_minor) {
-               TBM_ERR("TBM module ABI minor ver(%d) is newer than the TBM's ver(%d)\n",
-                       backend_module_minor, tbm_backend_minor);
-               return 0;
-       }
-
-       return 1;
-}
-
-static int
-_tbm_backend_check_bufmgr_func(tbm_backend_bufmgr_func *bufmgr_func)
-{
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func->bufmgr_get_capabilities, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func->bufmgr_bind_native_display, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func->bufmgr_get_supported_formats, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func->bufmgr_get_plane_data, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func->bufmgr_alloc_bo, 0); /* mandatory symbol */
-       if (!bufmgr_func->bufmgr_alloc_bo_with_format)
-               TBM_DBG("No bufmgr_func->bufmgr_alloc_bo_with_format.");
-       TBM_RETURN_VAL_IF_FAIL(bufmgr_func->bufmgr_import_fd, 0); /* mandatory symbol */
-       if (!bufmgr_func->bufmgr_import_key)
-               TBM_DBG("No bufmgr_func->bo_export_key.");
-
-       return 1;
-}
-
-static int
-_tbm_backend_check_bufmgr_bo(tbm_backend_bo_func *bo_func)
-{
-       TBM_RETURN_VAL_IF_FAIL(bo_func, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_free, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_get_size, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_get_memory_types, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_get_handle, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_map, 0); /* mandatory symbol */
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_unmap, 0); /* mandatory symbol */
-       if (!bo_func->bo_lock)
-               TBM_DBG("No bo_func->bo_lock.");
-       if (!bo_func->bo_unlock)
-               TBM_DBG("No bo_func->bo_unlock.");
-       TBM_RETURN_VAL_IF_FAIL(bo_func->bo_export_fd, 0); /* mandatory symbol */
-       if (!bo_func->bo_export_key)
-               TBM_INFO("No bo_func->bo_export_key.");
-
-       return 1;
-}
-
-static int
-_tbm_backend_load_module(tbm_bufmgr bufmgr, const char *file)
-{
-       char path[PATH_MAX] = {0, };
-       void *module_data = NULL;
-       tbm_backend_module *backend_module_data = NULL;
-       tbm_backend_bufmgr_data *bufmgr_data = NULL;
-       int backend_module_major, backend_module_minor;
-       int tbm_backend_major, tbm_backend_minor;
-       tbm_error_e error;
-
-       snprintf(path, sizeof(path), BUFMGR_MODULE_DIR "/%s", file);
-
-       module_data = dlopen(path, RTLD_LAZY);
-       if (!module_data) {
-               TBM_ERR("failed to load module: %s(%s)\n", dlerror(), file);
-               return 0;
-       }
-
-       backend_module_data = dlsym(module_data, "tbm_backend_module_data");
-       if (!backend_module_data) {
-               TBM_ERR("Error: module does not have data object.\n");
-               goto err;
-       }
-
-       tbm_backend_major = GET_ABI_MAJOR(TBM_BACKEND_ABI_LATEST_VERSION);
-       tbm_backend_minor = GET_ABI_MINOR(TBM_BACKEND_ABI_LATEST_VERSION);
-       TBM_INFO("TBM Backend ABI version %d.%d\n", tbm_backend_major, tbm_backend_minor);
-
-       backend_module_major = GET_ABI_MAJOR(backend_module_data->abi_version);
-       backend_module_minor = GET_ABI_MINOR(backend_module_data->abi_version);
-
-       TBM_INFO("TBM module %s: vendor=\"%s\" Backend ABI version=%d.%d\n",
-           backend_module_data->name ? backend_module_data->name : "UNKNOWN!",
-           backend_module_data->vendor ? backend_module_data->vendor : "UNKNOWN!",
-               backend_module_major, backend_module_minor);
-
-       if (backend_module_major > tbm_backend_major) {
-               TBM_ERR("TBM module ABI major ver(%d) is newer than the TBM's ver(%d)\n",
-                       backend_module_major, tbm_backend_major);
-               goto err;
-       } else if (backend_module_minor > tbm_backend_minor) {
-               TBM_ERR("TBM module ABI minor ver(%d) is newer than the TBM's ver(%d)\n",
-                       backend_module_minor, tbm_backend_minor);
-               goto err;
-       }
-
-       if (!backend_module_data->init) {
-               TBM_ERR("Error: module does not supply init symbol.\n");
-               goto err;
-       }
-
-       if (!backend_module_data->deinit)       {
-               TBM_ERR("Error: module does not supply deinit symbol.\n");
-               goto err;
-       }
-
-       bufmgr_data = backend_module_data->init(bufmgr, &error);
-       if (!bufmgr_data) {
-               TBM_ERR("Fail to init module(%s)\n", file);
-               goto err;
-       }
-
-       /* check the mandatory symbols of the backend module */
-       if (!_tbm_backend_check_bufmgr_func(bufmgr->bufmgr_func)) {
-               TBM_ERR("Fail to check the bufmgr_func symboles.");
-               goto err;
-       }
-
-       if (!_tbm_backend_check_bufmgr_bo(bufmgr->bo_func)) {
-               TBM_ERR("Fail to check the bufmgr_bo symboles.");
-               goto err;
-       }
-
-       /* get the capability */
-       bufmgr->capabilities = bufmgr->bufmgr_func->bufmgr_get_capabilities(bufmgr_data, &error);
-       if (bufmgr->capabilities == TBM_BUFMGR_CAPABILITY_NONE) {
-               TBM_ERR("The capabilities of the backend module is TBM_BUFMGR_CAPABILITY_NONE.");
-               TBM_ERR("TBM_BUFMGR_CAPABILITY_SHARE_FD is the essential capability.");
-               goto err;
-       }
-
-       if (!(bufmgr->capabilities & TBM_BUFMGR_CAPABILITY_SHARE_FD)) {
-               TBM_ERR("The capabilities of the backend module had no TBM_BUFMGR_CAPABILITY_SHARE_FD.");
-               TBM_ERR("The tbm backend has to get TBM_BUFMGR_CAPABILITY_SHARE_FD. ");
-               goto err;
-       }
-
-       bufmgr->module_data = module_data;
-       bufmgr->backend_module_data = backend_module_data;
-       bufmgr->bufmgr_data = bufmgr_data;
-
-       TBM_INFO("Success to load module(%s)\n", file);
-
-       return 1;
-
-err:
-       if (bufmgr_data)
-               bufmgr->backend_module_data->deinit(bufmgr_data);
-       if (module_data)
-               dlclose(module_data);
-
-       return 0;
-}
-
-static int
-_tbm_bufmgr_load_module(tbm_bufmgr bufmgr, int fd, const char *file)
+static void
+_tbm_bufmgr_copy_module_data(tbm_bufmgr bufmgr, tbm_module *module, int reset)
 {
-       char path[PATH_MAX] = {0, };
-       TBMModuleVersionInfo *vers;
-       TBMModuleData *initdata;
-       ModuleInitProc init;
-       void *module_data;
-
-       snprintf(path, sizeof(path), BUFMGR_MODULE_DIR "/%s", file);
-
-       module_data = dlopen(path, RTLD_LAZY);
-       if (!module_data) {
-               TBM_ERR("failed to load module: %s(%s)\n", dlerror(), file);
-               return 0;
-       }
-
-       initdata = dlsym(module_data, "tbmModuleData");
-       if (!initdata) {
-               TBM_ERR("Error: module does not have data object.\n");
-               goto err;
-       }
-
-       vers = initdata->vers;
-       if (!vers) {
-               TBM_ERR("Error: module does not supply version information.\n");
-               goto err;
-       }
-
-       init = initdata->init;
-       if (!init) {
-               TBM_ERR("Error: module does not supply init symbol.\n");
-               goto err;
-       }
-
-       if (!_check_version(vers)) {
-               TBM_ERR("Fail to check version.\n");
-               goto err;
-       }
+       if (!reset) {
+               bufmgr->module_data = module->module_data;
+               bufmgr->backend = module->backend;
+
+               bufmgr->backend_module_data = module->backend_module_data;
+               bufmgr->bufmgr_data = module->bufmgr_data;
+               bufmgr->bufmgr_func = module->bufmgr_func;
+               bufmgr->bo_func = module->bo_func;
+
+               bufmgr->use_hal_tbm = module->use_hal_tbm;
+               bufmgr->auth_wl_socket_created = module->auth_wl_socket_created;
+               bufmgr->auth_fd = module->auth_fd;
+               bufmgr->hal_backend = module->hal_backend;
+               bufmgr->hal_bufmgr = module->hal_bufmgr;
+       } else {
+               bufmgr->module_data = NULL;
+               bufmgr->backend = NULL;
 
-       if (!init(bufmgr, fd)) {
-               TBM_ERR("Fail to init module(%s)\n", file);
-               goto err;
-       }
+               bufmgr->backend_module_data = NULL;
+               bufmgr->bufmgr_data = NULL;
+               bufmgr->bufmgr_func = NULL;
+               bufmgr->bo_func = NULL;
 
-       if (!bufmgr->backend || !bufmgr->backend->priv) {
-               TBM_ERR("Error: module(%s) wrong operation. Check backend or backend's priv.\n", file);
-               goto err;
+               bufmgr->use_hal_tbm = 0;
+               bufmgr->auth_wl_socket_created = 0;
+               bufmgr->auth_fd = -1;
+               bufmgr->hal_backend = NULL;
+               bufmgr->hal_bufmgr = NULL;
        }
-
-       bufmgr->module_data = module_data;
-
-       TBM_DBG("Success to load module(%s)\n", file);
-
-       return 1;
-
-err:
-       dlclose(module_data);
-       return 0;
 }
 
-static int
-_tbm_load_module(tbm_bufmgr bufmgr, int fd)
-{
-       struct dirent **namelist;
-       int ret = 0, n;
-
-       /* try to load the hal-tbm backend module */
-       ret = _tbm_backend_load_hal_tbm(bufmgr);
-       if (ret)
-               return 1;
-
-       /* try to load the new backend module */
-       ret = _tbm_backend_load_module(bufmgr, DEFAULT_LIB);
-       if (ret)
-               return 1;
-
-       /* try to load the old(deprecated) backend mdoule */
-       ret = _tbm_bufmgr_load_module(bufmgr, fd, DEFAULT_LIB);
-       if (ret)
-               return 1;
-
-       /* load bufmgr priv from configured path */
-       n = scandir(BUFMGR_MODULE_DIR, &namelist, 0, alphasort);
-       if (n < 0) {
-               TBM_ERR("no files : %s\n", BUFMGR_MODULE_DIR);
-               return 0;
-       }
-
-       while (n--) {
-               if (!ret && strstr(namelist[n]->d_name, PREFIX_LIB)) {
-                       const char *p = strstr(namelist[n]->d_name, SUFFIX_LIB);
 
-                       if (p && !strcmp(p, SUFFIX_LIB)) {
-                               ret = _tbm_backend_load_module(bufmgr, namelist[n]->d_name);
-                               if (!ret)
-                                       ret = _tbm_bufmgr_load_module(bufmgr, fd,
-                                                                       namelist[n]->d_name);
-                       }
-               }
-
-               free(namelist[n]);
-       }
-
-       free(namelist);
-
-       return ret;
-}
 /* LCOV_EXCL_STOP */
 
 static tbm_bufmgr
 _tbm_bufmgr_init(int fd, int server)
 {
+       tbm_error_e error = TBM_ERROR_NONE;
+
 #ifdef TBM_BUFMGR_INIT_TIME
        struct timeval start_tv, end_tv;
 #endif
@@ -585,7 +297,8 @@ _tbm_bufmgr_init(int fd, int server)
        }
 
        /* load bufmgr priv from env */
-       if (!_tbm_load_module(gBufMgr, gBufMgr->fd)) {
+       gBufMgr->module = tbm_module_load(gBufMgr->fd);
+       if (!gBufMgr->module) {
                TBM_ERR("error : Fail to load bufmgr backend\n");
                _tbm_set_last_result(TBM_ERROR_INVALID_OPERATION);
                free(gBufMgr);
@@ -594,6 +307,34 @@ _tbm_bufmgr_init(int fd, int server)
                return NULL;
 
        }
+
+       // TODO: this is temporary. it will be removed after finishing refactoring the tbm_module.
+       _tbm_bufmgr_copy_module_data(gBufMgr, gBufMgr->module, 0);
+
+       /* check the essential capabilities of tbm_module */
+       gBufMgr->capabilities = tbm_module_bufmgr_get_capabilities(gBufMgr->module, &error);
+       if (gBufMgr->capabilities == TBM_BUFMGR_CAPABILITY_NONE) {
+               TBM_ERR("The capabilities of the backend module is TBM_BUFMGR_CAPABILITY_NONE.");
+               TBM_ERR("TBM_BUFMGR_CAPABILITY_SHARE_FD is the essential capability.");
+               tbm_module_unload(gBufMgr->module);
+               _tbm_set_last_result(error);
+               free(gBufMgr);
+               gBufMgr = NULL;
+               pthread_mutex_unlock(&gLock);
+               return NULL;
+       }
+
+       if (!(gBufMgr->capabilities & TBM_BUFMGR_CAPABILITY_SHARE_FD)) {
+               TBM_ERR("The capabilities of the backend module had no TBM_BUFMGR_CAPABILITY_SHARE_FD.");
+               TBM_ERR("The tbm backend has to get TBM_BUFMGR_CAPABILITY_SHARE_FD. ");
+               tbm_module_unload(gBufMgr->module);
+               _tbm_set_last_result(TBM_ERROR_INVALID_OPERATION);
+               free(gBufMgr);
+               gBufMgr = NULL;
+               pthread_mutex_unlock(&gLock);
+               return NULL;
+       }
+
        /* LCOV_EXCL_STOP */
 
        gBufMgr->ref_count = 1;
@@ -693,29 +434,11 @@ tbm_bufmgr_deinit(tbm_bufmgr bufmgr)
                LIST_DELINIT(&bufmgr->surf_list);
        }
 
-       if (bufmgr->use_hal_tbm) {
-               hal_tbm_put_backend(bufmgr->hal_backend);
-               bufmgr->hal_backend = NULL;
-               bufmgr->hal_bufmgr = NULL;
-               bufmgr->use_hal_tbm = 0;
-       } else {
-               if (bufmgr->backend_module_data) {
-                       /* deinit and backend destroys the backend func and data */
-                       bufmgr->backend_module_data->deinit(bufmgr->bufmgr_data);
-                       bufmgr->bo_func = NULL;
-                       bufmgr->bufmgr_func = NULL;
-                       bufmgr->bufmgr_data = NULL;
-                       bufmgr->backend_module_data = NULL;
-               } else {
-                       /* destroy bufmgr priv */
-                       bufmgr->backend->bufmgr_deinit(bufmgr->backend->priv);
-                       bufmgr->backend->priv = NULL;
-                       tbm_backend_free(bufmgr->backend);
-                       bufmgr->backend = NULL;
-               }
+       tbm_module_unload(bufmgr->module);
+
+       // TODO: this is temporary. it will be removed after finishing refactoring the tbm_module.
+       _tbm_bufmgr_copy_module_data(bufmgr, bufmgr->module, 1);
 
-               dlclose(bufmgr->module_data);
-       }
        if (bufmgr->fd > 0)
                close(bufmgr->fd);
 
@@ -1095,62 +818,24 @@ _tbm_bufmgr_get_bufmgr(void)
 int
 tbm_bufmgr_bind_native_display(tbm_bufmgr bufmgr, void *native_display)
 {
-       int ret;
        tbm_error_e error;
 
        _tbm_bufmgr_mutex_lock();
        _tbm_set_last_result(TBM_ERROR_NONE);
 
-       TBM_BUFMGR_RETURN_VAL_IF_FAIL(TBM_BUFMGR_IS_VALID(gBufMgr), 0);
+       TBM_BUFMGR_RETURN_VAL_IF_FAIL(TBM_BUFMGR_IS_VALID(bufmgr), 0);
 
-       if (bufmgr->use_hal_tbm) {
-               error = (tbm_error_e)hal_tbm_bufmgr_bind_native_display(bufmgr->hal_bufmgr, (hal_tbm_native_display *)native_display);
-               if (error == TBM_ERROR_NOT_SUPPORTED) {
-                       TBM_WRN("skip: tbm_bufmgr(%p) native_display(%p)\n", bufmgr, native_display);
-                       _tbm_set_last_result(TBM_ERROR_NOT_SUPPORTED);
-                       _tbm_bufmgr_mutex_unlock();
-                       return 1;
-               } else if (error != TBM_ERROR_NONE) {
-                       TBM_ERR("error: tbm_bufmgr(%p) native_display(%p)\n", bufmgr, native_display);
-                       _tbm_set_last_result(TBM_ERROR_INVALID_OPERATION);
-                       _tbm_bufmgr_mutex_unlock();
-                       return 0;
-               }
-       } else if (bufmgr->backend_module_data) {
-               if (!bufmgr->bufmgr_func->bufmgr_bind_native_display) {
-                       TBM_WRN("skip: tbm_bufmgr(%p) native_display(%p)\n",
-                                       bufmgr, native_display);
-                       _tbm_set_last_result(TBM_ERROR_NOT_SUPPORTED);
-                       _tbm_bufmgr_mutex_unlock();
-                       return 1;
-               }
+       error = tbm_module_bufmgr_bind_native_display(bufmgr->module, native_display);
+       if (error != TBM_ERROR_NONE) {
+               _tbm_set_last_result(error);
+               _tbm_bufmgr_mutex_unlock();
 
-               error = bufmgr->bufmgr_func->bufmgr_bind_native_display(bufmgr->bufmgr_data, (tbm_native_display *)native_display);
-               if (error != TBM_ERROR_NONE) {
-                       TBM_ERR("error: tbm_bufmgr(%p) native_display(%p) error(%d)\n",
-                                       bufmgr, native_display, error);
-                       _tbm_set_last_result(error);
-                       _tbm_bufmgr_mutex_unlock();
-                       return 0;
-               }
-               ret = 1;
-       } else {
-               if (!bufmgr->backend->bufmgr_bind_native_display) {
-                       TBM_WRN("skip: tbm_bufmgr(%p) native_display(%p)\n",
-                                       bufmgr, native_display);
-                       _tbm_set_last_result(TBM_ERROR_NOT_SUPPORTED);
-                       _tbm_bufmgr_mutex_unlock();
+               if (error == TBM_ERROR_NOT_SUPPORTED) {
+                       TBM_WRN("Not supported, so skip: tbm_bufmgr(%p) native_display(%p)", bufmgr, native_display);
                        return 1;
                }
 
-               ret = bufmgr->backend->bufmgr_bind_native_display(bufmgr, native_display);
-               if (!ret) {
-                       TBM_ERR("error: tbm_bufmgr(%p) native_display(%p)\n",
-                                       bufmgr, native_display);
-                       _tbm_set_last_result(TBM_ERROR_INVALID_OPERATION);
-                       _tbm_bufmgr_mutex_unlock();
-                       return 0;
-               }
+               return 0;
        }
 
        TBM_INFO("tbm_bufmgr(%p) native_display(%p)\n", bufmgr, native_display);
@@ -1205,4 +890,271 @@ tbm_bufmgr tbm_bufmgr_get(void)
 {
        return gBufMgr;
 }
+
+
+tbm_bo
+tbm_bufmgr_internal_find_bo(tbm_bufmgr bufmgr, tbm_bo bo)
+{
+       tbm_bo bo2 = NULL;
+
+       TBM_RETURN_VAL_IF_FAIL(TBM_BUFMGR_IS_VALID(gBufMgr), NULL);
+       TBM_RETURN_VAL_IF_FAIL(bufmgr == gBufMgr, NULL);
+
+       if (LIST_IS_EMPTY(&bufmgr->bo_list))
+               return NULL;
+
+       LIST_FOR_EACH_ENTRY(bo2, &bufmgr->bo_list, item_link) {
+               if (bo2->bo_data == bo->bo_data) {
+                       return bo2;
+               }
+       }
+
+       return NULL;
+}
+
+tbm_bo
+tbm_bufmgr_internal_alloc_bo(tbm_bufmgr bufmgr, int size, int flags, tbm_error_e *error)
+{
+       tbm_bo bo;
+       tbm_backend_bo_data *bo_data;
+
+       _tbm_bufmgr_check_bo_cnt(bufmgr);
+
+       bo = calloc(1, sizeof(struct _tbm_bo));
+       if (!bo) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("memory allocationc failed.");
+               *error = TBM_ERROR_OUT_OF_MEMORY;
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+
+       bo_data = tbm_module_bufmgr_bo_alloc(bufmgr->module, bo, size, flags, error);
+       if (!bo_data) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("tbm_module_bufmgr_bo_alloc failed. size:%d flags:%s error:%d", size, _tbm_flag_to_str(flags), *error);
+               free(bo);
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+       bo->bo_data = bo_data;
+       bo->priv = (void *)bo_data; // TODO: this will be DEPRECATED.
+
+       _tbm_bufmgr_initialize_bo(bufmgr, bo, flags);
+
+       return bo;
+}
+
+
+/* LCOV_EXCL_START */
+
+tbm_bo
+tbm_bufmgr_internal_alloc_bo_with_format(tbm_bufmgr bufmgr, int format, int bo_idx, int width,
+                                               int height, int bpp, tbm_bo_memory_type flags, tbm_error_e *error)
+{
+       tbm_bo bo = NULL;
+
+       _tbm_bufmgr_mutex_lock();
+       _tbm_set_last_result(TBM_ERROR_NONE);
+
+       TBM_BUFMGR_RETURN_VAL_IF_FAIL(TBM_BUFMGR_IS_VALID(bufmgr), NULL);
+
+       _tbm_bufmgr_check_bo_cnt(bufmgr);
+
+       bo = calloc(1, sizeof(struct _tbm_bo));
+       if (!bo) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("memory allocationc failed.");
+               _tbm_set_last_result(TBM_ERROR_OUT_OF_MEMORY);
+               /* LCOV_EXCL_STOP */
+               goto fail;
+       }
+
+       bo->bo_data = tbm_module_bufmgr_bo_alloc_with_format(bufmgr->module, format, bo_idx, width, height, bpp, flags, error);
+       if (!bo->bo_data) {
+               /* LCOV_EXCL_START */
+               _tbm_set_last_result(*error);
+               /* LCOV_EXCL_STOP */
+               goto fail;
+       }
+
+       _tbm_bufmgr_initialize_bo(bufmgr, bo, flags);
+
+       _tbm_bufmgr_mutex_unlock();
+
+       return bo;
+
+fail:
+       if (bo)
+               free(bo);
+       _tbm_bufmgr_mutex_unlock();
+
+       return NULL;
+}
+
+tbm_bo
+tbm_bufmgr_internal_alloc_bo_with_bo_data(tbm_bufmgr bufmgr, tbm_backend_bo_data *bo_data, int flags)
+{
+       tbm_bo bo, bo2 = NULL;
+
+       _tbm_bufmgr_mutex_lock();
+       _tbm_set_last_result(TBM_ERROR_NONE);
+
+       TBM_BUFMGR_RETURN_VAL_IF_FAIL(TBM_BUFMGR_IS_VALID(bufmgr), NULL);
+       TBM_BUFMGR_RETURN_VAL_IF_FAIL(bo_data, NULL);
+
+       _tbm_bufmgr_check_bo_cnt(bufmgr);
+
+       bo = calloc(1, sizeof(struct _tbm_bo));
+       if (!bo) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("memory allocationc failed.");
+               _tbm_set_last_result(TBM_ERROR_OUT_OF_MEMORY);
+               _tbm_bufmgr_mutex_unlock();
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+       bo->bo_data = bo_data;
+       bo->get_from_hal_surface = 1;
+
+       // return an existed bo if the bo is already created with the same bo_data.
+       bo2 = tbm_bufmgr_internal_find_bo(bufmgr, bo);
+       if (bo2) {
+               bo2->ref_cnt++;
+               free(bo);
+               _tbm_bufmgr_mutex_unlock();
+               return bo2;
+       }
+
+       _tbm_bufmgr_initialize_bo(bufmgr, bo, flags);
+
+       TBM_TRACE_BO("bo(%p) refcnt(%d), flag(%s)", bo, bo->ref_cnt, _tbm_flag_to_str(bo->flags));
+
+       _tbm_bufmgr_mutex_unlock();
+
+       return bo;
+}
+
+tbm_bo
+tbm_bufmgr_internal_import_bo_with_key(tbm_bufmgr bufmgr, unsigned int key, tbm_error_e *error)
+{
+       tbm_bo bo, bo2;
+       int flags;
+
+       _tbm_bufmgr_check_bo_cnt(bufmgr);
+
+       bo = calloc(1, sizeof(struct _tbm_bo));
+       if (!bo) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("memory allocationc failed.");
+               *error = TBM_ERROR_OUT_OF_MEMORY;
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+
+       bo->bo_data = tbm_module_bufmgr_bo_import_key(bufmgr->module, bo, key, error);
+       if (!bo->bo_data) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("tbm_module_bufmgr_bo_import_key failed. tbm_key:%d", key);
+               free(bo);
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+
+       // return the existed bo2 if bo->bo_data and bo2->bo_data is the same
+       bo2 = tbm_bufmgr_internal_find_bo(bufmgr, bo);
+       if (bo2) {
+               TBM_TRACE_BO("find bo(%p) ref(%d) key(%d) flag(%s) in list",
+                                       bo2, bo2->ref_cnt, key, _tbm_flag_to_str(bo2->flags));
+               bo2->ref_cnt++;
+               free(bo);
+               return bo2;
+       }
+
+       // TODO: refactoring tbm_module_bo
+       if (bufmgr->use_hal_tbm) {
+               flags = (tbm_bo_memory_type)hal_tbm_bo_get_memory_types((hal_tbm_bo *)bo->bo_data, (hal_tbm_error *)error);
+               if (*error != TBM_ERROR_NONE) {
+                       TBM_ERR("fail to get the bo flags(memory_types)");
+                       flags = TBM_BO_DEFAULT;
+               }
+       } else if (bufmgr->backend_module_data) {
+               flags = bufmgr->bo_func->bo_get_memory_types(bo->bo_data, error);
+               if (error != TBM_ERROR_NONE) {
+                       TBM_ERR("fail to get the bo flags(memory_types)");
+                       flags = TBM_BO_DEFAULT;
+               }
+       } else {
+               if (bufmgr->backend->bo_get_flags)
+                       flags = bufmgr->backend->bo_get_flags(bo);
+               else
+                       flags = TBM_BO_DEFAULT;
+       }
+
+       _tbm_bufmgr_initialize_bo(bufmgr, bo, flags);
+
+       return bo;
+}
+
+tbm_bo
+tbm_bufmgr_internal_import_bo_with_fd(tbm_bufmgr bufmgr, tbm_fd fd, tbm_error_e *error)
+{
+       tbm_bo bo, bo2;
+       int flags;
+
+       _tbm_bufmgr_check_bo_cnt(bufmgr);
+
+       bo = calloc(1, sizeof(struct _tbm_bo));
+       if (!bo) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("memory allocationc failed.");
+               *error = TBM_ERROR_OUT_OF_MEMORY;
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+
+       bo->bo_data = tbm_module_bufmgr_bo_import_fd(bufmgr->module, bo, fd, error);
+       if (!bo->bo_data) {
+               /* LCOV_EXCL_START */
+               TBM_ERR("tbm_module_bufmgr_bo_import_fd failed. tbm_fd:%d", fd);
+               free(bo);
+               return NULL;
+               /* LCOV_EXCL_STOP */
+       }
+
+       // return the existed bo2 if bo->bo_data and bo2->bo_data is the same
+       bo2 = tbm_bufmgr_internal_find_bo(bufmgr, bo);
+       if (bo2) {
+               TBM_TRACE_BO("find bo(%p) ref(%d) fd(%d) flag(%s) in list",
+                                       bo2, bo2->ref_cnt, fd, _tbm_flag_to_str(bo2->flags));
+               bo2->ref_cnt++;
+               free(bo);
+               return bo2;
+       }
+
+       // TODO: refactoring tbm_module_bo
+       if (bufmgr->use_hal_tbm) {
+               flags = (tbm_bo_memory_type)hal_tbm_bo_get_memory_types((hal_tbm_bo *)bo->bo_data, (hal_tbm_error *)error);
+               if (error != TBM_ERROR_NONE) {
+                       TBM_ERR("fail to get the bo flags(memory_types)");
+                       flags = TBM_BO_DEFAULT;
+               }
+       } else if (bufmgr->backend_module_data) {
+               flags = bufmgr->bo_func->bo_get_memory_types(bo->bo_data, error);
+               if (error != TBM_ERROR_NONE) {
+                       TBM_ERR("fail to get the bo flags(memory_types)");
+                       flags = TBM_BO_DEFAULT;
+               }
+       } else {
+               if (bufmgr->backend->bo_get_flags)
+                       flags = bufmgr->backend->bo_get_flags(bo);
+               else
+                       flags = TBM_BO_DEFAULT;
+       }
+
+       _tbm_bufmgr_initialize_bo(bufmgr, bo, flags);
+
+       return bo;
+}
+
 /* LCOV_EXCL_STOP */