Merge "Add X-TIZEN-AppID filed in destop file" into tizen
[platform/core/appfw/pkgmgr-info.git] / parser / pkgmgr_parser_db.c
old mode 100755 (executable)
new mode 100644 (file)
index c7d692e..004f34f
 #include <stdlib.h>
 #include <string.h>
 #include <sys/types.h>
+#include <sys/smack.h>
 #include <sys/stat.h>
 #include <unistd.h>
 #include <db-util.h>
 #include <glib.h>
+#include <grp.h>
+#include <pwd.h>
+
+/* For multi-user support */
+#include <tzplatform_config.h>
+
 #include "pkgmgr-info.h"
 #include "pkgmgr_parser_internal.h"
 #include "pkgmgr_parser_db.h"
 
-#define PKGMGR_PARSER_DB_FILE "/opt/dbspace/.pkgmgr_parser.db"
-#define PKGMGR_CERT_DB_FILE "/opt/dbspace/.pkgmgr_cert.db"
+#include "pkgmgr-info-debug.h"
+
+#ifdef LOG_TAG
+#undef LOG_TAG
+#endif
+#define LOG_TAG "PKGMGR_PARSER"
+
+#define PKGMGR_PARSER_DB_FILE tzplatform_mkpath(TZ_SYS_DB, ".pkgmgr_parser.db")
+#define PKGMGR_CERT_DB_FILE tzplatform_mkpath(TZ_SYS_DB, ".pkgmgr_cert.db")
 #define MAX_QUERY_LEN          4096
+#define BUFSIZE 4096
+#define OWNER_ROOT 0
+
+#define SET_SMACK_LABEL(x,uid) \
+       if(smack_setlabel((x), (((uid) == GLOBAL_USER)?"*":"User"), SMACK_LABEL_ACCESS)) _LOGE("failed chsmack -a \"User/*\" %s", x); \
+       else _LOGD("chsmack -a \"User/*\" %s", x);
+
 sqlite3 *pkgmgr_parser_db;
 sqlite3 *pkgmgr_cert_db;
-GList *pkglocale = NULL;
-GList *applocale = NULL;
-GList *appicon = NULL;
-GList *appimage = NULL;
-char *prev = NULL;
+
 
 #define QUERY_CREATE_TABLE_PACKAGE_INFO "create table if not exists package_info " \
                                                "(package text primary key not null, " \
@@ -55,6 +72,7 @@ char *prev = NULL;
                                                "package_update text DEFAULT 'false', " \
                                                "package_appsetting text DEFAULT 'false', " \
                                                "package_nodisplay text DEFAULT 'false', " \
+                                               "package_system text DEFAULT 'false', " \
                                                "author_name text, " \
                                                "author_email text, " \
                                                "author_href text," \
@@ -63,7 +81,8 @@ char *prev = NULL;
                                                "storeclient_id text," \
                                                "mainapp_id text," \
                                                "package_url text," \
-                                               "root_path text)"
+                                               "root_path text," \
+                                               "csc_path text )"
 
 #define QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO "create table if not exists package_localized_info " \
                                                "(package text not null, " \
@@ -98,6 +117,7 @@ char *prev = NULL;
                                                "app_taskmanage text DEFAULT 'false', " \
                                                "app_enabled text DEFAULT 'true', " \
                                                "app_hwacceleration text DEFAULT 'use-system-setting', " \
+                                               "app_screenreader text DEFAULT 'use-system-setting', " \
                                                "app_mainapp text, " \
                                                "app_recentimage text, " \
                                                "app_launchcondition text, " \
@@ -105,6 +125,11 @@ char *prev = NULL;
                                                "app_portraitimg text, " \
                                                "app_landscapeimg text, " \
                                                "app_guestmodevisibility text DEFAULT 'true', " \
+                                               "app_permissiontype text DEFAULT 'normal', " \
+                                               "app_preload text DEFAULT 'false', " \
+                                               "app_submode text DEFAULT 'false', " \
+                                               "app_submode_mainid text, " \
+                                               "component_type text, " \
                                                "package text not null, " \
                                                "FOREIGN KEY(package) " \
                                                "REFERENCES package_info(package) " \
@@ -183,7 +208,7 @@ char *prev = NULL;
                                                "(app_id text not null, " \
                                                "pm_type text not null, " \
                                                "pm_value text not null, " \
-                                               "PRIMARY KEY(app_id) " \
+                                               "PRIMARY KEY(app_id, pm_type, pm_value) " \
                                                "FOREIGN KEY(app_id) " \
                                                "REFERENCES package_app_info(app_id) " \
                                                "ON DELETE CASCADE)"
@@ -224,6 +249,16 @@ char *prev = NULL;
                                                "dist2_signer_cert integer, " \
                                                "PRIMARY KEY(package)) "
 
+#define QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL "create table if not exists package_app_data_control " \
+                                               "(app_id text not null, " \
+                                               "provider_id text not null, " \
+                                               "access text not null, " \
+                                               "type text not null, " \
+                                               "PRIMARY KEY(app_id, provider_id, access, type) " \
+                                               "FOREIGN KEY(app_id) " \
+                                               "REFERENCES package_app_info(app_id) " \
+                                               "ON DELETE CASCADE)"
+
 static int __insert_uiapplication_info(manifest_x *mfx);
 static int __insert_serviceapplication_info(manifest_x *mfx);
 static int __insert_uiapplication_appsvc_info(manifest_x *mfx);
@@ -238,51 +273,54 @@ static int __insert_uiapplication_share_allowed_info(manifest_x *mfx);
 static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx);
 static int __insert_uiapplication_share_request_info(manifest_x *mfx);
 static int __insert_serviceapplication_share_request_info(manifest_x *mfx);
+static int __insert_serviceapplication_datacontrol_info(manifest_x *mfx);
 static void __insert_serviceapplication_locale_info(gpointer data, gpointer userdata);
 static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata);
 static void __insert_pkglocale_info(gpointer data, gpointer userdata);
-static int __insert_manifest_info_in_db(manifest_x *mfx);
-static int __delete_manifest_info_from_db(manifest_x *mfx);
+static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid);
+static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid);
+static int __delete_subpkg_info_from_db(char *appid);
 static int __delete_appinfo_from_db(char *db_table, const char *appid);
 static int __initialize_db(sqlite3 *db_handle, const char *db_query);
 static int __exec_query(char *query);
 static void __extract_data(gpointer data, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath,
                char **label, char **license, char **icon, char **description, char **author);
 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata);
-static void __trimfunc1(gpointer data, gpointer userdata);
-static void __trimfunc2(gpointer data, gpointer userdata);
 static GList *__create_locale_list(GList *locale, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath);
 static void __preserve_guestmode_visibility_value(manifest_x *mfx);
 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname);
 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path);
 
+static int __delete_subpkg_list_cb(void *data, int ncols, char **coltxt, char **colname)
+{
+       if (coltxt[0])
+               __delete_subpkg_info_from_db(coltxt[0]);
+
+       return 0;
+}
+
+static char *__get_str(const char *str)
+{
+       if (str == NULL)
+       {
+               return PKGMGR_PARSER_EMPTY_STR;
+       }
+
+       return str;
+}
+
 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path)
 {
        int ret = -1;
        sqlite3 *handle;
-       if (access(db_path, F_OK) == 0) {
-               ret =
-                   db_util_open(db_path, &handle,
-                                DB_UTIL_REGISTER_HOOK_METHOD);
-               if (ret != SQLITE_OK) {
-                       DBG("connect db [%s] failed!\n",
-                              db_path);
-                       return -1;
-               }
-               *db_handle = handle;
-               return 0;
-       }
-       DBG("%s DB does not exists. Create one!!\n", db_path);
-
-       ret =
-           db_util_open(db_path, &handle,
-                        DB_UTIL_REGISTER_HOOK_METHOD);
 
+       ret = db_util_open(db_path, &handle,  DB_UTIL_REGISTER_HOOK_METHOD);
        if (ret != SQLITE_OK) {
-               DBG("connect db [%s] failed!\n", db_path);
+               _LOGD("connect db [%s] failed!\n", db_path);
                return -1;
        }
        *db_handle = handle;
+
        return 0;
 }
 
@@ -305,7 +343,7 @@ static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char
                }
        }
        if (appid == NULL) {
-               DBG("app id is NULL\n");
+               _LOGD("app id is NULL\n");
                return -1;
        }
        /*update guest mode visibility*/
@@ -336,7 +374,7 @@ static void __preserve_guestmode_visibility_value(manifest_x *mfx)
        if (SQLITE_OK !=
            sqlite3_exec(pkgmgr_parser_db, query,
                         __guestmode_visibility_cb, (void *)mfx, &error_message)) {
-               DBG("Don't execute query = %s error message = %s\n",
+               _LOGD("Don't execute query = %s error message = %s\n",
                       query, error_message);
                sqlite3_free(error_message);
        }
@@ -349,7 +387,7 @@ static int __initialize_db(sqlite3 *db_handle, const char *db_query)
        if (SQLITE_OK !=
            sqlite3_exec(db_handle, db_query,
                         NULL, NULL, &error_message)) {
-               DBG("Don't execute query = %s error message = %s\n",
+               _LOGD("Don't execute query = %s error message = %s\n",
                       db_query, error_message);
                sqlite3_free(error_message);
                return -1;
@@ -363,7 +401,7 @@ static int __exec_query(char *query)
        char *error_message = NULL;
        if (SQLITE_OK !=
            sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
-               DBG("Don't execute query = %s error message = %s\n", query,
+               _LOGD("Don't execute query = %s error message = %s\n", query,
                       error_message);
                sqlite3_free(error_message);
                return -1;
@@ -445,55 +483,34 @@ static GList *__create_image_list(GList *locale, image_x *image)
 
 static void __printfunc(gpointer data, gpointer userdata)
 {
-       DBG("%s  ", (char*)data);
-}
-
-static void __trimfunc1(gpointer data, gpointer userdata)
-{
-       if (prev) {
-               if (strcmp((char *)data, prev) == 0) {
-                       pkglocale = g_list_remove(pkglocale, data);
-               } else
-                       prev = (char *)data;
-       }
-       else
-               prev = (char *)data;
-}
-
-static void __trimfunc2(gpointer data, gpointer userdata)
-{
-       if (prev) {
-               if (strcmp((char *)data, prev) == 0) {
-                       applocale = g_list_remove(applocale, data);
-               } else
-                       prev = (char *)data;
-       }
-       else
-               prev = (char *)data;
+       _LOGD("%s  ", (char*)data);
 }
 
-static void __trimfunc3(gpointer data, gpointer userdata)
+static void __trimfunc(GList* trim_list)
 {
-       if (prev) {
-               if (strcmp((char *)data, prev) == 0) {
-                       appicon = g_list_remove(appicon, data);
-               } else
-                       prev = (char *)data;
-       }
-       else
-               prev = (char *)data;
-}
-
-static void __trimfunc4(gpointer data, gpointer userdata)
-{
-       if (prev) {
-               if (strcmp((char *)data, prev) == 0) {
-                       appimage = g_list_remove(appimage, data);
-               } else
-                       prev = (char *)data;
+       char *trim_data = NULL;
+       char *prev = NULL;
+
+       GList *list = NULL;
+       list = g_list_first(trim_list);
+
+       while (list) {
+               trim_data = (char *)list->data;
+               if (trim_data) {
+                       if (prev) {
+                               if (strcmp(trim_data, prev) == 0) {
+                                       trim_list = g_list_remove(trim_list, trim_data);
+                                       list = g_list_first(trim_list);
+                                       prev = NULL;
+                                       continue;
+                               } else
+                                       prev = trim_data;
+                       }
+                       else
+                               prev = trim_data;
+               }
+               list = g_list_next(list);
        }
-       else
-               prev = (char *)data;
 }
 
 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata)
@@ -615,13 +632,21 @@ static void __insert_pkglocale_info(gpointer data, gpointer userdata)
        __extract_data(data, lbl, lcn, icn, dcn, ath, &label, &license, &icon, &description, &author);
        if (!label && !description && !icon && !license && !author)
                return;
+
        sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
                "package_label, package_icon, package_description, package_license, package_author) values " \
-               "('%q', '%q', '%q', '%q', '%q', '%q', '%q')", mfx->package, (char*)data,
-               label, icon, description, license, author);
+               "('%q', '%q', '%q', '%q', '%s', '%s', '%s')",
+               mfx->package,
+               (char*)data,
+               label,
+               icon,
+               __get_str(description),
+               __get_str(license),
+               __get_str(author));
+
        ret = __exec_query(query);
        if (ret == -1)
-               DBG("Package Localized Info DB Insert failed\n");
+               _LOGD("Package Localized Info DB Insert failed\n");
 }
 
 static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata)
@@ -631,7 +656,6 @@ static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata)
        char *icon = NULL;
        char query[MAX_QUERY_LEN] = {'\0'};
 
-       manifest_x *mfx = (manifest_x *)userdata;
        uiapplication_x *up = (uiapplication_x*)userdata;
        label_x *lbl = up->label;
        icon_x *icn = up->icon;
@@ -645,17 +669,28 @@ static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata)
                label, icon);
        ret = __exec_query(query);
        if (ret == -1)
-               DBG("Package UiApp Localized Info DB Insert failed\n");
+               _LOGD("Package UiApp Localized Info DB Insert failed\n");
 
        /*insert ui app locale info to pkg locale to get mainapp data */
        if (strcasecmp(up->mainapp, "true")==0) {
                sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
                        "package_label, package_icon, package_description, package_license, package_author) values " \
-                       "('%q', '%q', '%q', '%q', '%q', '%q', '%q')", mfx->package, (char*)data,
-                       label, icon, NULL, NULL, NULL);
+                       "('%q', '%q', '%q', '%q', '%q', '%q', '%q')",
+                       up->package,
+                       (char*)data,
+                       label,
+                       icon,
+                       PKGMGR_PARSER_EMPTY_STR,
+                       PKGMGR_PARSER_EMPTY_STR,
+                       PKGMGR_PARSER_EMPTY_STR);
+
                ret = __exec_query_no_msg(query);
-               if (ret == -1)
-                       DBG("Package locale info inserted before.\n");
+
+               if (icon != NULL) {
+                       sqlite3_snprintf(MAX_QUERY_LEN, query, "update package_localized_info set package_icon='%s' "\
+                               "where package='%s' and package_locale='%s'", icon, up->package, (char*)data);
+                       ret = __exec_query_no_msg(query);
+               }
        }
 }
 
@@ -679,7 +714,7 @@ static void __insert_uiapplication_icon_section_info(gpointer data, gpointer use
 
        ret = __exec_query(query);
        if (ret == -1)
-               DBG("Package UiApp Localized Info DB Insert failed\n");
+               _LOGD("Package UiApp Localized Info DB Insert failed\n");
 
 }
 
@@ -702,7 +737,7 @@ static void __insert_uiapplication_image_info(gpointer data, gpointer userdata)
 
        ret = __exec_query(query);
        if (ret == -1)
-               DBG("Package UiApp image Info DB Insert failed\n");
+               _LOGD("Package UiApp image Info DB Insert failed\n");
 
 }
 
@@ -727,7 +762,7 @@ static void __insert_serviceapplication_locale_info(gpointer data, gpointer user
                label, icon);
        ret = __exec_query(query);
        if (ret == -1)
-               DBG("Package ServiceApp Localized Info DB Insert failed\n");
+               _LOGD("Package ServiceApp Localized Info DB Insert failed\n");
 }
 
 static int __insert_ui_mainapp_info(manifest_x *mfx)
@@ -742,7 +777,7 @@ static int __insert_ui_mainapp_info(manifest_x *mfx)
 
                ret = __exec_query(query);
                if (ret == -1) {
-                       DBG("Package UiApp Info DB Insert Failed\n");
+                       _LOGD("Package UiApp Info DB Insert Failed\n");
                        return -1;
                }
                if (strcasecmp(up->mainapp, "True")==0)
@@ -753,37 +788,30 @@ static int __insert_ui_mainapp_info(manifest_x *mfx)
        }
 
        if (mfx->mainapp_id == NULL){
-               if (mfx->uiapplication
-               && mfx->uiapplication->appid) {
-                       snprintf(query, MAX_QUERY_LEN,
-                       "update package_app_info set app_mainapp='true' where app_id='%s'", mfx->uiapplication->appid);
-               } else if (mfx->serviceapplication
-                       && mfx->serviceapplication->appid) {
-                       snprintf(query, MAX_QUERY_LEN,
-                        "update package_app_info set app_mainapp='true' where app_id='%s'", mfx->serviceapplication->appid);
-                } else {
-                       DBG("Not valid appid\n");
-                        return -1;
+               if (mfx->uiapplication && mfx->uiapplication->appid) {
+                       snprintf(query, MAX_QUERY_LEN, "update package_app_info set app_mainapp='true' where app_id='%s'", mfx->uiapplication->appid);
+               } else {
+                       _LOGD("Not valid appid\n");
+                       return -1;
                }
 
                ret = __exec_query(query);
                if (ret == -1) {
-                       DBG("Package UiApp Info DB Insert Failed\n");
+                       _LOGD("Package UiApp Info DB Insert Failed\n");
                        return -1;
                }
-                if (mfx->uiapplication && mfx->uiapplication->appid)
-                        mfx->mainapp_id = strdup(mfx->uiapplication->appid);
-                else if (mfx->serviceapplication && mfx->serviceapplication->appid)
-                        mfx->mainapp_id = strdup(mfx->serviceapplication->appid);
 
-}
+               free((void *)mfx->uiapplication->mainapp);
+               mfx->uiapplication->mainapp= strdup("true");
+               mfx->mainapp_id = strdup(mfx->uiapplication->appid);
+       }
 
        memset(query, '\0', MAX_QUERY_LEN);
        snprintf(query, MAX_QUERY_LEN,
                "update package_info set mainapp_id='%s' where package='%s'", mfx->mainapp_id, mfx->package);
        ret = __exec_query(query);
        if (ret == -1) {
-               DBG("Package Info DB update Failed\n");
+               _LOGD("Package Info DB update Failed\n");
                return -1;
        }
 
@@ -801,13 +829,39 @@ static int __insert_uiapplication_info(manifest_x *mfx)
        {
                snprintf(query, MAX_QUERY_LEN,
                         "insert into package_app_info(app_id, app_component, app_exec, app_nodisplay, app_type, app_onboot, " \
-                       "app_multiple, app_autorestart, app_taskmanage, app_enabled, app_hwacceleration, app_mainapp , app_recentimage, app_launchcondition, app_indicatordisplay, app_portraitimg, app_landscapeimg, app_guestmodevisibility, package) " \
-                       "values('%s', '%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
-                        up->appid, "uiapp", up->exec, up->nodisplay, up->type, "\0", up->multiple,
-                        "\0", up->taskmanage, up->enabled, up->hwacceleration,up->mainapp, up->recentimage, up->launchcondition, up->indicatordisplay, up->portraitimg, up->landscapeimg, up->guestmode_visibility, mfx->package);
+                       "app_multiple, app_autorestart, app_taskmanage, app_enabled, app_hwacceleration, app_screenreader, app_mainapp , app_recentimage, " \
+                       "app_launchcondition, app_indicatordisplay, app_portraitimg, app_landscapeimg, app_guestmodevisibility, app_permissiontype, "\
+                       "app_preload, app_submode, app_submode_mainid, component_type, package) " \
+                       "values('%s', '%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
+                        up->appid,
+                        "uiapp",
+                        up->exec,
+                        up->nodisplay,
+                        up->type,
+                        PKGMGR_PARSER_EMPTY_STR,
+                        up->multiple,
+                        PKGMGR_PARSER_EMPTY_STR,
+                        up->taskmanage,
+                        up->enabled,
+                        up->hwacceleration,
+                        up->screenreader,
+                        up->mainapp,
+                        __get_str(up->recentimage),
+                        up->launchcondition,
+                        up->indicatordisplay,
+                        __get_str(up->portraitimg),
+                        __get_str(up->landscapeimg),
+                        up->guestmode_visibility,
+                        up->permission_type,
+                        mfx->preload,
+                        up->submode,
+                        __get_str(up->submode_mainid),
+                        up->component_type,
+                        mfx->package);
+
                ret = __exec_query(query);
                if (ret == -1) {
-                       DBG("Package UiApp Info DB Insert Failed\n");
+                       _LOGD("Package UiApp Info DB Insert Failed\n");
                        return -1;
                }
                up = up->next;
@@ -833,7 +887,7 @@ static int __insert_uiapplication_appcategory_info(manifest_x *mfx)
                                 up->appid, ct->name);
                        ret = __exec_query(query);
                        if (ret == -1) {
-                               DBG("Package UiApp Category Info DB Insert Failed\n");
+                               _LOGD("Package UiApp Category Info DB Insert Failed\n");
                                return -1;
                        }
                        ct = ct->next;
@@ -862,7 +916,7 @@ static int __insert_uiapplication_appmetadata_info(manifest_x *mfx)
                                         up->appid, md->key, md->value);
                                ret = __exec_query(query);
                                if (ret == -1) {
-                                       DBG("Package UiApp Metadata Info DB Insert Failed\n");
+                                       _LOGD("Package UiApp Metadata Info DB Insert Failed\n");
                                        return -1;
                                }
                        }
@@ -891,7 +945,7 @@ static int __insert_uiapplication_apppermission_info(manifest_x *mfx)
                                 up->appid, pm->type, pm->value);
                        ret = __exec_query(query);
                        if (ret == -1) {
-                               DBG("Package UiApp permission Info DB Insert Failed\n");
+                               _LOGD("Package UiApp permission Info DB Insert Failed\n");
                                return -1;
                        }
                        pm = pm->next;
@@ -949,7 +1003,7 @@ static int __insert_uiapplication_appcontrol_info(manifest_x *mfx)
 
                                                        ret = __exec_query(query);
                                                        if (ret == -1) {
-                                                               DBG("Package UiApp AppSvc DB Insert Failed\n");
+                                                               _LOGD("Package UiApp AppSvc DB Insert Failed\n");
                                                                return -1;
                                                        }
                                                        memset(query, '\0', MAX_QUERY_LEN);
@@ -1019,11 +1073,15 @@ static int __insert_uiapplication_appsvc_info(manifest_x *mfx)
                                                        snprintf(query, MAX_QUERY_LEN,
                                                                 "insert into package_app_app_svc(app_id, operation, uri_scheme, mime_type, subapp_name) " \
                                                                "values('%s', '%s', '%s', '%s', '%s')",\
-                                                                up->appid, operation, uri, mime, subapp);
+                                                                up->appid,
+                                                                operation,
+                                                                __get_str(uri),
+                                                                __get_str(mime),
+                                                                __get_str(subapp));
 
                                                        ret = __exec_query(query);
                                                        if (ret == -1) {
-                                                               DBG("Package UiApp AppSvc DB Insert Failed\n");
+                                                               _LOGD("Package UiApp AppSvc DB Insert Failed\n");
                                                                return -1;
                                                        }
                                                        memset(query, '\0', MAX_QUERY_LEN);
@@ -1071,7 +1129,7 @@ static int __insert_uiapplication_share_request_info(manifest_x *mfx)
                                         up->appid, rq->text);
                                ret = __exec_query(query);
                                if (ret == -1) {
-                                       DBG("Package UiApp Share Request DB Insert Failed\n");
+                                       _LOGD("Package UiApp Share Request DB Insert Failed\n");
                                        return -1;
                                }
                                memset(query, '\0', MAX_QUERY_LEN);
@@ -1109,7 +1167,7 @@ static int __insert_uiapplication_share_allowed_info(manifest_x *mfx)
                                                 up->appid, df->path, al->text);
                                        ret = __exec_query(query);
                                        if (ret == -1) {
-                                               DBG("Package UiApp Share Allowed DB Insert Failed\n");
+                                               _LOGD("Package UiApp Share Allowed DB Insert Failed\n");
                                                return -1;
                                        }
                                        memset(query, '\0', MAX_QUERY_LEN);
@@ -1133,13 +1191,13 @@ static int __insert_serviceapplication_info(manifest_x *mfx)
        {
                snprintf(query, MAX_QUERY_LEN,
                         "insert into package_app_info(app_id, app_component, app_exec, app_type, app_onboot, " \
-                       "app_multiple, app_autorestart, app_enabled, package) " \
-                       "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
+                       "app_multiple, app_autorestart, app_enabled, app_permissiontype, package) " \
+                       "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
                         sp->appid, "svcapp", sp->exec, sp->type, sp->onboot, "\0",
-                        sp->autorestart, sp->enabled, mfx->package);
+                        sp->autorestart, sp->enabled, sp->permission_type, mfx->package);
                ret = __exec_query(query);
                if (ret == -1) {
-                       DBG("Package ServiceApp Info DB Insert Failed\n");
+                       _LOGD("Package ServiceApp Info DB Insert Failed\n");
                        return -1;
                }
                sp = sp->next;
@@ -1165,7 +1223,7 @@ static int __insert_serviceapplication_appcategory_info(manifest_x *mfx)
                                 sp->appid, ct->name);
                        ret = __exec_query(query);
                        if (ret == -1) {
-                               DBG("Package ServiceApp Category Info DB Insert Failed\n");
+                               _LOGD("Package ServiceApp Category Info DB Insert Failed\n");
                                return -1;
                        }
                        ct = ct->next;
@@ -1194,7 +1252,7 @@ static int __insert_serviceapplication_appmetadata_info(manifest_x *mfx)
                                         sp->appid, md->key, md->value);
                                ret = __exec_query(query);
                                if (ret == -1) {
-                                       DBG("Package ServiceApp Metadata Info DB Insert Failed\n");
+                                       _LOGD("Package ServiceApp Metadata Info DB Insert Failed\n");
                                        return -1;
                                }
                        }
@@ -1223,7 +1281,7 @@ static int __insert_serviceapplication_apppermission_info(manifest_x *mfx)
                                 sp->appid, pm->type, pm->value);
                        ret = __exec_query(query);
                        if (ret == -1) {
-                               DBG("Package ServiceApp permission Info DB Insert Failed\n");
+                               _LOGD("Package ServiceApp permission Info DB Insert Failed\n");
                                return -1;
                        }
                        pm = pm->next;
@@ -1279,7 +1337,7 @@ static int __insert_serviceapplication_appcontrol_info(manifest_x *mfx)
                                                                 sp->appid, operation, uri, mime, subapp);
                                                        ret = __exec_query(query);
                                                        if (ret == -1) {
-                                                               DBG("Package UiApp AppSvc DB Insert Failed\n");
+                                                               _LOGD("Package UiApp AppSvc DB Insert Failed\n");
                                                                return -1;
                                                        }
                                                        memset(query, '\0', MAX_QUERY_LEN);
@@ -1348,10 +1406,14 @@ static int __insert_serviceapplication_appsvc_info(manifest_x *mfx)
                                                                snprintf(query, MAX_QUERY_LEN,
                                                                         "insert into package_app_app_svc(app_id, operation, uri_scheme, mime_type, subapp_name) " \
                                                                        "values('%s', '%s', '%s', '%s', '%s')",\
-                                                                        sp->appid, operation, uri, mime, subapp);
+                                                                        sp->appid,
+                                                                        operation,
+                                                                       __get_str(uri),
+                                                                       __get_str(mime),
+                                                                       __get_str(subapp));
                                                                ret = __exec_query(query);
                                                                if (ret == -1) {
-                                                                       DBG("Package UiApp AppSvc DB Insert Failed\n");
+                                                                       _LOGD("Package UiApp AppSvc DB Insert Failed\n");
                                                                        return -1;
                                                                }
                                                                memset(query, '\0', MAX_QUERY_LEN);
@@ -1378,7 +1440,38 @@ static int __insert_serviceapplication_appsvc_info(manifest_x *mfx)
        return 0;
 }
 
+static int __insert_serviceapplication_datacontrol_info(manifest_x *mfx)
+{
+       serviceapplication_x *sp = mfx->serviceapplication;
+       datacontrol_x *dc = NULL;
+       int ret = -1;
+       char query[MAX_QUERY_LEN] = {'\0'};
+
+       while(sp != NULL)
+       {
+               dc = sp->datacontrol;
+               while(dc != NULL)
+               {
+                       snprintf(query, MAX_QUERY_LEN,
+                                       "insert into package_app_data_control(app_id, provider_id, access, type) " \
+                                       "values('%s', '%s', '%s', '%s')",\
+                                       mfx->serviceapplication->appid,
+                                       dc->providerid,
+                                       dc->access,
+                                       dc->type);
 
+                       ret = __exec_query(query);
+                       if (ret == -1) {
+                               _LOGD("Package ServiceApp Data Control DB Insert Failed\n");
+                               return -1;
+                       }
+                       memset(query, '\0', MAX_QUERY_LEN);
+                       dc = dc->next;
+               }
+               sp = sp->next;
+       }
+       return 0;
+}
 
 static int __insert_serviceapplication_share_request_info(manifest_x *mfx)
 {
@@ -1401,7 +1494,7 @@ static int __insert_serviceapplication_share_request_info(manifest_x *mfx)
                                         sp->appid, rq->text);
                                ret = __exec_query(query);
                                if (ret == -1) {
-                                       DBG("Package ServiceApp Share Request DB Insert Failed\n");
+                                       _LOGD("Package ServiceApp Share Request DB Insert Failed\n");
                                        return -1;
                                }
                                memset(query, '\0', MAX_QUERY_LEN);
@@ -1441,7 +1534,7 @@ static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx)
                                                 sp->appid, df->path, al->text);
                                        ret = __exec_query(query);
                                        if (ret == -1) {
-                                               DBG("Package App Share Allowed DB Insert Failed\n");
+                                               _LOGD("Package App Share Allowed DB Insert Failed\n");
                                                return -1;
                                        }
                                        memset(query, '\0', MAX_QUERY_LEN);
@@ -1456,7 +1549,7 @@ static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx)
        return 0;
 }
 
-static int __insert_manifest_info_in_db(manifest_x *mfx)
+static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid)
 {
        label_x *lbl = mfx->label;
        license_x *lcn = mfx->license;
@@ -1477,6 +1570,13 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
        const char *auth_name = NULL;
        const char *auth_email = NULL;
        const char *auth_href = NULL;
+       const char *apps_path = NULL;
+
+       GList *pkglocale = NULL;
+       GList *applocale = NULL;
+       GList *appicon = NULL;
+       GList *appimage = NULL;
+
        if (ath) {
                if (ath->text)
                        auth_name = ath->text;
@@ -1485,6 +1585,20 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
                if (ath->href)
                        auth_href = ath->href;
        }
+       /*Insert in the package_cert_info CERT_DB*/
+       pkgmgrinfo_instcertinfo_h cert_handle = NULL;
+       ret = pkgmgrinfo_set_cert_value(&cert_handle, PMINFO_SET_AUTHOR_ROOT_CERT, "author root certificate");
+       if (ret != PMINFO_R_OK) {
+               pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
+               _LOGE("Cert Info DB create handle failed\n");
+               return -1;
+       }
+       ret = pkgmgrinfo_save_certinfo(mfx->package, &cert_handle, uid);
+       if (ret != PMINFO_R_OK) {
+               pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
+               _LOGE("Cert Info DB Insert Failed\n");
+               return -1;
+       }
 
        /*Insert in the package_info DB*/
        if (mfx->type)
@@ -1495,31 +1609,69 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
        if (mfx->root_path)
                path = strdup(mfx->root_path);
        else{
-               if (strcmp(type,"rpm")==0)
-                       snprintf(root, MAX_QUERY_LEN - 1, "/usr/apps/%s", mfx->package);
-               else
-                       snprintf(root, MAX_QUERY_LEN - 1, "/opt/usr/apps/%s", mfx->package);
-
+               if (strcmp(type,"rpm")==0) {
+                       apps_path = tzplatform_getenv(TZ_SYS_RO_APP);
+                       snprintf(root, MAX_QUERY_LEN - 1, "%s/%s", apps_path, mfx->package);
+               } else {
+                       apps_path = tzplatform_getenv(TZ_USER_APP);
+                       snprintf(root, MAX_QUERY_LEN - 1, "%s/%s", apps_path, mfx->package);
+               }
                path = strdup(root);
        }
        snprintf(query, MAX_QUERY_LEN,
                 "insert into package_info(package, package_type, package_version, install_location, package_size, " \
-               "package_removable, package_preload, package_readonly, package_update, package_appsetting, package_nodisplay, author_name, author_email, author_href, installed_time, installed_storage, storeclient_id, mainapp_id, package_url, root_path) " \
-               "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
-                mfx->package, type, mfx->version, mfx->installlocation, mfx->package_size, mfx->removable, mfx->preload,
-                mfx->readonly, mfx->update, mfx->appsetting, mfx->nodisplay_setting, auth_name, auth_email, auth_href, mfx->installed_time, mfx->installed_storage, mfx->storeclient_id, mfx->mainapp_id, mfx->package_url, path);
-       ret = __exec_query(query);
-       if (ret == -1) {
-               DBG("Package Info DB Insert Failed\n");
-               if (type) {
-                       free(type);
-                       type = NULL;
+               "package_removable, package_preload, package_readonly, package_update, package_appsetting, package_nodisplay, package_system," \
+               "author_name, author_email, author_href, installed_time, installed_storage, storeclient_id, mainapp_id, package_url, root_path, csc_path) " \
+               "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
+                mfx->package,
+                type,
+                mfx->version,
+                __get_str(mfx->installlocation),
+                __get_str(mfx->package_size),
+                mfx->removable,
+                mfx->preload,
+                mfx->readonly,
+                mfx->update,
+                mfx->appsetting,
+                mfx->nodisplay_setting,
+                mfx->system,
+                __get_str(auth_name),
+                __get_str(auth_email),
+                __get_str(auth_href),
+                mfx->installed_time,
+                mfx->installed_storage,
+                __get_str(mfx->storeclient_id),
+                mfx->mainapp_id,
+                __get_str(mfx->package_url),
+                path,
+                __get_str(mfx->csc_path));
+       /*If package dont have main_package tag, this package is main package.*/
+       if (mfx->main_package == NULL) {
+               ret = __exec_query(query);
+               if (ret == -1) {
+                       _LOGD("Package Info DB Insert Failed\n");
+                       if (type) {
+                               free(type);
+                               type = NULL;
+                       }
+                       if (path) {
+                               free(path);
+                               path = NULL;
+                       }
+                       return -1;
                }
-               if (path) {
-                       free(path);
-                       path = NULL;
+       } else {
+               /*If package has main_package tag, this package is sub package(ug, efl).
+               skip __exec_query for package_info and change pkgid with main_package*/
+               memset(root, '\0', MAX_QUERY_LEN);
+               snprintf(root, MAX_QUERY_LEN - 1, "/usr/apps/%s", mfx->main_package);
+               if (access(root, F_OK) == 0) {
+                       free((void *)mfx->package);
+                       mfx->package = strdup(mfx->main_package);
+               } else {
+                       _LOGE("main package[%s] is not installed\n", root);
+                       return -1;
                }
-               return -1;
        }
        if (type) {
                free(type);
@@ -1542,7 +1694,7 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
                                 mfx->package, pv->text);
                        ret = __exec_query(query);
                        if (ret == -1) {
-                               DBG("Package Privilege Info DB Insert Failed\n");
+                               _LOGD("Package Privilege Info DB Insert Failed\n");
                                return -1;
                        }
                        pv = pv->next;
@@ -1550,15 +1702,18 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
                pvs = pvs->next;
        }
 
-       ret = __insert_ui_mainapp_info(mfx);
-       if (ret == -1)
-               return -1;
+       if (up != NULL) {
+               ret = __insert_ui_mainapp_info(mfx);
+               if (ret == -1)
+                       return -1;
+       }
 
-       /*Insert the package locale and app locale info */
+       /*Insert the package locale*/
        pkglocale = __create_locale_list(pkglocale, lbl, lcn, icn, dcn, ath);
-       g_list_foreach(pkglocale, __trimfunc1, NULL);
-       prev = NULL;
+       /*remove duplicated data in pkglocale*/
+       __trimfunc(pkglocale);
 
+       /*Insert the app locale info */
        while(up != NULL)
        {
                applocale = __create_locale_list(applocale, up->label, NULL, up->icon, NULL, NULL);
@@ -1569,8 +1724,8 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
                applocale = __create_locale_list(applocale, sp->label, NULL, sp->icon, NULL, NULL);
                sp = sp->next;
        }
-       g_list_foreach(applocale, __trimfunc2, NULL);
-       prev = NULL;
+       /*remove duplicated data in applocale*/
+       __trimfunc(applocale);
 
        /*Insert the app icon info */
        while(up_icn != NULL)
@@ -1578,8 +1733,8 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
                appicon = __create_icon_list(appicon, up_icn->icon);
                up_icn = up_icn->next;
        }
-       g_list_foreach(appicon, __trimfunc3, NULL);
-       prev = NULL;
+       /*remove duplicated data in appicon*/
+       __trimfunc(appicon);
 
        /*Insert the image info */
        while(up_image != NULL)
@@ -1587,15 +1742,17 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
                appimage = __create_image_list(appimage, up_image->image);
                up_image = up_image->next;
        }
-       g_list_foreach(appimage, __trimfunc4, NULL);
-       prev = NULL;
+       /*remove duplicated data in appimage*/
+       __trimfunc(appimage);
 
        /*g_list_foreach(pkglocale, __printfunc, NULL);*/
-       /*DBG("\n");*/
+       /*_LOGD("\n");*/
        /*g_list_foreach(applocale, __printfunc, NULL);*/
 
-       /*package locale info*/
-       g_list_foreach(pkglocale, __insert_pkglocale_info, (gpointer)mfx);
+       /*package locale info, it is only for main package.*/
+       if (mfx->main_package == NULL)
+               g_list_foreach(pkglocale, __insert_pkglocale_info, (gpointer)mfx);
+
        /*native app locale info*/
        up = mfx->uiapplication;
        while(up != NULL)
@@ -1636,7 +1793,6 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
        g_list_free(appimage);
        appimage = NULL;
 
-
        /*Insert in the package_app_info DB*/
        ret = __insert_uiapplication_info(mfx);
        if (ret == -1)
@@ -1644,7 +1800,6 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
        ret = __insert_serviceapplication_info(mfx);
        if (ret == -1)
                return -1;
-
        /*Insert in the package_app_app_control DB*/
        ret = __insert_uiapplication_appcontrol_info(mfx);
        if (ret == -1)
@@ -1701,6 +1856,11 @@ static int __insert_manifest_info_in_db(manifest_x *mfx)
        if (ret == -1)
                return -1;
 
+       /*Insert in the package_app_data_control DB*/
+       ret = __insert_serviceapplication_datacontrol_info(mfx);
+       if (ret == -1)
+               return -1;
+
        return 0;
 
 }
@@ -1714,22 +1874,88 @@ static int __delete_appinfo_from_db(char *db_table, const char *appid)
                 "delete from %s where app_id='%s'", db_table, appid);
        ret = __exec_query(query);
        if (ret == -1) {
-               DBG("DB Deletion from table (%s) Failed\n", db_table);
+               _LOGD("DB Deletion from table (%s) Failed\n", db_table);
+               return -1;
+       }
+       return 0;
+}
+
+static int __delete_subpkg_info_from_db(char *appid)
+{
+       int ret = -1;
+
+       ret = __delete_appinfo_from_db("package_app_info", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_localized_info", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_icon_section_info", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_image_info", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_app_svc", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_app_control", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_app_category", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_app_metadata", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_app_permission", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_share_allowed", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_share_request", appid);
+       if (ret < 0)
+               return ret;
+       ret = __delete_appinfo_from_db("package_app_data_control", appid);
+       if (ret < 0)
+               return ret;
+
+       return 0;
+}
+
+static int __delete_subpkg_from_db(manifest_x *mfx)
+{
+       char query[MAX_QUERY_LEN] = { '\0' };
+       int ret = -1;
+       char *error_message = NULL;
+
+       snprintf(query, MAX_QUERY_LEN, "select app_id from package_app_info where package='%s'", mfx->package);
+       if (SQLITE_OK !=
+           sqlite3_exec(pkgmgr_parser_db, query, __delete_subpkg_list_cb, NULL, &error_message)) {
+               _LOGE("Don't execute query = %s error message = %s\n", query,
+                      error_message);
+               sqlite3_free(error_message);
                return -1;
        }
+       sqlite3_free(error_message);
+
        return 0;
 }
 
-static int __delete_manifest_info_from_db(manifest_x *mfx)
+static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid)
 {
        char query[MAX_QUERY_LEN] = { '\0' };
        int ret = -1;
        uiapplication_x *up = mfx->uiapplication;
        serviceapplication_x *sp = mfx->serviceapplication;
        /*Delete from cert table*/
-       ret = pkgmgrinfo_delete_certinfo(mfx->package);
+       if (uid != GLOBAL_USER)
+               ret = pkgmgrinfo_delete_usr_certinfo(mfx->package, uid);
+       else
+               ret = pkgmgrinfo_delete_certinfo(mfx->package);
        if (ret) {
-               DBG("Cert Info  DB Delete Failed\n");
+               _LOGD("Cert Info  DB Delete Failed\n");
                return -1;
        }
 
@@ -1738,7 +1964,7 @@ static int __delete_manifest_info_from_db(manifest_x *mfx)
                 "delete from package_info where package='%s'", mfx->package);
        ret = __exec_query(query);
        if (ret == -1) {
-               DBG("Package Info DB Delete Failed\n");
+               _LOGD("Package Info DB Delete Failed\n");
                return -1;
        }
        memset(query, '\0', MAX_QUERY_LEN);
@@ -1748,7 +1974,7 @@ static int __delete_manifest_info_from_db(manifest_x *mfx)
                 "delete from package_localized_info where package='%s'", mfx->package);
        ret = __exec_query(query);
        if (ret == -1) {
-               DBG("Package Localized Info DB Delete Failed\n");
+               _LOGD("Package Localized Info DB Delete Failed\n");
                return -1;
        }
 
@@ -1757,7 +1983,7 @@ static int __delete_manifest_info_from_db(manifest_x *mfx)
                 "delete from package_privilege_info where package='%s'", mfx->package);
        ret = __exec_query(query);
        if (ret == -1) {
-               DBG("Package Privilege Info DB Delete Failed\n");
+               _LOGD("Package Privilege Info DB Delete Failed\n");
                return -1;
        }
 
@@ -1795,6 +2021,9 @@ static int __delete_manifest_info_from_db(manifest_x *mfx)
                ret = __delete_appinfo_from_db("package_app_share_request", up->appid);
                if (ret < 0)
                        return ret;
+               ret = __delete_appinfo_from_db("package_app_data_control", up->appid);
+               if (ret < 0)
+                       return ret;
                up = up->next;
        }
 
@@ -1832,11 +2061,31 @@ static int __delete_manifest_info_from_db(manifest_x *mfx)
                ret = __delete_appinfo_from_db("package_app_share_request", sp->appid);
                if (ret < 0)
                        return ret;
+               ret = __delete_appinfo_from_db("package_app_data_control", sp->appid);
+               if (ret < 0)
+                       return ret;
                sp = sp->next;
        }
+
+       /* if main package has sub pkg, delete sub pkg data*/
+       __delete_subpkg_from_db(mfx);
+
        return 0;
 }
 
+static int __update_preload_condition_in_db()
+{
+       int ret = -1;
+       char query[MAX_QUERY_LEN] = {'\0'};
+
+       snprintf(query, MAX_QUERY_LEN, "update package_info set package_preload='true'");
+
+       ret = __exec_query(query);
+       if (ret == -1)
+               _LOGD("Package preload_condition update failed\n");
+
+       return ret;
+}
 
 int pkgmgr_parser_initialize_db()
 {
@@ -1844,116 +2093,180 @@ int pkgmgr_parser_initialize_db()
        /*Manifest DB*/
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_INFO);
        if (ret == -1) {
-               DBG("package info DB initialization failed\n");
+               _LOGD("package info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO);
        if (ret == -1) {
-               DBG("package localized info DB initialization failed\n");
+               _LOGD("package localized info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO);
        if (ret == -1) {
-               DBG("package app app privilege DB initialization failed\n");
+               _LOGD("package app app privilege DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_INFO);
        if (ret == -1) {
-               DBG("package app info DB initialization failed\n");
+               _LOGD("package app info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO);
        if (ret == -1) {
-               DBG("package app localized info DB initialization failed\n");
+               _LOGD("package app localized info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO);
        if (ret == -1) {
-               DBG("package app icon localized info DB initialization failed\n");
+               _LOGD("package app icon localized info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO);
        if (ret == -1) {
-               DBG("package app image info DB initialization failed\n");
+               _LOGD("package app image info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL);
        if (ret == -1) {
-               DBG("package app app control DB initialization failed\n");
+               _LOGD("package app app control DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY);
        if (ret == -1) {
-               DBG("package app app category DB initialization failed\n");
+               _LOGD("package app app category DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA);
        if (ret == -1) {
-               DBG("package app app category DB initialization failed\n");
+               _LOGD("package app app category DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION);
        if (ret == -1) {
-               DBG("package app app permission DB initialization failed\n");
+               _LOGD("package app app permission DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_SVC);
        if (ret == -1) {
-               DBG("package app app svc DB initialization failed\n");
+               _LOGD("package app app svc DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED);
        if (ret == -1) {
-               DBG("package app share allowed DB initialization failed\n");
+               _LOGD("package app share allowed DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST);
        if (ret == -1) {
-               DBG("package app share request DB initialization failed\n");
+               _LOGD("package app share request DB initialization failed\n");
+               return ret;
+       }
+       ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL);
+       if (ret == -1) {
+               _LOGD("package app data control DB initialization failed\n");
                return ret;
        }
        /*Cert DB*/
        ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INFO);
        if (ret == -1) {
-               DBG("package cert info DB initialization failed\n");
+               _LOGD("package cert info DB initialization failed\n");
                return ret;
        }
        ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO);
        if (ret == -1) {
-               DBG("package cert index info DB initialization failed\n");
+               _LOGD("package cert index info DB initialization failed\n");
                return ret;
        }
+  
+       return 0;
+}
+
+static int parserdb_change_perm(const char *db_file, uid_t uid)
+{
+       char buf[BUFSIZE];
+       char journal_file[BUFSIZE];
+       char *files[3];
+       int ret, i;
+       struct passwd *userinfo = NULL;
+       files[0] = (char *)db_file;
+       files[1] = journal_file;
+       files[2] = NULL;
+
+       if(db_file == NULL)
+               return -1;
+
+       if(getuid() != OWNER_ROOT) //At this time we should be root to apply this
+                       return 0;
+       snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
+    userinfo = getpwuid(uid);
+    if (!userinfo) {
+               _LOGE("FAIL: user %d doesn't exist", uid);
+               return -1;
+       }
+       snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
+
+       for (i = 0; files[i]; i++) {
+               ret = chown(files[i], uid, userinfo->pw_gid);
+               SET_SMACK_LABEL(files[i],uid)
+               if (ret == -1) {
+                       strerror_r(errno, buf, sizeof(buf));
+                       _LOGD("FAIL : chown %s %d.%d, because %s", db_file, uid, userinfo->pw_gid, buf);
+                       return -1;
+               }
+
+               ret = chmod(files[i], S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
+               if (ret == -1) {
+                       strerror_r(errno, buf, sizeof(buf));
+                       _LOGD("FAIL : chmod %s 0664, because %s", db_file, buf);
+                       return -1;
+               }
+       }
        return 0;
 }
 
-int pkgmgr_parser_check_and_create_db()
+int pkgmgr_parser_check_and_create_db(uid_t uid)
 {
        int ret = -1;
        /*Manifest DB*/
-       ret = __pkgmgr_parser_create_db(&pkgmgr_parser_db, PKGMGR_PARSER_DB_FILE);
+       ret = __pkgmgr_parser_create_db(&pkgmgr_parser_db, getUserPkgParserDBPathUID(uid));
        if (ret) {
-               DBG("Manifest DB creation Failed\n");
+               _LOGD("Manifest DB creation Failed\n");
                return -1;
        }
+
        /*Cert DB*/
-       ret = __pkgmgr_parser_create_db(&pkgmgr_cert_db, PKGMGR_CERT_DB_FILE);
+       ret = __pkgmgr_parser_create_db(&pkgmgr_cert_db, getUserPkgCertDBPathUID(uid));
        if (ret) {
-               DBG("Cert DB creation Failed\n");
+               _LOGD("Cert DB creation Failed\n");
                return -1;
        }
+       if( 0 != parserdb_change_perm(getUserPkgCertDBPathUID(uid), uid)) {
+               _LOGD("Failed to change cert db permission\n");
+       }
+       if( 0 != parserdb_change_perm(getUserPkgParserDBPathUID(uid), uid)) {
+               _LOGD("Failed to change parser db permission\n");
+       }
        return 0;
 }
 
+void pkgmgr_parser_close_db()
+{
+       sqlite3_close(pkgmgr_parser_db);
+       sqlite3_close(pkgmgr_cert_db);
+}
+
+
 API int pkgmgr_parser_insert_manifest_info_in_db(manifest_x *mfx)
 {
+       _LOGD("pkgmgr_parser_insert_manifest_info_in_db\n");
        if (mfx == NULL) {
-               DBG("manifest pointer is NULL\n");
+               _LOGD("manifest pointer is NULL\n");
                return -1;
        }
        int ret = 0;
-       ret = pkgmgr_parser_check_and_create_db();
+       ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
        if (ret == -1) {
-               DBG("Failed to open DB\n");
+               _LOGD("Failed to open DB\n");
                return ret;
        }
        ret = pkgmgr_parser_initialize_db();
@@ -1962,42 +2275,85 @@ API int pkgmgr_parser_insert_manifest_info_in_db(manifest_x *mfx)
        /*Begin transaction*/
        ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
-               DBG("Failed to begin transaction\n");
+               _LOGD("Failed to begin transaction\n");
                ret = -1;
                goto err;
        }
-       DBG("Transaction Begin\n");
-       ret = __insert_manifest_info_in_db(mfx);
+       _LOGD("Transaction Begin\n");
+       ret = __insert_manifest_info_in_db(mfx, GLOBAL_USER);
        if (ret == -1) {
-               DBG("Insert into DB failed. Rollback now\n");
+               _LOGD("Insert into DB failed. Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                goto err;
        }
        /*Commit transaction*/
        ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
-               DBG("Failed to commit transaction. Rollback now\n");
+               _LOGD("Failed to commit transaction. Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                ret = -1;
                goto err;
        }
-       DBG("Transaction Commit and End\n");
+       _LOGD("Transaction Commit and End\n");
 err:
-       sqlite3_close(pkgmgr_parser_db);
-       sqlite3_close(pkgmgr_cert_db);
+       pkgmgr_parser_close_db();
        return ret;
 }
 
-API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
+API int pkgmgr_parser_insert_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
+{
+       _LOGD("pkgmgr_parser_insert_manifest_info_in_usr_db\n");
+       if (mfx == NULL) {
+               _LOGD("manifest pointer is NULL\n");
+               return -1;
+       }
+       int ret = 0;
+       ret = pkgmgr_parser_check_and_create_db(uid);
+       if (ret == -1) {
+               _LOGD("Failed to open DB\n");
+               return ret;
+       }
+       ret = pkgmgr_parser_initialize_db();
+       if (ret == -1)
+               goto err;
+       /*Begin transaction*/
+       ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
+       if (ret != SQLITE_OK) {
+               _LOGD("Failed to begin transaction\n");
+               ret = -1;
+               goto err;
+       }
+       _LOGD("Transaction Begin\n");
+       ret = __insert_manifest_info_in_db(mfx, uid);
+       if (ret == -1) {
+               _LOGD("Insert into DB failed. Rollback now\n");
+               sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
+               goto err;
+       }
+       /*Commit transaction*/
+       ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
+       if (ret != SQLITE_OK) {
+               _LOGD("Failed to commit transaction. Rollback now\n");
+               sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
+               ret = -1;
+               goto err;
+       }
+       _LOGD("Transaction Commit and End\n");
+err:
+       pkgmgr_parser_close_db();
+       return ret;
+}
+
+API int pkgmgr_parser_update_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
 {
        if (mfx == NULL) {
-               DBG("manifest pointer is NULL\n");
+               _LOGD("manifest pointer is NULL\n");
                return -1;
        }
        int ret = 0;
-       ret = pkgmgr_parser_check_and_create_db();
+       ret = pkgmgr_parser_check_and_create_db(uid);
        if (ret == -1) {
-               DBG("Failed to open DB\n");
+               _LOGD("Failed to open DB\n");
                return ret;
        }
        ret = pkgmgr_parser_initialize_db();
@@ -2008,20 +2364,20 @@ API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
        /*Begin transaction*/
        ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
-               DBG("Failed to begin transaction\n");
+               _LOGD("Failed to begin transaction\n");
                ret = -1;
                goto err;
        }
-       DBG("Transaction Begin\n");
-       ret = __delete_manifest_info_from_db(mfx);
+       _LOGD("Transaction Begin\n");
+       ret = __delete_manifest_info_from_db(mfx, uid);
        if (ret == -1) {
-               DBG("Delete from DB failed. Rollback now\n");
+               _LOGD("Delete from DB failed. Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                goto err;
        }
-       ret = __insert_manifest_info_in_db(mfx);
+       ret = __insert_manifest_info_in_db(mfx, uid);
        if (ret == -1) {
-               DBG("Insert into DB failed. Rollback now\n");
+               _LOGD("Insert into DB failed. Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                goto err;
        }
@@ -2029,56 +2385,135 @@ API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
        /*Commit transaction*/
        ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
-               DBG("Failed to commit transaction. Rollback now\n");
+               _LOGD("Failed to commit transaction. Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                ret = -1;
                goto err;
        }
-       DBG("Transaction Commit and End\n");
+       _LOGD("Transaction Commit and End\n");
 err:
-       sqlite3_close(pkgmgr_parser_db);
-       sqlite3_close(pkgmgr_cert_db);
+       pkgmgr_parser_close_db();
        return ret;
 }
 
-API int pkgmgr_parser_delete_manifest_info_from_db(manifest_x *mfx)
+API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
+{
+       return pkgmgr_parser_update_manifest_info_in_usr_db(mfx, GLOBAL_USER);
+}
+
+API int pkgmgr_parser_delete_manifest_info_from_usr_db(manifest_x *mfx, uid_t uid)
 {
        if (mfx == NULL) {
-               DBG("manifest pointer is NULL\n");
+               _LOGD("manifest pointer is NULL\n");
                return -1;
        }
        int ret = 0;
-       ret = pkgmgr_parser_check_and_create_db();
+       ret = pkgmgr_parser_check_and_create_db(uid);
        if (ret == -1) {
-               DBG("Failed to open DB\n");
+               _LOGD("Failed to open DB\n");
                return ret;
        }
        /*Begin transaction*/
        ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
-               DBG("Failed to begin transaction\n");
+               _LOGD("Failed to begin transaction\n");
                ret = -1;
                goto err;
        }
-       DBG("Transaction Begin\n");
-       ret = __delete_manifest_info_from_db(mfx);
+       _LOGD("Transaction Begin\n");
+       ret = __delete_manifest_info_from_db(mfx, uid);
        if (ret == -1) {
-               DBG("Delete from DB failed. Rollback now\n");
+               _LOGD("Delete from DB failed. Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                goto err;
        }
        /*Commit transaction*/
        ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
-               DBG("Failed to commit transaction, Rollback now\n");
+               _LOGD("Failed to commit transaction, Rollback now\n");
                sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
                ret = -1;
                goto err;
        }
-       DBG("Transaction Commit and End\n");
-       sqlite3_close(pkgmgr_parser_db);
+       _LOGD("Transaction Commit and End\n");
 err:
-       sqlite3_close(pkgmgr_parser_db);
-       sqlite3_close(pkgmgr_cert_db);
+       pkgmgr_parser_close_db();
+       return ret;
+}
+
+API int pkgmgr_parser_delete_manifest_info_from_db(manifest_x *mfx)
+{
+       return pkgmgr_parser_delete_manifest_info_from_usr_db(mfx, GLOBAL_USER);
+}
+
+API int pkgmgr_parser_update_preload_info_in_db()
+{
+       int ret = 0;
+       ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
+       if (ret == -1) {
+               _LOGD("Failed to open DB\n");
+               return ret;
+       }
+       /*Begin transaction*/
+       ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
+       if (ret != SQLITE_OK) {
+               _LOGD("Failed to begin transaction\n");
+               ret = -1;
+               goto err;
+       }
+       _LOGD("Transaction Begin\n");
+       ret = __update_preload_condition_in_db();
+       if (ret == -1) {
+               _LOGD("__update_preload_condition_in_db failed. Rollback now\n");
+               sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
+               goto err;
+       }
+       /*Commit transaction*/
+       ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
+       if (ret != SQLITE_OK) {
+               _LOGD("Failed to commit transaction, Rollback now\n");
+               sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
+               ret = -1;
+               goto err;
+       }
+       _LOGD("Transaction Commit and End\n");
+err:
+       pkgmgr_parser_close_db();
+       return ret;
+}
+
+API int pkgmgr_parser_update_preload_info_in_usr_db(uid_t uid)
+{
+       int ret = 0;
+       ret = pkgmgr_parser_check_and_create_db(uid);
+       if (ret == -1) {
+               _LOGD("Failed to open DB\n");
+               return ret;
+       }
+       /*Begin transaction*/
+       ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
+       if (ret != SQLITE_OK) {
+               _LOGD("Failed to begin transaction\n");
+               ret = -1;
+               goto err;
+       }
+       _LOGD("Transaction Begin\n");
+       ret = __update_preload_condition_in_db();
+       if (ret == -1) {
+               _LOGD("__update_preload_condition_in_db failed. Rollback now\n");
+               sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
+               goto err;
+       }
+       /*Commit transaction*/
+       ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
+       if (ret != SQLITE_OK) {
+               _LOGD("Failed to commit transaction, Rollback now\n");
+               sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
+               ret = -1;
+               goto err;
+       }
+       _LOGD("Transaction Commit and End\n");
+err:
+       pkgmgr_parser_close_db();
        return ret;
 }