Fix manifest schema for support tizen 2.3 tpk package
[platform/core/appfw/pkgmgr-info.git] / parser / pkgmgr_parser.c
index 6f2e712..f9446ef 100755 (executable)
 #include <libxml/xmlschemas.h>
 #include <vconf.h>
 #include <glib.h>
-#include <sys/stat.h>
+#include <grp.h>
 
 #include "pkgmgr_parser.h"
 #include "pkgmgr_parser_internal.h"
 #include "pkgmgr_parser_db.h"
 #include "pkgmgr-info.h"
+#include "pkgmgr_parser_signature.h"
+#include "pkgmgr-info-debug.h"
+
+#ifdef LOG_TAG
+#undef LOG_TAG
+#endif
+#define LOG_TAG "PKGMGR_PARSER"
 
-#define MANIFEST_RW_DIRECTORY "/opt/share/packages"
-#define MANIFEST_RO_DIRECTORY "/usr/share/packages"
 #define ASCII(s) (const char *)s
 #define XMLCHAR(s) (const xmlChar *)s
 
-#define PRELOAD_PACKAGE_LIST "/usr/etc/package-manager/preload/preload_list.txt"
-#define SCHEMA_FILE "/usr/etc/package-manager/preload/manifest.xsd"
-
-#define MDPARSER_LIST "/usr/etc/package-manager/parserlib/metadata/mdparser_list.txt"
-#define MDPARSER_NAME  "mdparser:"
-
-#define SMACK_LIST "/usr/etc/package-manager/pkgmgr_smack_list.txt"
+//#define METADATA_PARSER_LIST SYSCONFDIR "/package-manager/parserlib/metadata/metadata_parser_list.txt"
+#define METADATA_PARSER_LIST SYSCONFDIR "/package-manager/parserlib/metadata/mdparser_list.txt"
+#define METADATA_PARSER_NAME   "metadataparser:"
 
-#define BUFMAX 1024*128
-
-#define BUFF_SIZE                      256
-#define APP_OWNER_ID           5000
-#define APP_GROUP_ID           5000
+#define CATEGORY_PARSER_LIST SYSCONFDIR "/package-manager/parserlib/category/category_parser_list.txt"
+#define CATEGORY_PARSER_NAME   "categoryparser:"
 
-#define LIBAPPSVC_PATH "/usr/lib/libappsvc.so.0"
-#define LIBAIL_PATH "/usr/lib/libail.so.0"
-#define DESKTOP_RW_PATH "/opt/share/applications/"
-#define DESKTOP_RO_PATH "/usr/share/applications/"
-#define MANIFEST_RO_PREFIX "/usr/share/packages/"
-
-/* operation_type */
-typedef enum {
-       AIL_INSTALL = 0,
-       AIL_UPDATE,
-       AIL_REMOVE,
-       AIL_CLEAN,
-       AIL_MAX
-} AIL_TYPE;
+#define TAG_PARSER_LIST SYSCONFDIR "/package-manager/parserlib/tag_parser_list.txt"
+#define TAG_PARSER_NAME        "parserlib:"
 
-enum rpm_path_type {
-       RPM_PATH_PRIVATE,
-       RPM_PATH_GROUP_RW,
-       RPM_PATH_PUBLIC_RO,
-       RPM_PATH_SETTINGS_RW,
-       RPM_PATH_ANY_LABEL
-};
+#define PKG_TAG_LEN_MAX 128
+#define OWNER_ROOT 0
+#define BUFSIZE 4096
+#define GLOBAL_USER tzplatform_getuid(TZ_SYS_GLOBALAPP_USER)
 
 /* operation_type */
 typedef enum {
        ACTION_INSTALL = 0,
        ACTION_UPGRADE,
        ACTION_UNINSTALL,
+       ACTION_FOTA,
        ACTION_MAX
 } ACTION_TYPE;
 
+/* plugin process_type */
+typedef enum {
+       PLUGIN_PRE_PROCESS = 0,
+       PLUGIN_POST_PROCESS
+} PLUGIN_PROCESS_TYPE;
+
 typedef struct {
        const char *key;
        const char *value;
 } __metadata_t;
 
+typedef struct {
+       const char *name;
+} __category_t;
+
 const char *package;
 
 static int __ps_process_label(xmlTextReaderPtr reader, label_x *label);
@@ -118,15 +112,15 @@ static int __ps_process_define(xmlTextReaderPtr reader, define_x *define);
 static int __ps_process_appsvc(xmlTextReaderPtr reader, appsvc_x *appsvc);
 static int __ps_process_launchconditions(xmlTextReaderPtr reader, launchconditions_x *launchconditions);
 static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashare);
-static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon);
+static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon, uid_t uid);
 static int __ps_process_author(xmlTextReaderPtr reader, author_x *author);
 static int __ps_process_description(xmlTextReaderPtr reader, description_x *description);
 static int __ps_process_capability(xmlTextReaderPtr reader, capability_x *capability);
 static int __ps_process_license(xmlTextReaderPtr reader, license_x *license);
 static int __ps_process_appcontrol(xmlTextReaderPtr reader, appcontrol_x *appcontrol);
 static int __ps_process_datacontrol(xmlTextReaderPtr reader, datacontrol_x *datacontrol);
-static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *uiapplication);
-static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceapplication_x *serviceapplication);
+static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *uiapplication, uid_t uid);
+static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceapplication_x *serviceapplication, uid_t uid);
 static int __ps_process_font(xmlTextReaderPtr reader, font_x *font);
 static int __ps_process_theme(xmlTextReaderPtr reader, theme_x *theme);
 static int __ps_process_daemon(xmlTextReaderPtr reader, daemon_x *daemon);
@@ -165,10 +159,10 @@ static void __ps_free_font(font_x *font);
 static void __ps_free_theme(theme_x *theme);
 static void __ps_free_daemon(daemon_x *daemon);
 static void __ps_free_ime(ime_x *ime);
-static char *__pkgid_to_manifest(const char *pkgid);
+static char *__pkgid_to_manifest(const char *pkgid, uid_t uid);
 static int __next_child_element(xmlTextReaderPtr reader, int depth);
-static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx);
-static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx);
+static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx, uid_t uid);
+static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx, uid_t uid);
 static void __str_trim(char *input);
 static char *__get_parser_plugin(const char *type);
 static int __ps_run_parser(xmlDocPtr docPtr, const char *tag, ACTION_TYPE action, const char *pkgid);
@@ -176,72 +170,25 @@ static int __run_parser_prestep(xmlTextReaderPtr reader, ACTION_TYPE action, con
 static void __processNode(xmlTextReaderPtr reader, ACTION_TYPE action, char *const tagv[], const char *pkgid);
 static void __streamFile(const char *filename, ACTION_TYPE action, char *const tagv[], const char *pkgid);
 static int __validate_appid(const char *pkgid, const char *appid, char **newappid);
+API int __is_admin();
 
-static int __is_dir(char *dirname)
+void *__open_lib_handle(char *tag)
 {
-       struct stat stFileInfo;
-       stat(dirname, &stFileInfo);
-       if (S_ISDIR(stFileInfo.st_mode)) {
-               return 1;
-       }
-       return 0;
+       char *lib_path = NULL;
+       void *lib_handle = NULL;
+
+       lib_path = __get_parser_plugin(tag);
+       retvm_if(!lib_path, NULL, "lib_path get fail");
+
+       lib_handle = dlopen(lib_path, RTLD_LAZY);
+       retvm_if(lib_handle == NULL, NULL, "dlopen is failed lib_path[%s]", lib_path);
+
+       return lib_handle;
 }
 
-static void __apply_shared_privileges(char *pkgname, int flag)
+void __close_lib_handle(void *lib_handle)
 {
-       char dirpath[BUFF_SIZE] = {'\0'};
-       /*execute privilege APIs. The APIs should not fail*/
-       pkgmgr_parser_privilege_register_package(pkgname);
-
-#if 0
-       /*home dir. Dont setup path but change smack access to "_" */
-       snprintf(dirpath, BUFF_SIZE, "/usr/apps/%s", pkgname);
-       if (__is_dir(dirpath))
-               pkgmgr_parser_privilege_change_smack_label(dirpath, "_", 0);/*0 is SMACK_LABEL_ACCESS*/
-       memset(dirpath, '\0', BUFF_SIZE);
-       snprintf(dirpath, BUFF_SIZE, "/opt/usr/apps/%s", pkgname);
-       if (__is_dir(dirpath))
-               pkgmgr_parser_privilege_change_smack_label(dirpath, "_", 0);/*0 is SMACK_LABEL_ACCESS*/
-       memset(dirpath, '\0', BUFF_SIZE);
-
-       /*/shared dir. Dont setup path but change smack access to "_" */
-       snprintf(dirpath, BUFF_SIZE, "/usr/apps/%s/shared", pkgname);
-       if (__is_dir(dirpath))
-               pkgmgr_parser_privilege_change_smack_label(dirpath, "_", 0);/*0 is SMACK_LABEL_ACCESS*/
-       memset(dirpath, '\0', BUFF_SIZE);
-       snprintf(dirpath, BUFF_SIZE, "/opt/usr/apps/%s/shared", pkgname);
-       if (__is_dir(dirpath))
-               pkgmgr_parser_privilege_change_smack_label(dirpath, "_", 0);/*0 is SMACK_LABEL_ACCESS*/
-       memset(dirpath, '\0', BUFF_SIZE);
-
-       /*/shared/res dir. setup path */
-       if (flag == 0)
-               snprintf(dirpath, BUFF_SIZE, "/usr/apps/%s/shared/res", pkgname);
-       else
-               snprintf(dirpath, BUFF_SIZE, "/opt/usr/apps/%s/shared/res", pkgname);
-       if (__is_dir(dirpath))
-               pkgmgr_parser_privilege_setup_path(pkgname, dirpath, RPM_PATH_PUBLIC_RO, NULL);
-       memset(dirpath, '\0', BUFF_SIZE);
-
-       /*/shared/data dir. setup path and change group to 'app'*/
-       if (flag == 0)
-               snprintf(dirpath, BUFF_SIZE, "/usr/apps/%s/shared/data", pkgname);
-       else
-               snprintf(dirpath, BUFF_SIZE, "/opt/usr/apps/%s/shared/data", pkgname);
-       if (__is_dir(dirpath)) {
-               chown(dirpath, APP_OWNER_ID, APP_GROUP_ID);
-               pkgmgr_parser_privilege_setup_path(pkgname, dirpath, RPM_PATH_PUBLIC_RO, NULL);
-       } else {
-               memset(dirpath, '\0', BUFF_SIZE);
-               if (flag == 0)
-                       snprintf(dirpath, BUFF_SIZE, "/opt/usr/apps/%s/shared/data", pkgname);
-               else
-                       snprintf(dirpath, BUFF_SIZE, "/usr/apps/%s/shared/data", pkgname);
-               if (__is_dir(dirpath))
-                       chown(dirpath, APP_OWNER_ID, APP_GROUP_ID);
-                       pkgmgr_parser_privilege_setup_path(pkgname, dirpath, RPM_PATH_PUBLIC_RO, NULL);
-       }
-#endif
+       dlclose(lib_handle);
 }
 
 static void __str_trim(char *input)
@@ -263,10 +210,21 @@ static void __str_trim(char *input)
        return;
 }
 
+API int __is_admin()
+{
+       uid_t uid = getuid();
+       if ((uid_t) 0 == uid )
+               return 1;
+       else
+               return 0;
+}
+
+
+
 static int __validate_appid(const char *pkgid, const char *appid, char **newappid)
 {
        if (!pkgid || !appid || !newappid) {
-               DBG("Arg supplied is NULL\n");
+               _LOGD("Arg supplied is NULL\n");
                return -1;
        }
        int pkglen = strlen(pkgid);
@@ -278,17 +236,17 @@ static int __validate_appid(const char *pkgid, const char *appid, char **newappi
                len = pkglen + applen + 1;
                newapp = calloc(1,len);
                if (newapp == NULL) {
-                       DBG("Malloc failed\n");
+                       _LOGD("Malloc failed\n");
                        return -1;
                }
                strncpy(newapp, pkgid, pkglen);
                strncat(newapp, appid, applen);
-               DBG("new appid is %s\n", newapp);
+               _LOGD("new appid is %s\n", newapp);
                *newappid = newapp;
                return 0;
        }
        if (applen < pkglen) {
-               DBG("app id is not proper\n");
+               _LOGD("app id is not proper\n");
                *newappid = NULL;
 #ifdef _VALIDATE_APPID_
                return -1;
@@ -297,7 +255,7 @@ static int __validate_appid(const char *pkgid, const char *appid, char **newappi
 #endif
        }
        if (!strcmp(appid, pkgid)) {
-               DBG("appid is proper\n");
+               _LOGD("appid is proper\n");
                *newappid = NULL;
                return 0;
        }
@@ -305,12 +263,12 @@ static int __validate_appid(const char *pkgid, const char *appid, char **newappi
                ptr = strstr(appid, pkgid);
                ptr = ptr + pkglen;
                if (strncmp(ptr, ".", 1) == 0) {
-                       DBG("appid is proper\n");
+                       _LOGD("appid is proper\n");
                        *newappid = NULL;
                        return 0;
                }
                else {
-                       DBG("appid is not proper\n");
+                       _LOGD("appid is not proper\n");
                        *newappid = NULL;
 #ifdef _VALIDATE_APPID_
                        return -1;
@@ -319,7 +277,7 @@ static int __validate_appid(const char *pkgid, const char *appid, char **newappi
 #endif
                }
        } else {
-               DBG("appid is not proper\n");
+               _LOGD("appid is not proper\n");
                *newappid = NULL;
 #ifdef _VALIDATE_APPID_
                return -1;
@@ -335,7 +293,7 @@ static char * __get_tag_by_key(char *md_key)
        char *md_tag = NULL;
 
        if (md_key == NULL) {
-               DBG("md_key is NULL\n");
+               _LOGD("md_key is NULL\n");
                return NULL;
        }
 
@@ -345,7 +303,53 @@ static char * __get_tag_by_key(char *md_key)
        return strdup(md_tag);
 }
 
-static char *__get_mdparser_plugin(const char *type)
+static char *__get_metadata_parser_plugin(const char *type)
+{
+       FILE *fp = NULL;
+       char buffer[1024] = { 0 };
+       char temp_path[1024] = { 0 };
+       char *path = NULL;
+
+       if (type == NULL) {
+               _LOGE("invalid argument\n");
+               return NULL;
+       }
+
+       fp = fopen(PKG_PARSER_CONF_PATH, "r");
+       if (fp == NULL) {
+               _LOGE("no matching metadata parser\n");
+               return NULL;
+       }
+
+       while (fgets(buffer, sizeof(buffer), fp) != NULL) {
+               if (buffer[0] == '#')
+                       continue;
+
+               __str_trim(buffer);
+
+               if ((path = strstr(buffer, METADATA_PARSER_NAME)) != NULL) {
+                       path = path + strlen(METADATA_PARSER_NAME);
+
+                       break;
+               }
+
+               memset(buffer, 0x00, 1024);
+       }
+
+       if (fp != NULL)
+               fclose(fp);
+
+       if (path == NULL) {
+               _LOGE("no matching [%s] [%s]\n", METADATA_PARSER_NAME,type);
+               return NULL;
+       }
+
+       snprintf(temp_path, sizeof(temp_path) - 1, "%slib%s.so", path, type);
+
+       return strdup(temp_path);
+}
+
+static char *__get_category_parser_plugin(const char *type)
 {
        FILE *fp = NULL;
        char buffer[1024] = { 0 };
@@ -353,13 +357,13 @@ static char *__get_mdparser_plugin(const char *type)
        char *path = NULL;
 
        if (type == NULL) {
-               DBGE("invalid argument\n");
+               _LOGE("invalid argument\n");
                return NULL;
        }
 
        fp = fopen(PKG_PARSER_CONF_PATH, "r");
        if (fp == NULL) {
-               DBGE("no matching mdparser\n");
+               _LOGE("no matching metadata parser\n");
                return NULL;
        }
 
@@ -369,8 +373,8 @@ static char *__get_mdparser_plugin(const char *type)
 
                __str_trim(buffer);
 
-               if ((path = strstr(buffer, MDPARSER_NAME)) != NULL) {
-                       path = path + strlen(MDPARSER_NAME);
+               if ((path = strstr(buffer, CATEGORY_PARSER_NAME)) != NULL) {
+                       path = path + strlen(CATEGORY_PARSER_NAME);
 
                        break;
                }
@@ -382,7 +386,7 @@ static char *__get_mdparser_plugin(const char *type)
                fclose(fp);
 
        if (path == NULL) {
-               DBGE("no matching backendlib\n");
+               _LOGE("no matching [%s] [%s]\n", CATEGORY_PARSER_NAME,type);
                return NULL;
        }
 
@@ -399,13 +403,13 @@ static char *__get_parser_plugin(const char *type)
        char *path = NULL;
 
        if (type == NULL) {
-               DBGE("invalid argument\n");
+               _LOGE("invalid argument\n");
                return NULL;
        }
 
        fp = fopen(PKG_PARSER_CONF_PATH, "r");
        if (fp == NULL) {
-               DBGE("no matching backendlib\n");
+               _LOGE("no matching backendlib\n");
                return NULL;
        }
 
@@ -416,10 +420,7 @@ static char *__get_parser_plugin(const char *type)
                __str_trim(buffer);
 
                if ((path = strstr(buffer, PKG_PARSERLIB)) != NULL) {
-                       DBG("[%s]\n", path);
                        path = path + strlen(PKG_PARSERLIB);
-                       DBG("[%s]\n", path);
-
                        break;
                }
 
@@ -430,22 +431,55 @@ static char *__get_parser_plugin(const char *type)
                fclose(fp);
 
        if (path == NULL) {
-               DBGE("no matching backendlib\n");
+               _LOGE("no matching backendlib\n");
                return NULL;
        }
 
        snprintf(temp_path, sizeof(temp_path) - 1, "%slib%s.so", path, type);
-       DBG("[%s]\n", temp_path);
 
        return strdup(temp_path);
 }
 
-static int __ps_run_mdparser(GList *md_list, const char *tag,
+static int __ps_run_tag_parser(void *lib_handle, xmlDocPtr docPtr, const char *tag,
+                          ACTION_TYPE action, const char *pkgid)
+{
+       int (*plugin_install) (xmlDocPtr, const char *);
+       int ret = -1;
+       char *ac = NULL;
+
+       switch (action) {
+       case ACTION_INSTALL:
+               ac = "PKGMGR_PARSER_PLUGIN_INSTALL";
+               break;
+       case ACTION_UPGRADE:
+               ac = "PKGMGR_PARSER_PLUGIN_UPGRADE";
+               break;
+       case ACTION_UNINSTALL:
+               ac = "PKGMGR_PARSER_PLUGIN_UNINSTALL";
+               break;
+       default:
+               goto END;
+       }
+
+       if ((plugin_install =
+               dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
+               _LOGE("can not find symbol[%s] \n", ac);
+               goto END;
+       }
+
+       ret = plugin_install(docPtr, pkgid);
+       _LOGD("tag parser[%s, %s] ACTION_TYPE[%d] result[%d]\n", pkgid, tag, action, ret);
+
+END:
+       return ret;
+}
+
+static int __ps_run_metadata_parser(GList *md_list, const char *tag,
                                ACTION_TYPE action, const char *pkgid, const char *appid)
 {
        char *lib_path = NULL;
        void *lib_handle = NULL;
-       int (*mdparser_plugin) (const char *, const char *, GList *);
+       int (*metadata_parser_plugin) (const char *, const char *, GList *);
        int ret = -1;
        char *ac = NULL;
 
@@ -463,28 +497,82 @@ static int __ps_run_mdparser(GList *md_list, const char *tag,
                goto END;
        }
 
-       lib_path = __get_mdparser_plugin(tag);
+       lib_path = __get_metadata_parser_plugin(tag);
        if (!lib_path) {
-               DBGE("__get_mdparser_plugin fail\n");
+               _LOGE("get %s parser fail\n", tag);
                goto END;
        }
 
        if ((lib_handle = dlopen(lib_path, RTLD_LAZY)) == NULL) {
-               DBGE("dlopen is failed lib_path[%s]\n", lib_path);
+               _LOGE("dlopen is failed lib_path[%s]\n", lib_path);
                goto END;
        }
 
-       if ((mdparser_plugin =
+       if ((metadata_parser_plugin =
                dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
-               DBGE("can not find symbol \n");
+               _LOGE("can not find symbol[%s] \n",ac);
                goto END;
        }
 
-       ret = mdparser_plugin(pkgid, appid, md_list);
+       ret = metadata_parser_plugin(pkgid, appid, md_list);
        if (ret < 0)
-               DBGE("[appid = %s, libpath = %s] plugin fail\n", appid, lib_path);
+               _LOGD("[appid = %s, libpath = %s plugin fail\n", appid, lib_path);
        else
-               DBGE("[appid = %s, libpath = %s] plugin success\n", appid, lib_path);
+               _LOGD("[appid = %s, libpath = %s plugin success\n", appid, lib_path);
+
+END:
+       if (lib_path)
+               free(lib_path);
+       if (lib_handle)
+               dlclose(lib_handle);
+       return ret;
+}
+
+static int __ps_run_category_parser(GList *category_list, const char *tag,
+                               ACTION_TYPE action, const char *pkgid, const char *appid)
+{
+       char *lib_path = NULL;
+       void *lib_handle = NULL;
+       int (*category_parser_plugin) (const char *, const char *, GList *);
+       int ret = -1;
+       char *ac = NULL;
+
+       switch (action) {
+       case ACTION_INSTALL:
+               ac = "PKGMGR_CATEGORY_PARSER_PLUGIN_INSTALL";
+               break;
+       case ACTION_UPGRADE:
+               ac = "PKGMGR_CATEGORY_PARSER_PLUGIN_UPGRADE";
+               break;
+       case ACTION_UNINSTALL:
+               ac = "PKGMGR_CATEGORY_PARSER_PLUGIN_UNINSTALL";
+               break;
+       default:
+               goto END;
+       }
+
+       lib_path = __get_category_parser_plugin(tag);
+       if (!lib_path) {
+               _LOGE("get %s parser fail\n", tag);
+               goto END;
+       }
+
+       if ((lib_handle = dlopen(lib_path, RTLD_LAZY)) == NULL) {
+               _LOGE("dlopen is failed lib_path[%s]\n", lib_path);
+               goto END;
+       }
+
+       if ((category_parser_plugin =
+               dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
+               _LOGE("can not find symbol[%s] \n",ac);
+               goto END;
+       }
+
+       ret = category_parser_plugin(pkgid, appid, category_list);
+       if (ret < 0)
+               _LOGD("[appid = %s, libpath = %s plugin fail\n", appid, lib_path);
+       else
+               _LOGD("[appid = %s, libpath = %s plugin success\n", appid, lib_path);
 
 END:
        if (lib_path)
@@ -523,16 +611,20 @@ static int __ps_run_parser(xmlDocPtr docPtr, const char *tag,
        }
 
        if ((lib_handle = dlopen(lib_path, RTLD_LAZY)) == NULL) {
-               DBGE("dlopen is failed lib_path[%s]\n", lib_path);
+               _LOGE("dlopen is failed lib_path[%s]\n", lib_path);
                goto END;
        }
        if ((plugin_install =
                dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
-               DBGE("can not find symbol \n");
+               _LOGE("can not find symbol[%s] \n", ac);
                goto END;
        }
 
        ret = plugin_install(docPtr, pkgid);
+       if (ret < 0)
+               _LOGD("[pkgid = %s, libpath = %s plugin fail\n", pkgid, lib_path);
+       else
+               _LOGD("[pkgid = %s, libpath = %s plugin success\n", pkgid, lib_path);
 
 END:
        if (lib_path)
@@ -542,33 +634,33 @@ END:
        return ret;
 }
 
-static char *__pkgid_to_manifest(const char *pkgid)
+static char *__pkgid_to_manifest(const char *pkgid, uid_t uid)
 {
        char *manifest;
        int size;
 
        if (pkgid == NULL) {
-               DBGE("pkgid is NULL");
+               _LOGE("pkgid is NULL");
                return NULL;
        }
 
-       size = strlen(MANIFEST_RW_DIRECTORY) + strlen(pkgid) + 10;
+       size = strlen(getUserManifestPath(uid)) + strlen(pkgid) + 10;
        manifest = malloc(size);
        if (manifest == NULL) {
-               DBGE("No memory");
+               _LOGE("No memory");
                return NULL;
        }
        memset(manifest, '\0', size);
-       snprintf(manifest, size, MANIFEST_RW_DIRECTORY "/%s.xml", pkgid);
+       snprintf(manifest, size, "%s%s.xml", getUserManifestPath(uid), pkgid);
 
        if (access(manifest, F_OK)) {
-               snprintf(manifest, size, MANIFEST_RO_DIRECTORY "/%s.xml", pkgid);
+               snprintf(manifest, size, "%s%s.xml", getUserManifestPath(uid), pkgid);
        }
 
        return manifest;
 }
 
-static void __mdparser_clear_dir_list(GList* dir_list)
+static void __metadata_parser_clear_dir_list(GList* dir_list)
 {
        GList *list = NULL;
        __metadata_t* detail = NULL;
@@ -590,7 +682,109 @@ static void __mdparser_clear_dir_list(GList* dir_list)
        }
 }
 
-static int __run_mdparser_prestep (manifest_x *mfx, char *md_key, ACTION_TYPE action)
+static void __category_parser_clear_dir_list(GList* dir_list)
+{
+       GList *list = NULL;
+       __category_t* detail = NULL;
+
+       if (dir_list) {
+               list = g_list_first(dir_list);
+               while (list) {
+                       detail = (__category_t *)list->data;
+                       if (detail) {
+                               if (detail->name)
+                                       free(detail->name);
+
+                               free(detail);
+                       }
+                       list = g_list_next(list);
+               }
+               g_list_free(dir_list);
+       }
+}
+
+static int __run_tag_parser_prestep(void *lib_handle, xmlTextReaderPtr reader, ACTION_TYPE action, const char *pkgid)
+{
+       int ret = -1;
+       const xmlChar *name;
+
+       if (xmlTextReaderDepth(reader) != 1) {
+               _LOGE("Node depth is not 1");
+               goto END;
+       }
+
+       if (xmlTextReaderNodeType(reader) != 1) {
+               _LOGE("Node type is not 1");
+               goto END;
+       }
+
+       const xmlChar *value;
+       name = xmlTextReaderConstName(reader);
+       if (name == NULL) {
+               _LOGE("TEST TEST TES\n");
+               name = BAD_CAST "--";
+       }
+
+       value = xmlTextReaderConstValue(reader);
+       if (value != NULL) {
+               if (xmlStrlen(value) > 40) {
+                       _LOGD(" %.40s...", value);
+               } else {
+                       _LOGD(" %s", value);
+               }
+       }
+
+       name = xmlTextReaderConstName(reader);
+       if (name == NULL) {
+               _LOGE("TEST TEST TES\n");
+               name = BAD_CAST "--";
+       }
+
+       xmlDocPtr docPtr = xmlTextReaderCurrentDoc(reader);
+       xmlDocPtr copyDocPtr = xmlCopyDoc(docPtr, 1);
+       if (copyDocPtr == NULL)
+               return -1;
+       xmlNode *rootElement = xmlDocGetRootElement(copyDocPtr);
+       if (rootElement == NULL)
+               return -1;
+       xmlNode *cur_node = xmlFirstElementChild(rootElement);
+       if (cur_node == NULL)
+               return -1;
+       xmlNode *temp = xmlTextReaderExpand(reader);
+       if (temp == NULL)
+               return -1;
+       xmlNode *next_node = NULL;
+       while(cur_node != NULL) {
+               if ( (strcmp(ASCII(temp->name), ASCII(cur_node->name)) == 0) &&
+                       (temp->line == cur_node->line) ) {
+                       break;
+               }
+               else {
+                       next_node = xmlNextElementSibling(cur_node);
+                       xmlUnlinkNode(cur_node);
+                       xmlFreeNode(cur_node);
+                       cur_node = next_node;
+               }
+       }
+       if (cur_node == NULL)
+               return -1;
+       next_node = xmlNextElementSibling(cur_node);
+       if (next_node) {
+               cur_node->next = NULL;
+               next_node->prev = NULL;
+               xmlFreeNodeList(next_node);
+               xmlSetTreeDoc(cur_node, copyDocPtr);
+       } else {
+               xmlSetTreeDoc(cur_node, copyDocPtr);
+       }
+
+       ret = __ps_run_tag_parser(lib_handle, copyDocPtr, ASCII(name), action, pkgid);
+ END:
+
+       return ret;
+}
+
+static int __run_metadata_parser_prestep (manifest_x *mfx, char *md_key, ACTION_TYPE action)
 {
        int ret = -1;
        int tag_exist = 0;
@@ -604,29 +798,28 @@ static int __run_mdparser_prestep (manifest_x *mfx, char *md_key, ACTION_TYPE ac
 
        md_tag = __get_tag_by_key(md_key);
        if (md_tag == NULL) {
-               DBG("md_tag is NULL\n");
+               _LOGD("md_tag is NULL\n");
                return -1;
        }
-       DBG("md_tag = %s\n", md_tag);
 
        while(up != NULL)
        {
                md = up->metadata;
                while (md != NULL)
                {
-                       //get glist of meatdata key and value combination
+                       //get glist of metadata key and value combination
                        memset(buffer, 0x00, 1024);
                        snprintf(buffer, 1024, "%s/", md_key);
                        if ((md->key && md->value) && (strncmp(md->key, md_key, strlen(md_key)) == 0) && (strncmp(buffer, md->key, strlen(buffer)) == 0)) {
                                md_detail = (__metadata_t*) calloc(1, sizeof(__metadata_t));
                                if (md_detail == NULL) {
-                                       DBG("Memory allocation failed\n");
+                                       _LOGD("Memory allocation failed\n");
                                        goto END;
                                }
 
                                md_detail->key = (char*) calloc(1, sizeof(char)*(strlen(md->key)+2));
                                if (md_detail->key == NULL) {
-                                       DBG("Memory allocation failed\n");
+                                       _LOGD("Memory allocation failed\n");
                                        free(md_detail);
                                        goto END;
                                }
@@ -634,7 +827,7 @@ static int __run_mdparser_prestep (manifest_x *mfx, char *md_key, ACTION_TYPE ac
 
                                md_detail->value = (char*) calloc(1, sizeof(char)*(strlen(md->value)+2));
                                if (md_detail->value == NULL) {
-                                       DBG("Memory allocation failed\n");
+                                       _LOGD("Memory allocation failed\n");
                                        free(md_detail->key);
                                        free(md_detail);
                                        goto END;
@@ -649,13 +842,15 @@ static int __run_mdparser_prestep (manifest_x *mfx, char *md_key, ACTION_TYPE ac
 
                //send glist to parser when tags for metadata plugin parser exist.
                if (tag_exist) {
-                       ret = __ps_run_mdparser(md_list, md_tag, action, mfx->package, up->appid);
-                       if (ret < 0)
-                               DBG("mdparser failed[%d]\n", ret);
-                       else
-                               DBG("mdparser success, done[%d]\n", ret);
+                       ret = __ps_run_metadata_parser(md_list, md_tag, action, mfx->package, up->appid);
+                       if (ret < 0){
+                               _LOGD("metadata_parser failed[%d] for tag[%s]\n", ret, md_tag);
+                       }
+                       else{
+                               _LOGD("metadata_parser success for tag[%s]\n", md_tag);
+                       }
                }
-               __mdparser_clear_dir_list(md_list);
+               __metadata_parser_clear_dir_list(md_list);
                md_list = NULL;
                tag_exist = 0;
                up = up->next;
@@ -663,7 +858,7 @@ static int __run_mdparser_prestep (manifest_x *mfx, char *md_key, ACTION_TYPE ac
 
        return 0;
 END:
-       __mdparser_clear_dir_list(md_list);
+       __metadata_parser_clear_dir_list(md_list);
 
        if (md_tag)
                free(md_tag);
@@ -671,55 +866,124 @@ END:
        return ret;
 }
 
+static int __run_category_parser_prestep (manifest_x *mfx, char *category_key, ACTION_TYPE action)
+{
+       int ret = -1;
+       int tag_exist = 0;
+       char buffer[1024] = { 0, };
+       uiapplication_x *up = mfx->uiapplication;
+       category_x *category = NULL;
+       char *category_tag = NULL;
+
+       GList *category_list = NULL;
+       __category_t *category_detail = NULL;
+
+       category_tag = __get_tag_by_key(category_key);
+       if (category_tag == NULL) {
+               _LOGD("md_tag is NULL\n");
+               return -1;
+       }
+
+       while(up != NULL)
+       {
+               category = up->category;
+               while (category != NULL)
+               {
+                       //get glist of category key and value combination
+                       memset(buffer, 0x00, 1024);
+                       snprintf(buffer, 1024, "%s/", category_key);
+                       if ((category->name) && (strncmp(category->name, category_key, strlen(category_key)) == 0)) {
+                               category_detail = (__category_t*) calloc(1, sizeof(__category_t));
+                               if (category_detail == NULL) {
+                                       _LOGD("Memory allocation failed\n");
+                                       goto END;
+                               }
+
+                               category_detail->name = (char*) calloc(1, sizeof(char)*(strlen(category->name)+2));
+                               if (category_detail->name == NULL) {
+                                       _LOGD("Memory allocation failed\n");
+                                       free(category_detail);
+                                       goto END;
+                               }
+                               snprintf(category_detail->name, (strlen(category->name)+1), "%s", category->name);
+
+                               category_list = g_list_append(category_list, (gpointer)category_detail);
+                               tag_exist = 1;
+                       }
+                       category = category->next;
+               }
+
+               //send glist to parser when tags for metadata plugin parser exist.
+               if (tag_exist) {
+                       ret = __ps_run_category_parser(category_list, category_tag, action, mfx->package, up->appid);
+                       if (ret < 0)
+                               _LOGD("category_parser failed[%d] for tag[%s]\n", ret, category_tag);
+                       else
+                               _LOGD("category_parser success for tag[%s]\n", category_tag);
+               }
+               __category_parser_clear_dir_list(category_list);
+               category_list = NULL;
+               tag_exist = 0;
+               up = up->next;
+       }
+
+       return 0;
+END:
+       __category_parser_clear_dir_list(category_list);
+
+       if (category_tag)
+               free(category_tag);
+
+       return ret;
+}
+
 static int __run_parser_prestep(xmlTextReaderPtr reader, ACTION_TYPE action, const char *pkgid)
 {
        int ret = -1;
        const xmlChar *name;
 
-       DBG("__run_parser_prestep");
+//     _LOGD("__run_parser_prestep");
 
        if (xmlTextReaderDepth(reader) != 1) {
-               DBGE("Node depth is not 1");
+               _LOGE("Node depth is not 1");
                goto END;
        }
 
        if (xmlTextReaderNodeType(reader) != 1) {
-               DBGE("Node type is not 1");
+               _LOGE("Node type is not 1");
                goto END;
        }
 
        const xmlChar *value;
        name = xmlTextReaderConstName(reader);
        if (name == NULL) {
-               DBGE("TEST TEST TES\n");
+               _LOGE("TEST TEST TES\n");
                name = BAD_CAST "--";
        }
 
        value = xmlTextReaderConstValue(reader);
-       DBG("%d %d %s %d %d",
+       _LOGD("%d %d %s %d %d",
            xmlTextReaderDepth(reader),
            xmlTextReaderNodeType(reader),
            name,
            xmlTextReaderIsEmptyElement(reader), xmlTextReaderHasValue(reader));
 
-       if (value == NULL) {
-               DBG("ConstValue NULL");
-       } else {
+       if (value != NULL) {
                if (xmlStrlen(value) > 40) {
-                       DBG(" %.40s...", value);
+                       _LOGD(" %.40s...", value);
                } else {
-                       DBG(" %s", value);
+                       _LOGD(" %s", value);
                }
        }
 
        name = xmlTextReaderConstName(reader);
        if (name == NULL) {
-               DBGE("TEST TEST TES\n");
+               _LOGE("TEST TEST TES\n");
                name = BAD_CAST "--";
        }
 
        xmlDocPtr docPtr = xmlTextReaderCurrentDoc(reader);
-       DBG("docPtr->URL %s\n", (char *)docPtr->URL);
+       _LOGD("docPtr->URL %s\n", (char *)docPtr->URL);
        xmlDocPtr copyDocPtr = xmlCopyDoc(docPtr, 1);
        if (copyDocPtr == NULL)
                return -1;
@@ -760,7 +1024,7 @@ static int __run_parser_prestep(xmlTextReaderPtr reader, ACTION_TYPE action, con
 #ifdef __DEBUG__
 
 //#else
-       DBG("node type: %d, name: %s children->name: %s last->name: %s\n"
+       _LOGD("node type: %d, name: %s children->name: %s last->name: %s\n"
            "parent->name: %s next->name: %s prev->name: %s\n",
            cur_node->type, cur_node->name,
            cur_node->children ? cur_node->children->name : "NULL",
@@ -769,9 +1033,8 @@ static int __run_parser_prestep(xmlTextReaderPtr reader, ACTION_TYPE action, con
            cur_node->next ? cur_node->next->name : "NULL",
            cur_node->prev ? cur_node->prev->name : "NULL");
 
-       FILE *fp = fopen("/opt/share/test.xml", "a");
+       FILE *fp = fopen(tzplatform_mkpath(TZ_SYS_SHARE, "test.xml"), "a");
        xmlDocDump(fp, copyDocPtr);
-       fprintf(fp, "\n");
        fclose(fp);
 #endif
 
@@ -790,7 +1053,7 @@ __processNode(xmlTextReaderPtr reader, ACTION_TYPE action, char *const tagv[], c
        switch (xmlTextReaderNodeType(reader)) {
        case XML_READER_TYPE_END_ELEMENT:
                {
-                       //            DBG("XML_READER_TYPE_END_ELEMENT");
+                       //            _LOGD("XML_READER_TYPE_END_ELEMENT");
                        break;
                }
 
@@ -802,29 +1065,29 @@ __processNode(xmlTextReaderPtr reader, ACTION_TYPE action, char *const tagv[], c
                        const xmlChar *elementName =
                            xmlTextReaderLocalName(reader);
                        if (elementName == NULL) {
-//                             DBG("elementName %s\n", (char *)elementName);
+//                             _LOGD("elementName %s\n", (char *)elementName);
                                break;
                        }
 
                        const xmlChar *nameSpace =
                            xmlTextReaderConstNamespaceUri(reader);
                        if (nameSpace) {
-//                             DBG("nameSpace %s\n", (char *)nameSpace);
+//                             _LOGD("nameSpace %s\n", (char *)nameSpace);
                        }
 /*
-                       DBG("XML_READER_TYPE_ELEMENT %s, %s\n",
+                       _LOGD("XML_READER_TYPE_ELEMENT %s, %s\n",
                            elementName ? elementName : "NULL",
                            nameSpace ? nameSpace : "NULL");
 */
                        if (tagv == NULL) {
-                               DBG("__run_parser_prestep pkgid[%s]\n", pkgid);
+                               _LOGD("__run_parser_prestep pkgid[%s]\n", pkgid);
                                __run_parser_prestep(reader, action, pkgid);
                        }
                        else {
                                i = 0;
                                for (tag = tagv[0]; tag; tag = tagv[++i])
                                        if (strcmp(tag, ASCII(elementName)) == 0) {
-                                               DBG("__run_parser_prestep tag[%s] pkgid[%s]\n", tag, pkgid);
+                                               _LOGD("__run_parser_prestep tag[%s] pkgid[%s]\n", tag, pkgid);
                                                __run_parser_prestep(reader,
                                                                     action, pkgid);
                                                break;
@@ -838,21 +1101,208 @@ __processNode(xmlTextReaderPtr reader, ACTION_TYPE action, char *const tagv[], c
                {
                        const xmlChar *value = xmlTextReaderConstValue(reader);
                        if (value) {
-//                             DBG("value %s\n", value);
+//                             _LOGD("value %s\n", value);
                        }
 
                        const xmlChar *lang = xmlTextReaderConstXmlLang(reader);
                        if (lang) {
-//                             DBG("lang\n", lang);
+//                             _LOGD("lang\n", lang);
                        }
 
-/*                     DBG("XML_READER_TYPE_TEXT %s, %s\n",
+/*                     _LOGD("XML_READER_TYPE_TEXT %s, %s\n",
                            value ? value : "NULL", lang ? lang : "NULL");
 */
                        break;
                }
        default:
-//             DBG("Ignoring Node of Type: %d", xmlTextReaderNodeType(reader));
+//             _LOGD("Ignoring Node of Type: %d", xmlTextReaderNodeType(reader));
+               break;
+       }
+}
+
+static void
+__processTag(void *lib_handle, xmlTextReaderPtr reader, ACTION_TYPE action, char *tag, const char *pkgid)
+{
+       switch (xmlTextReaderNodeType(reader)) {
+       case XML_READER_TYPE_END_ELEMENT:
+               {
+                       break;
+               }
+       case XML_READER_TYPE_ELEMENT:
+               {
+                       // Elements without closing tag don't receive
+                       const xmlChar *elementName =
+                           xmlTextReaderLocalName(reader);
+                       if (elementName == NULL) {
+                               break;
+                       }
+
+                       if (strcmp(tag, ASCII(elementName)) == 0) {
+                               _LOGD("find : tag[%s] ACTION_TYPE[%d] pkg[%s]\n", tag, action, pkgid);
+                               __run_tag_parser_prestep(lib_handle, reader, action, pkgid);
+                               break;
+                       }
+                       break;
+               }
+
+       default:
+               break;
+       }
+}
+
+static int __parser_send_tag(void *lib_handle, ACTION_TYPE action, PLUGIN_PROCESS_TYPE process, const char *pkgid)
+{
+       int (*plugin_install) (const char *);
+       int ret = -1;
+       char *ac = NULL;
+
+       if (process == PLUGIN_PRE_PROCESS) {
+               switch (action) {
+               case ACTION_INSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_PRE_INSTALL";
+                       break;
+               case ACTION_UPGRADE:
+                       ac = "PKGMGR_PARSER_PLUGIN_PRE_UPGRADE";
+                       break;
+               case ACTION_UNINSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_PRE_UNINSTALL";
+                       break;
+               default:
+                       return -1;
+               }
+       } else if (process == PLUGIN_POST_PROCESS) {
+               switch (action) {
+               case ACTION_INSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_POST_INSTALL";
+                       break;
+               case ACTION_UPGRADE:
+                       ac = "PKGMGR_PARSER_PLUGIN_POST_UPGRADE";
+                       break;
+               case ACTION_UNINSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_POST_UNINSTALL";
+                       break;
+               default:
+                       return -1;
+               }
+       } else
+               return -1;
+
+       if ((plugin_install =
+               dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
+               return -1;
+       }
+
+       ret = plugin_install(pkgid);
+       return ret;
+}
+
+static void __plugin_send_tag(const char *tag, ACTION_TYPE action, PLUGIN_PROCESS_TYPE process, const char *pkgid)
+{
+       char *lib_path = NULL;
+       void *lib_handle = NULL;
+       int (*plugin_install) (const char *);
+       int ret = -1;
+       char *ac = NULL;
+
+       if (process == PLUGIN_PRE_PROCESS) {
+               switch (action) {
+               case ACTION_INSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_PRE_INSTALL";
+                       break;
+               case ACTION_UPGRADE:
+                       ac = "PKGMGR_PARSER_PLUGIN_PRE_UPGRADE";
+                       break;
+               case ACTION_UNINSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_PRE_UNINSTALL";
+                       break;
+               default:
+                       goto END;
+               }
+       } else if (process == PLUGIN_POST_PROCESS) {
+               switch (action) {
+               case ACTION_INSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_POST_INSTALL";
+                       break;
+               case ACTION_UPGRADE:
+                       ac = "PKGMGR_PARSER_PLUGIN_POST_UPGRADE";
+                       break;
+               case ACTION_UNINSTALL:
+                       ac = "PKGMGR_PARSER_PLUGIN_POST_UNINSTALL";
+                       break;
+               default:
+                       goto END;
+               }
+       } else
+               goto END;
+
+       lib_path = __get_parser_plugin(tag);
+       if (!lib_path) {
+               goto END;
+       }
+
+       if ((lib_handle = dlopen(lib_path, RTLD_LAZY)) == NULL) {
+               _LOGE("dlopen is failed lib_path[%s] for tag[%s]\n", lib_path, tag);
+               goto END;
+       }
+       if ((plugin_install =
+               dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
+//             _LOGE("can not find symbol[%s] for tag[%s] \n", ac, tag);
+               goto END;
+       }
+
+       ret = plugin_install(pkgid);
+       if (ret < 0)
+               _LOGD("[PLUGIN_PROCESS_TYPE[%d] pkgid=%s, tag=%s plugin fail\n", process, pkgid, tag);
+       else
+               _LOGD("[PLUGIN_PROCESS_TYPE[%d] pkgid=%s, tag=%s plugin success\n", process, pkgid, tag);
+
+END:
+       if (lib_path)
+               free(lib_path);
+       if (lib_handle)
+               dlclose(lib_handle);
+}
+
+static void
+__plugin_process_tag(char *const tag_list[], ACTION_TYPE action, PLUGIN_PROCESS_TYPE process, const char *pkgid)
+{
+       char *tag = NULL;
+       int i = 0;
+
+       for (tag = tag_list[0]; tag; tag = tag_list[++i])
+               __plugin_send_tag(tag, action, process, pkgid);
+
+}
+
+static void
+__plugin_save_tag(xmlTextReaderPtr reader, char *const tagv[], char *tag_list[])
+{
+       char *tag = NULL;
+       int i = 0;
+       static int pre_cnt=0;
+
+       switch (xmlTextReaderNodeType(reader)) {
+       case XML_READER_TYPE_ELEMENT:
+               {
+                       const xmlChar *elementName = xmlTextReaderLocalName(reader);
+                       if (elementName == NULL) {
+                               break;
+                       }
+                       i = 0;
+                       for (tag = tag_list[0]; tag; tag = tag_list[++i])
+                               if (strcmp(ASCII(elementName), tag) == 0) {
+                                       return;
+                               }
+                       i = 0;
+                       for (tag = tagv[0]; tag; tag = tagv[++i])
+                               if (strcmp(tag, ASCII(elementName)) == 0) {
+                                       tag_list[pre_cnt++] = tag;
+                                       break;
+                               }
+                       break;
+               }
+       default:
+//             _LOGD("Ignoring Node of Type: %d", xmlTextReaderNodeType(reader));
                break;
        }
 }
@@ -863,6 +1313,7 @@ __streamFile(const char *filename, ACTION_TYPE action, char *const tagv[], const
        xmlTextReaderPtr reader;
        xmlDocPtr docPtr;
        int ret;
+       __plugin_process_tag(tagv, action, PLUGIN_PRE_PROCESS, pkgid);
 
        docPtr = xmlReadFile(filename, NULL, 0);
        reader = xmlReaderWalker(docPtr);
@@ -875,11 +1326,13 @@ __streamFile(const char *filename, ACTION_TYPE action, char *const tagv[], const
                xmlFreeTextReader(reader);
 
                if (ret != 0) {
-                       DBGE("%s : failed to parse", filename);
+                       _LOGD("%s : failed to parse", filename);
                }
        } else {
-               DBGE("Unable to open %s", filename);
+               _LOGD("Unable to open %s", filename);
        }
+
+       __plugin_process_tag(tagv, action, PLUGIN_POST_PROCESS, pkgid);
 }
 
 static int __next_child_element(xmlTextReaderPtr reader, int depth)
@@ -913,6 +1366,43 @@ static int __next_child_element(xmlTextReaderPtr reader, int depth)
        return ret;
 }
 
+static bool __check_action_fota(char *const tagv[])
+{
+       int i = 0;
+       char delims[] = "=";
+       char *ret_result = NULL;
+       char *tag = NULL;
+       int ret = false;
+
+       if (tagv == NULL)
+               return ret;
+
+       for (tag = strdup(tagv[0]); tag != NULL; ) {
+               ret_result = strtok(tag, delims);
+
+               /*check tag :  fota is true */
+               if (strcmp(ret_result, "fota") == 0) {
+                       ret_result = strtok(NULL, delims);
+                       if (strcmp(ret_result, "true") == 0) {
+                               ret = true;
+                       }
+               } else
+                       _LOGD("tag process [%s]is not defined\n", ret_result);
+
+               free(tag);
+
+               /*check next value*/
+               if (tagv[++i] != NULL)
+                       tag = strdup(tagv[i]);
+               else {
+                       _LOGD("tag process success...%d\n" , ret);
+                       return ret;
+               }
+       }
+
+       return ret;
+}
+
 static void __ps_free_category(category_x *category)
 {
        if (category == NULL)
@@ -1542,6 +2032,10 @@ static void __ps_free_uiapplication(uiapplication_x *uiapplication)
                free((void *)uiapplication->hwacceleration);
                uiapplication->hwacceleration = NULL;
        }
+       if (uiapplication->screenreader) {
+               free((void *)uiapplication->screenreader);
+               uiapplication->screenreader = NULL;
+       }
        if (uiapplication->mainapp) {
                free((void *)uiapplication->mainapp);
                uiapplication->mainapp = NULL;
@@ -1929,39 +2423,77 @@ static void __ps_free_ime(ime_x *ime)
        ime = NULL;
 }
 
-static void __ps_apply_shared_privileges(manifest_x * mfx, const char *manifest)
+int __ps_process_tag_parser(manifest_x *mfx, const char *filename, ACTION_TYPE action)
 {
-       int home_dir = 0;
+       xmlTextReaderPtr reader;
+       xmlDocPtr docPtr;
+       int ret = -1;
+       FILE *fp = NULL;
+       void *lib_handle = NULL;
+       char tag[PKG_STRING_LEN_MAX] = { 0 };
 
-       if(strstr(manifest, MANIFEST_RO_PREFIX))
-               home_dir = 0;
-       else
-               home_dir = 1;
+       fp = fopen(TAG_PARSER_LIST, "r");
+       retvm_if(fp == NULL, PMINFO_R_ERROR, "no preload list");
+
+       while (fgets(tag, sizeof(tag), fp) != NULL) {
+               __str_trim(tag);
+
+               lib_handle = __open_lib_handle(tag);
+               if (lib_handle == NULL)
+                       continue;
+
+               ret = __parser_send_tag(lib_handle, action, PLUGIN_PRE_PROCESS, mfx->package);
+               _LOGD("PLUGIN_PRE_PROCESS[%s, %s] ACTION_TYPE[%d] result[%d]\n", mfx->package, tag, action, ret);
 
-       if ((strcmp(mfx->type,"tpk")!=0) || (strcmp(mfx->type,"wgt")!=0)){
-               DBG("rpm pkg is detected, apply smack\n");
-               __apply_shared_privileges(mfx->package, home_dir);
+               docPtr = xmlReadFile(filename, NULL, 0);
+               reader = xmlReaderWalker(docPtr);
+               if (reader != NULL) {
+                       ret = xmlTextReaderRead(reader);
+                       while (ret == 1) {
+                               __processTag(lib_handle, reader, action, tag, mfx->package);
+                               ret = xmlTextReaderRead(reader);
+                       }
+                       xmlFreeTextReader(reader);
+
+                       if (ret != 0) {
+                               _LOGD("%s : failed to parse", filename);
+                       }
+               } else {
+                       _LOGD("Unable to open %s", filename);
+               }
+
+               ret = __parser_send_tag(lib_handle, action, PLUGIN_POST_PROCESS, mfx->package);
+               _LOGD("PLUGIN_POST_PROCESS[%s, %s] ACTION_TYPE[%d] result[%d]\n", mfx->package, tag, action, ret);
+
+               __close_lib_handle(lib_handle);
+
+               memset(tag, 0x00, sizeof(tag));
        }
+
+       if (fp != NULL)
+               fclose(fp);
+
+       return 0;
 }
 
-static void  __ps_process_smack()
+int __ps_process_metadata_parser(manifest_x *mfx, ACTION_TYPE action)
 {
+       fprintf(stdout,"__ps_process_metadata_parser\n");
+       int ret = -1;
        FILE *fp = NULL;
-       char pkgid[PKG_STRING_LEN_MAX] = { 0 };
+       char md_key[PKG_STRING_LEN_MAX] = { 0 };
 
-       fp = fopen(SMACK_LIST, "r");
+       fp = fopen(METADATA_PARSER_LIST, "r");
        if (fp == NULL) {
-               DBG("no preload list\n");
+               _LOGD("no preload list\n");
                return -1;
        }
+       
+       while (fgets(md_key, sizeof(md_key), fp) != NULL) {
+               __str_trim(md_key);
+               ret = __run_metadata_parser_prestep(mfx, md_key, action);
 
-       while (fgets(pkgid, sizeof(pkgid), fp) != NULL) {
-               __str_trim(pkgid);
-               DBG("pkgid = %s\n", pkgid);
-
-               __apply_shared_privileges(pkgid,0);
-
-               memset(pkgid, 0x00, sizeof(pkgid));
+               memset(md_key, 0x00, sizeof(md_key));
        }
 
        if (fp != NULL)
@@ -1970,25 +2502,23 @@ static void  __ps_process_smack()
        return 0;
 }
 
-int __ps_process_mdparser(manifest_x *mfx, ACTION_TYPE action)
+int __ps_process_category_parser(manifest_x *mfx, ACTION_TYPE action)
 {
        int ret = -1;
        FILE *fp = NULL;
-       char md_key[PKG_STRING_LEN_MAX] = { 0 };
+       char category_key[PKG_STRING_LEN_MAX] = { 0 };
 
-       fp = fopen(MDPARSER_LIST, "r");
+       fp = fopen(CATEGORY_PARSER_LIST, "r");
        if (fp == NULL) {
-               DBG("no preload list\n");
+               _LOGD("no category parser list\n");
                return -1;
        }
 
-       while (fgets(md_key, sizeof(md_key), fp) != NULL) {
-               __str_trim(md_key);
-               DBG("md_key = %s\n", md_key);
+       while (fgets(category_key, sizeof(category_key), fp) != NULL) {
+               __str_trim(category_key);
+               ret = __run_category_parser_prestep(mfx, category_key, action);
 
-               ret = __run_mdparser_prestep(mfx, md_key, action);
-
-               memset(md_key, 0x00, sizeof(md_key));
+               memset(category_key, 0x00, sizeof(category_key));
        }
 
        if (fp != NULL)
@@ -2151,14 +2681,14 @@ static int __ps_process_define(xmlTextReaderPtr reader, define_x *define)
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "allowed")) {
                        allowed_x *allowed= malloc(sizeof(allowed_x));
                        if (allowed == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(allowed, '\0', sizeof(allowed_x));
@@ -2167,7 +2697,7 @@ static int __ps_process_define(xmlTextReaderPtr reader, define_x *define)
                } else if (!strcmp(ASCII(node), "request")) {
                        request_x *request = malloc(sizeof(request_x));
                        if (request == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(request, '\0', sizeof(request_x));
@@ -2176,7 +2706,7 @@ static int __ps_process_define(xmlTextReaderPtr reader, define_x *define)
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing define failed\n");
+                       _LOGD("Processing define failed\n");
                        return ret;
                }
        }
@@ -2205,54 +2735,54 @@ static int __ps_process_appcontrol(xmlTextReaderPtr reader, appcontrol_x *appcon
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "operation")) {
                        operation_x *operation = malloc(sizeof(operation_x));
                        if (operation == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(operation, '\0', sizeof(operation_x));
                        LISTADD(appcontrol->operation, operation);
                        ret = __ps_process_operation(reader, operation);
-                       DBG("operation processing\n");
+                       _LOGD("operation processing\n");
                } else if (!strcmp(ASCII(node), "uri")) {
                        uri_x *uri= malloc(sizeof(uri_x));
                        if (uri == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(uri, '\0', sizeof(uri_x));
                        LISTADD(appcontrol->uri, uri);
                        ret = __ps_process_uri(reader, uri);
-                       DBG("uri processing\n");
+                       _LOGD("uri processing\n");
                } else if (!strcmp(ASCII(node), "mime")) {
                        mime_x *mime = malloc(sizeof(mime_x));
                        if (mime == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(mime, '\0', sizeof(mime_x));
                        LISTADD(appcontrol->mime, mime);
                        ret = __ps_process_mime(reader, mime);
-                       DBG("mime processing\n");
+                       _LOGD("mime processing\n");
                } else if (!strcmp(ASCII(node), "subapp")) {
                        subapp_x *subapp = malloc(sizeof(subapp_x));
                        if (subapp == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(subapp, '\0', sizeof(subapp_x));
                        LISTADD(appcontrol->subapp, subapp);
                        ret = __ps_process_subapp(reader, subapp);
-                       DBG("subapp processing\n");
+                       _LOGD("subapp processing\n");
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing appcontrol failed\n");
+                       _LOGD("Processing appcontrol failed\n");
                        return ret;
                }
        }
@@ -2294,54 +2824,54 @@ static int __ps_process_appsvc(xmlTextReaderPtr reader, appsvc_x *appsvc)
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "operation")) {
                        operation_x *operation = malloc(sizeof(operation_x));
                        if (operation == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(operation, '\0', sizeof(operation_x));
                        LISTADD(appsvc->operation, operation);
                        ret = __ps_process_operation(reader, operation);
-                       DBG("operation processing\n");
+                       _LOGD("operation processing\n");
                } else if (!strcmp(ASCII(node), "uri")) {
                        uri_x *uri= malloc(sizeof(uri_x));
                        if (uri == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(uri, '\0', sizeof(uri_x));
                        LISTADD(appsvc->uri, uri);
                        ret = __ps_process_uri(reader, uri);
-                       DBG("uri processing\n");
+                       _LOGD("uri processing\n");
                } else if (!strcmp(ASCII(node), "mime")) {
                        mime_x *mime = malloc(sizeof(mime_x));
                        if (mime == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(mime, '\0', sizeof(mime_x));
                        LISTADD(appsvc->mime, mime);
                        ret = __ps_process_mime(reader, mime);
-                       DBG("mime processing\n");
+                       _LOGD("mime processing\n");
                } else if (!strcmp(ASCII(node), "subapp")) {
                        subapp_x *subapp = malloc(sizeof(subapp_x));
                        if (subapp == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(subapp, '\0', sizeof(subapp_x));
                        LISTADD(appsvc->subapp, subapp);
                        ret = __ps_process_subapp(reader, subapp);
-                       DBG("subapp processing\n");
+                       _LOGD("subapp processing\n");
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing appsvc failed\n");
+                       _LOGD("Processing appsvc failed\n");
                        return ret;
                }
        }
@@ -2381,14 +2911,14 @@ static int __ps_process_privileges(xmlTextReaderPtr reader, privileges_x *privil
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (strcmp(ASCII(node), "privilege") == 0) {
                        privilege_x *privilege = malloc(sizeof(privilege_x));
                        if (privilege == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(privilege, '\0', sizeof(privilege_x));
@@ -2397,7 +2927,7 @@ static int __ps_process_privileges(xmlTextReaderPtr reader, privileges_x *privil
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing privileges failed\n");
+                       _LOGD("Processing privileges failed\n");
                        return ret;
                }
        }
@@ -2419,14 +2949,14 @@ static int __ps_process_launchconditions(xmlTextReaderPtr reader, launchconditio
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (strcmp(ASCII(node), "condition") == 0) {
                        condition_x *condition = malloc(sizeof(condition_x));
                        if (condition == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(condition, '\0', sizeof(condition_x));
@@ -2435,7 +2965,7 @@ static int __ps_process_launchconditions(xmlTextReaderPtr reader, launchconditio
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing launchconditions failed\n");
+                       _LOGD("Processing launchconditions failed\n");
                        return ret;
                }
        }
@@ -2462,14 +2992,14 @@ static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashar
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "define")) {
                        define_x *define= malloc(sizeof(define_x));
                        if (define == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(define, '\0', sizeof(define_x));
@@ -2478,7 +3008,7 @@ static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashar
                } else if (!strcmp(ASCII(node), "request")) {
                        request_x *request= malloc(sizeof(request_x));
                        if (request == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(request, '\0', sizeof(request_x));
@@ -2487,7 +3017,7 @@ static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashar
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing data-share failed\n");
+                       _LOGD("Processing data-share failed\n");
                        return ret;
                }
        }
@@ -2503,19 +3033,23 @@ static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashar
 }
 
 static char*
-__get_icon_with_path(const char* icon)
+__get_icon_with_path(const char* icon, uid_t uid)
 {
        if (!icon)
                return NULL;
 
        if (index(icon, '/') == NULL) {
                char* theme = NULL;
+               char* iconPath = NULL;
                char* icon_with_path = NULL;
+               char *app_path = NULL;
                int len;
 
                if (!package)
                        return NULL;
 
+/* "db/setting/theme" is not exist */
+#if 0
                theme = vconf_get_str("db/setting/theme");
                if (!theme) {
                        theme = strdup("default");
@@ -2523,47 +3057,33 @@ __get_icon_with_path(const char* icon)
                                return NULL;
                        }
                }
+#else
+               theme = strdup("default");
+#endif
 
                len = (0x01 << 7) + strlen(icon) + strlen(package) + strlen(theme);
                icon_with_path = malloc(len);
                if(icon_with_path == NULL) {
-                       DBG("(icon_with_path == NULL) return\n");
+                       _LOGD("(icon_with_path == NULL) return\n");
                        free(theme);
                        return NULL;
                }
 
                memset(icon_with_path, 0, len);
-
-               snprintf(icon_with_path, len, "/opt/share/icons/%s/small/%s", theme, icon);
-               do {
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       snprintf(icon_with_path, len, "/usr/share/icons/%s/small/%s", theme, icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       DBG("cannot find icon %s", icon_with_path);
-                       snprintf(icon_with_path, len,"/opt/share/icons/default/small/%s", icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       snprintf(icon_with_path, len, "/usr/share/icons/default/small/%s", icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-
-                       /* icon path is going to be moved intto the app directory */
-                       DBGE("icon file must be moved to %s", icon_with_path);
-                       snprintf(icon_with_path, len, "/opt/apps/%s/res/icons/%s/small/%s", package, theme, icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       snprintf(icon_with_path, len, "/usr/apps/%s/res/icons/%s/small/%s", package, theme, icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       DBG("cannot find icon %s", icon_with_path);
-                       snprintf(icon_with_path, len, "/opt/apps/%s/res/icons/default/small/%s", package, icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       snprintf(icon_with_path, len, "/usr/apps/%s/res/icons/default/small/%s", package, icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-                       snprintf(icon_with_path, len, "/usr/ug/res/images/%s/%s", package, icon);
-                       if (access(icon_with_path, R_OK) == 0) break;
-               } while (0);
-
+               if (uid != GLOBAL_USER)
+                       snprintf(icon_with_path, len, "%s%s", getIconPath(uid), icon);
+               else {
+                       snprintf(icon_with_path, len, "%s%s/small/%s", getIconPath(GLOBAL_USER), theme, icon);
+                       if (access (icon_with_path, F_OK)) { //If doesn't exist in case of Global app, try to get icon directly into app's directory
+                               app_path = tzplatform_getenv(TZ_SYS_RW_APP);
+                               if (app_path)
+                                       snprintf( len, icon_with_path, "%s/%q/res/icons/%q/small/%q", app_path  , package, theme, icon);
+                               if (access (icon_with_path, F_OK))
+                                       _LOGE("Cannot find icon path");
+                       }
+               }
                free(theme);
-
-               DBG("Icon path : %s ---> %s", icon, icon_with_path);
-
+               _LOGD("Icon path : %s ---> %s", icon, icon_with_path);
                return icon_with_path;
        } else {
                char* confirmed_icon = NULL;
@@ -2610,7 +3130,7 @@ static void __ps_process_tag(manifest_x * mfx, char *const tagv[])
                        }
                /*check tag :  not matched*/
                } else
-                       DBG("tag process [%s]is not defined\n", ret_result);
+                       _LOGD("tag process [%s]is not defined\n", ret_result);
 
                free(tag);
 
@@ -2618,13 +3138,13 @@ static void __ps_process_tag(manifest_x * mfx, char *const tagv[])
                if (tagv[++i] != NULL)
                        tag = strdup(tagv[i]);
                else {
-                       DBG("tag process success...\n");
+                       _LOGD("tag process success...\n");
                        return;
                }
        }
 }
 
-static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon)
+static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon, uid_t uid)
 {
        if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
                icon->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
@@ -2645,7 +3165,7 @@ static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon)
        if (xmlTextReaderValue(reader)) {
                const char *text  = ASCII(xmlTextReaderValue(reader));
                if(text) {
-                       icon->text = (const char *)__get_icon_with_path(text);
+                       icon->text = (const char *)__get_icon_with_path(text, uid);
                        free((void *)text);
                }
        }
@@ -2681,16 +3201,16 @@ static int __ps_process_label(xmlTextReaderPtr reader, label_x *label)
                label->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
                if (label->lang == NULL)
                        label->lang = strdup(DEFAULT_LOCALE);
-       } else {
+       } else 
                label->lang = strdup(DEFAULT_LOCALE);
-       }
        xmlTextReaderRead(reader);
        if (xmlTextReaderValue(reader))
                label->text = ASCII(xmlTextReaderValue(reader));
 
-/*     DBG("lable name %s\n", label->name);
-       DBG("lable lang %s\n", label->lang);
-       DBG("lable text %s\n", label->text);
+
+/*     _LOGD("lable name %s\n", label->name);
+       _LOGD("lable lang %s\n", label->lang);
+       _LOGD("lable text %s\n", label->text);
 */
        return 0;
 
@@ -2710,8 +3230,15 @@ static int __ps_process_author(xmlTextReaderPtr reader, author_x *author)
                author->lang = strdup(DEFAULT_LOCALE);
        }
        xmlTextReaderRead(reader);
-       if (xmlTextReaderValue(reader))
+       if (xmlTextReaderValue(reader)) {
+               const char *text  = ASCII(xmlTextReaderValue(reader));
+               if (*text == '\n') {
+                       author->text = NULL;
+                       free((void *)text);
+                       return 0;
+               }
                author->text = ASCII(xmlTextReaderValue(reader));
+       }
        return 0;
 }
 
@@ -2725,8 +3252,15 @@ static int __ps_process_description(xmlTextReaderPtr reader, description_x *desc
                description->lang = strdup(DEFAULT_LOCALE);
        }
        xmlTextReaderRead(reader);
-       if (xmlTextReaderValue(reader))
+       if (xmlTextReaderValue(reader)) {
+               const char *text  = ASCII(xmlTextReaderValue(reader));
+               if (*text == '\n') {
+                       description->text = NULL;
+                       free((void *)text);
+                       return 0;
+               }
                description->text = ASCII(xmlTextReaderValue(reader));
+       }
        return 0;
 }
 
@@ -2759,14 +3293,14 @@ static int __ps_process_capability(xmlTextReaderPtr reader, capability_x *capabi
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "resolution")) {
                        resolution_x *resolution = malloc(sizeof(resolution_x));
                        if (resolution == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(resolution, '\0', sizeof(resolution_x));
@@ -2775,7 +3309,7 @@ static int __ps_process_capability(xmlTextReaderPtr reader, capability_x *capabi
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing capability failed\n");
+                       _LOGD("Processing capability failed\n");
                        return ret;
                }
        }
@@ -2802,14 +3336,14 @@ static int __ps_process_datacontrol(xmlTextReaderPtr reader, datacontrol_x *data
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "capability")) {
                        capability_x *capability = malloc(sizeof(capability_x));
                        if (capability == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(capability, '\0', sizeof(capability_x));
@@ -2818,7 +3352,7 @@ static int __ps_process_datacontrol(xmlTextReaderPtr reader, datacontrol_x *data
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing datacontrol failed\n");
+                       _LOGD("Processing datacontrol failed\n");
                        return ret;
                }
        }
@@ -2831,7 +3365,7 @@ static int __ps_process_datacontrol(xmlTextReaderPtr reader, datacontrol_x *data
        return ret;
 }
 
-static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *uiapplication)
+static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *uiapplication, uid_t uid)
 {
        const xmlChar *node;
        int ret = -1;
@@ -2852,17 +3386,17 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
        if (xmlTextReaderGetAttribute(reader, XMLCHAR("appid"))) {
                uiapplication->appid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("appid")));
                if (uiapplication->appid == NULL) {
-                       DBG("appid cant be NULL\n");
+                       _LOGD("appid cant be NULL\n");
                        return -1;
                }
        } else {
-               DBG("appid is mandatory\n");
+               _LOGD("appid is mandatory\n");
                return -1;
        }
        /*check appid*/
        ret = __validate_appid(package, uiapplication->appid, &newappid);
        if (ret == -1) {
-               DBG("appid is not proper\n");
+               _LOGD("appid is not proper\n");
                return -1;
        } else {
                if (newappid) {
@@ -2915,6 +3449,13 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
        } else {
                uiapplication->hwacceleration = strdup("use-system-setting");
        }
+       if (xmlTextReaderGetAttribute(reader, XMLCHAR("screen-reader"))) {
+               uiapplication->screenreader = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("screen-reader")));
+               if (uiapplication->screenreader == NULL)
+                       uiapplication->screenreader = strdup("use-system-setting");
+       } else {
+               uiapplication->screenreader = strdup("use-system-setting");
+       }
        if (xmlTextReaderGetAttribute(reader, XMLCHAR("recentimage")))
                uiapplication->recentimage = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("recentimage")));
        if (xmlTextReaderGetAttribute(reader, XMLCHAR("mainapp"))) {
@@ -2982,13 +3523,13 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
                if (!strcmp(ASCII(node), "label")) {
                        label_x *label = malloc(sizeof(label_x));
                        if (label == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(label, '\0', sizeof(label_x));
@@ -2997,16 +3538,16 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "icon")) {
                        icon_x *icon = malloc(sizeof(icon_x));
                        if (icon == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(icon, '\0', sizeof(icon_x));
                        LISTADD(uiapplication->icon, icon);
-                       ret = __ps_process_icon(reader, icon);
+                       ret = __ps_process_icon(reader, icon, uid);
                } else if (!strcmp(ASCII(node), "image")) {
                        image_x *image = malloc(sizeof(image_x));
                        if (image == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(image, '\0', sizeof(image_x));
@@ -3015,7 +3556,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "category")) {
                        category_x *category = malloc(sizeof(category_x));
                        if (category == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(category, '\0', sizeof(category_x));
@@ -3024,7 +3565,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "metadata")) {
                        metadata_x *metadata = malloc(sizeof(metadata_x));
                        if (metadata == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(metadata, '\0', sizeof(metadata_x));
@@ -3033,7 +3574,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "permission")) {
                        permission_x *permission = malloc(sizeof(permission_x));
                        if (permission == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(permission, '\0', sizeof(permission_x));
@@ -3042,7 +3583,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "app-control")) {
                        appcontrol_x *appcontrol = malloc(sizeof(appcontrol_x));
                        if (appcontrol == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(appcontrol, '\0', sizeof(appcontrol_x));
@@ -3051,7 +3592,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "application-service")) {
                        appsvc_x *appsvc = malloc(sizeof(appsvc_x));
                        if (appsvc == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(appsvc, '\0', sizeof(appsvc_x));
@@ -3060,7 +3601,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "data-share")) {
                        datashare_x *datashare = malloc(sizeof(datashare_x));
                        if (datashare == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(datashare, '\0', sizeof(datashare_x));
@@ -3069,7 +3610,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "launch-conditions")) {
                        launchconditions_x *launchconditions = malloc(sizeof(launchconditions_x));
                        if (launchconditions == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(launchconditions, '\0', sizeof(launchconditions_x));
@@ -3078,7 +3619,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else if (!strcmp(ASCII(node), "notification")) {
                        notification_x *notification = malloc(sizeof(notification_x));
                        if (notification == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(notification, '\0', sizeof(notification_x));
@@ -3087,7 +3628,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing uiapplication failed\n");
+                       _LOGD("Processing uiapplication failed\n");
                        return ret;
                }
        }
@@ -3140,7 +3681,7 @@ static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *
        return ret;
 }
 
-static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceapplication_x *serviceapplication)
+static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceapplication_x *serviceapplication, uid_t uid)
 {
        const xmlChar *node;
        int ret = -1;
@@ -3161,17 +3702,17 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
        if (xmlTextReaderGetAttribute(reader, XMLCHAR("appid"))) {
                serviceapplication->appid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("appid")));
                if (serviceapplication->appid == NULL) {
-                       DBG("appid cant be NULL\n");
+                       _LOGD("appid cant be NULL\n");
                        return -1;
                }
        } else {
-               DBG("appid is mandatory\n");
+               _LOGD("appid is mandatory\n");
                return -1;
        }
        /*check appid*/
        ret = __validate_appid(package, serviceapplication->appid, &newappid);
        if (ret == -1) {
-               DBG("appid is not proper\n");
+               _LOGD("appid is not proper\n");
                return -1;
        } else {
                if (newappid) {
@@ -3210,14 +3751,14 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "label")) {
                        label_x *label = malloc(sizeof(label_x));
                        if (label == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(label, '\0', sizeof(label_x));
@@ -3226,16 +3767,16 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "icon")) {
                        icon_x *icon = malloc(sizeof(icon_x));
                        if (icon == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(icon, '\0', sizeof(icon_x));
                        LISTADD(serviceapplication->icon, icon);
-                       ret = __ps_process_icon(reader, icon);
+                       ret = __ps_process_icon(reader, icon, uid);
                } else if (!strcmp(ASCII(node), "category")) {
                        category_x *category = malloc(sizeof(category_x));
                        if (category == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(category, '\0', sizeof(category_x));
@@ -3244,7 +3785,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "metadata")) {
                        metadata_x *metadata = malloc(sizeof(metadata_x));
                        if (metadata == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(metadata, '\0', sizeof(metadata_x));
@@ -3253,7 +3794,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "permission")) {
                        permission_x *permission = malloc(sizeof(permission_x));
                        if (permission == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(permission, '\0', sizeof(permission_x));
@@ -3262,7 +3803,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "app-control")) {
                        appcontrol_x *appcontrol = malloc(sizeof(appcontrol_x));
                        if (appcontrol == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(appcontrol, '\0', sizeof(appcontrol_x));
@@ -3271,7 +3812,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "application-service")) {
                        appsvc_x *appsvc = malloc(sizeof(appsvc_x));
                        if (appsvc == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(appsvc, '\0', sizeof(appsvc_x));
@@ -3280,7 +3821,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "data-share")) {
                        datashare_x *datashare = malloc(sizeof(datashare_x));
                        if (datashare == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(datashare, '\0', sizeof(datashare_x));
@@ -3289,7 +3830,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "launch-conditions")) {
                        launchconditions_x *launchconditions = malloc(sizeof(launchconditions_x));
                        if (launchconditions == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(launchconditions, '\0', sizeof(launchconditions_x));
@@ -3298,7 +3839,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "notification")) {
                        notification_x *notification = malloc(sizeof(notification_x));
                        if (notification == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(notification, '\0', sizeof(notification_x));
@@ -3307,7 +3848,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else if (!strcmp(ASCII(node), "data-control")) {
                        datacontrol_x *datacontrol = malloc(sizeof(datacontrol_x));
                        if (datacontrol == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(datacontrol, '\0', sizeof(datacontrol_x));
@@ -3316,7 +3857,7 @@ static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceappli
                } else
                        return -1;
                if (ret < 0) {
-                       DBG("Processing serviceapplication failed\n");
+                       _LOGD("Processing serviceapplication failed\n");
                        return ret;
                }
        }
@@ -3399,9 +3940,9 @@ static int __ps_process_ime(xmlTextReaderPtr reader, ime_x *ime)
        return 0;
 }
 
-static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
+static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx, uid_t uid)
 {
-       DBG("__start_process\n");
+       _LOGD("__start_process\n");
        const xmlChar *node;
        int ret = -1;
        int depth = -1;
@@ -3421,17 +3962,18 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
        privileges_x *tmp14 = NULL;
 
        depth = xmlTextReaderDepth(reader);
+       int  i =0;
        while ((ret = __next_child_element(reader, depth))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "label")) {
                        label_x *label = malloc(sizeof(label_x));
                        if (label == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(label, '\0', sizeof(label_x));
@@ -3440,7 +3982,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "author")) {
                        author_x *author = malloc(sizeof(author_x));
                        if (author == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(author, '\0', sizeof(author_x));
@@ -3449,7 +3991,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "description")) {
                        description_x *description = malloc(sizeof(description_x));
                        if (description == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(description, '\0', sizeof(description_x));
@@ -3458,7 +4000,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "license")) {
                        license_x *license = malloc(sizeof(license_x));
                        if (license == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(license, '\0', sizeof(license_x));
@@ -3467,7 +4009,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "privileges")) {
                        privileges_x *privileges = malloc(sizeof(privileges_x));
                        if (privileges == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(privileges, '\0', sizeof(privileges_x));
@@ -3476,25 +4018,25 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "ui-application")) {
                        uiapplication_x *uiapplication = malloc(sizeof(uiapplication_x));
                        if (uiapplication == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(uiapplication, '\0', sizeof(uiapplication_x));
                        LISTADD(mfx->uiapplication, uiapplication);
-                       ret = __ps_process_uiapplication(reader, uiapplication);
+                       ret = __ps_process_uiapplication(reader, uiapplication, uid);
                } else if (!strcmp(ASCII(node), "service-application")) {
                        serviceapplication_x *serviceapplication = malloc(sizeof(serviceapplication_x));
                        if (serviceapplication == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(serviceapplication, '\0', sizeof(serviceapplication_x));
                        LISTADD(mfx->serviceapplication, serviceapplication);
-                       ret = __ps_process_serviceapplication(reader, serviceapplication);
+                       ret = __ps_process_serviceapplication(reader, serviceapplication, uid);
                } else if (!strcmp(ASCII(node), "daemon")) {
                        daemon_x *daemon = malloc(sizeof(daemon_x));
                        if (daemon == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(daemon, '\0', sizeof(daemon_x));
@@ -3503,7 +4045,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "theme")) {
                        theme_x *theme = malloc(sizeof(theme_x));
                        if (theme == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(theme, '\0', sizeof(theme_x));
@@ -3512,7 +4054,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "font")) {
                        font_x *font = malloc(sizeof(font_x));
                        if (font == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(font, '\0', sizeof(font_x));
@@ -3521,7 +4063,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "ime")) {
                        ime_x *ime = malloc(sizeof(ime_x));
                        if (ime == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(ime, '\0', sizeof(ime_x));
@@ -3530,16 +4072,16 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "icon")) {
                        icon_x *icon = malloc(sizeof(icon_x));
                        if (icon == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(icon, '\0', sizeof(icon_x));
                        LISTADD(mfx->icon, icon);
-                       ret = __ps_process_icon(reader, icon);
-               } else if (!strcmp(ASCII(node), "device-profile")) {
+                       ret = __ps_process_icon(reader, icon, uid);
+               } else if (!strcmp(ASCII(node), "profile")) {
                        deviceprofile_x *deviceprofile = malloc(sizeof(deviceprofile_x));
                        if (deviceprofile == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(deviceprofile, '\0', sizeof(deviceprofile_x));
@@ -3548,7 +4090,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                } else if (!strcmp(ASCII(node), "compatibility")) {
                        compatibility_x *compatibility = malloc(sizeof(compatibility_x));
                        if (compatibility == NULL) {
-                               DBG("Malloc Failed\n");
+                               _LOGD("Malloc Failed\n");
                                return -1;
                        }
                        memset(compatibility, '\0', sizeof(compatibility_x));
@@ -3568,7 +4110,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
                        return -1;
 
                if (ret < 0) {
-                       DBG("Processing manifest failed\n");
+                       _LOGD("Processing manifest failed\n");
                        return ret;
                }
        }
@@ -3631,7 +4173,7 @@ static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
        return ret;
 }
 
-static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx)
+static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx, uid_t uid)
 {
        const xmlChar *node;
        int ret = -1;
@@ -3639,21 +4181,22 @@ static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx)
        if ((ret = __next_child_element(reader, -1))) {
                node = xmlTextReaderConstName(reader);
                if (!node) {
-                       DBG("xmlTextReaderConstName value is NULL\n");
+                       _LOGD("xmlTextReaderConstName value is NULL\n");
                        return -1;
                }
 
                if (!strcmp(ASCII(node), "manifest")) {
-                       if (xmlTextReaderGetAttribute(reader, XMLCHAR("xmlns")))
+                       if (xmlTextReaderGetAttribute(reader, XMLCHAR("xmlns"))){
                                mfx->ns = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("xmlns")));
+                       }
                        if (xmlTextReaderGetAttribute(reader, XMLCHAR("package"))) {
                                mfx->package= ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("package")));
                                if (mfx->package == NULL) {
-                                       DBG("package cant be NULL\n");
+                                       _LOGD("package cant be NULL\n");
                                        return -1;
                                }
                        } else {
-                               DBG("package field is mandatory\n");
+                               _LOGD("package field is mandatory\n");
                                return -1;
                        }
                        package = mfx->package;
@@ -3670,6 +4213,8 @@ static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx)
                                mfx->root_path = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("root_path")));
                        if (xmlTextReaderGetAttribute(reader, XMLCHAR("csc_path")))
                                mfx->csc_path = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("csc_path")));
+                       if (xmlTextReaderGetAttribute(reader, XMLCHAR("main_package")))
+                               mfx->main_package = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("main_package")));
                        if (xmlTextReaderGetAttribute(reader, XMLCHAR("appsetting"))) {
                                mfx->appsetting = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("appsetting")));
                                if (mfx->appsetting == NULL)
@@ -3688,12 +4233,12 @@ static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx)
                        }
                        if (xmlTextReaderGetAttribute(reader, XMLCHAR("url")))
                                mfx->package_url= ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("url")));
-
                        /*Assign default values. If required it will be overwritten in __add_preload_info()*/
                        mfx->preload = strdup("False");
                        mfx->removable = strdup("True");
                        mfx->readonly = strdup("False");
                        mfx->update = strdup("False");
+                       mfx->system = strdup("False");
                        char buf[PKG_STRING_LEN_MAX] = {'\0'};
                        char *val = NULL;
                        time_t current_time;
@@ -3701,12 +4246,11 @@ static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx)
                        snprintf(buf, PKG_STRING_LEN_MAX - 1, "%d", current_time);
                        val = strndup(buf, PKG_STRING_LEN_MAX - 1);
                        mfx->installed_time = val;
-
                        mfx->installed_storage= strdup("installed_internal");
 
-                       ret = __start_process(reader, mfx);
+                       ret = __start_process(reader, mfx, uid);
                } else {
-                       DBG("No Manifest element found\n");
+                       _LOGD("No Manifest element found\n");
                        return -1;
                }
        }
@@ -3720,7 +4264,7 @@ static char* __convert_to_system_locale(const char *mlocale)
        char *locale = NULL;
        locale = (char *)calloc(1, 6);
        if (!locale) {
-               DBGE("Malloc Failed\n");
+               _LOGE("Malloc Failed\n");
                return NULL;
        }
 
@@ -3731,45 +4275,92 @@ static char* __convert_to_system_locale(const char *mlocale)
        return locale;
 }
 
-static int __ail_change_info(int op, const char *appid)
+#define LIBAIL_PATH LIB_PATH "/libail.so.0"
+
+/* operation_type */
+typedef enum {
+       AIL_INSTALL = 0,
+       AIL_UPDATE,
+       AIL_REMOVE,
+       AIL_CLEAN,
+       AIL_FOTA,
+       AIL_MAX
+} AIL_TYPE;
+
+static int __ail_change_info(int op, const char *appid, uid_t uid)
 {
        void *lib_handle = NULL;
-       int (*ail_desktop_operation) (const char *);
        char *aop = NULL;
        int ret = 0;
 
        if ((lib_handle = dlopen(LIBAIL_PATH, RTLD_LAZY)) == NULL) {
-               DBGE("dlopen is failed LIBAIL_PATH[%s]\n", LIBAIL_PATH);
+               _LOGE("dlopen is failed LIBAIL_PATH[%s]\n", LIBAIL_PATH);
                goto END;
        }
+//is_admin
+       if(uid != GLOBAL_USER)
+       {
+               int (*ail_desktop_operation) (const char *, uid_t uid);
+               switch (op) {
+                       case 0:
+                               aop  = "ail_usr_desktop_add";
+                               break;
+                       case 1:
+                               aop  = "ail_usr_desktop_update";
+                               break;
+                       case 2:
+                               aop  = "ail_usr_desktop_remove";
+                               break;
+                       case 3:
+                               aop  = "ail_usr_desktop_clean";
+                               break;
+                       case 4:
+                               aop  = "ail_usr_desktop_fota";
+                               break;
+                       default:
+                               goto END;
+                               break;
+               }
 
-
-       switch (op) {
-               case 0:
-                       aop  = "ail_desktop_add";
-                       break;
-               case 1:
-                       aop  = "ail_desktop_update";
-                       break;
-               case 2:
-                       aop  = "ail_desktop_remove";
-                       break;
-               case 3:
-                       aop  = "ail_desktop_clean";
-                       break;
-               default:
+               if ((ail_desktop_operation =
+                       dlsym(lib_handle, aop)) == NULL || dlerror() != NULL) {
+                       _LOGE("can not find symbol \n");
                        goto END;
-                       break;
-       }
+               }
 
-       if ((ail_desktop_operation =
-            dlsym(lib_handle, aop)) == NULL || dlerror() != NULL) {
-               DBGE("can not find symbol \n");
-               goto END;
-       }
+               ret = ail_desktop_operation(appid, uid);
+       }else{
+               int (*ail_desktop_operation) (const char *);
+               switch (op) {
+                       case 0:
+                               aop  = "ail_desktop_add";
+                               break;
+                       case 1:
+                               aop  = "ail_desktop_update";
+                               break;
+                       case 2:
+                               aop  = "ail_desktop_remove";
+                               break;
+                       case 3:
+                               aop  = "ail_desktop_clean";
+                               break;
+                       case 4:
+                               aop  = "ail_desktop_fota";
+                               break;
+                       default:
+                               goto END;
+                               break;
+               }
+
+               if ((ail_desktop_operation =
+                       dlsym(lib_handle, aop)) == NULL || dlerror() != NULL) {
+                       _LOGE("can not find symbol \n");
+                       goto END;
+               }
 
-       ret = ail_desktop_operation(appid);
+               ret = ail_desktop_operation(appid);
 
+       }
 END:
        if (lib_handle)
                dlclose(lib_handle);
@@ -3777,10 +4368,10 @@ END:
        return ret;
 }
 
-
 /* desktop shoud be generated automatically based on manifest */
 /* Currently removable, taskmanage, etc fields are not considerd. it will be decided soon.*/
-static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, bool is_update)
+#define BUFMAX 1024*128
+static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, ACTION_TYPE action, uid_t uid)
 {
         FILE* file = NULL;
         int fd = 0;
@@ -3791,35 +4382,23 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
 
        buf = (char *)calloc(1, BUFMAX);
        if (!buf) {
-               DBGE("Malloc Failed\n");
+               _LOGE("Malloc Failed\n");
                return -1;
        }
 
        buftemp = (char *)calloc(1, BUFMAX);
        if (!buftemp) {
-               DBGE("Malloc Failed\n");
+               _LOGE("Malloc Failed\n");
                free(buf);
                return -1;
        }
 
-       if (is_update)
-               __ail_change_info(AIL_CLEAN, mfx->package);
+       if (action == ACTION_UPGRADE)
+               __ail_change_info(AIL_CLEAN, mfx->package, uid);
 
        for(; mfx->uiapplication; mfx->uiapplication=mfx->uiapplication->next) {
 
-               if (manifest != NULL) {
-                       /* skip making a deskfile and update ail, if preload app is updated */
-                       if(strstr(manifest, MANIFEST_RO_PREFIX)) {
-                               __ail_change_info(AIL_INSTALL, mfx->uiapplication->appid);
-                   DBGE("preload app is update : skip and update ail : %s", manifest);
-                               continue;
-                       }
-               }
-
-               if(mfx->readonly && !strcasecmp(mfx->readonly, "True"))
-                       snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RO_PATH, mfx->uiapplication->appid);
-               else
-                       snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RW_PATH, mfx->uiapplication->appid);
+               snprintf(filepath, sizeof(filepath),"%s%s.desktop", getUserDesktopPath(uid), mfx->uiapplication->appid);
 
                /* skip if desktop exists
                if (access(filepath, R_OK) == 0)
@@ -3829,7 +4408,7 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
                file = fopen(filepath, "w");
                if(file == NULL)
                {
-                   DBGE("Can't open %s", filepath);
+                   _LOGD("Can't open %s", filepath);
                    free(buf);
                    free(buftemp);
                    return -1;
@@ -3895,7 +4474,7 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
                                while (mi) {
                                        mime_count++;
                                        mime = mi->name;
-                                       DBG("MIME type: %s\n", mime);
+                                       _LOGD("MIME type: %s\n", mime);
                                        strncat(buf, mime, BUFMAX-strlen(buf)-1);
                                        if(mi->next) {
                                                strncat(buf, mime_delim, BUFMAX-strlen(buf)-1);
@@ -3906,8 +4485,8 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
                                }
                                asvc = asvc->next;
                        }
-                       DBG("MIME types: buf[%s]\n", buf);
-                       DBG("MIME count: %d\n", mime_count);
+                       _LOGD("MIME types: buf[%s]\n", buf);
+                       _LOGD("MIME count: %d\n", mime_count);
                        if(mime_count)
                                fwrite(buf, 1, strlen(buf), file);
                }
@@ -3962,6 +4541,13 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
                        fwrite(buf, 1, strlen(buf), file);
                }
 
+               if(mfx->uiapplication->submode && !strcasecmp(mfx->uiapplication->submode, "True")) {
+                       snprintf(buf, BUFMAX, "X-TIZEN-Submode=%s\n", mfx->uiapplication->submode);
+                       fwrite(buf, 1, strlen(buf), file);
+                       snprintf(buf, BUFMAX, "X-TIZEN-SubmodeMainid=%s\n", mfx->uiapplication->submode_mainid);
+                       fwrite(buf, 1, strlen(buf), file);
+               }
+
                snprintf(buf, BUFMAX, "X-TIZEN-PkgID=%s\n", mfx->package);
                fwrite(buf, 1, strlen(buf), file);
 
@@ -3972,7 +4558,7 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
 
                if(mfx->uiapplication->appsvc) {
                        snprintf(buf, BUFMAX, "X-TIZEN-Svc=");
-                       DBG("buf[%s]\n", buf);
+                       _LOGD("buf[%s]\n", buf);
 
 
                        uiapplication_x *up = mfx->uiapplication;
@@ -4019,7 +4605,7 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
 
                                                                strncpy(buftemp, buf, BUFMAX);
                                                                snprintf(buf, BUFMAX, "%s%s|%s|%s|%s", buftemp, operation?operation:"NULL", uri?uri:"NULL", mime?mime:"NULL", subapp?subapp:"NULL");
-                                                               DBG("buf[%s]\n", buf);
+                                                               _LOGD("buf[%s]\n", buf);
 
                                                                if (ui)
                                                                        ui = ui->next;
@@ -4050,7 +4636,7 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
 
                if(mfx->uiapplication->appcontrol) {
                        snprintf(buf, BUFMAX, "X-TIZEN-Svc=");
-                       DBG("buf[%s]\n", buf);
+                       _LOGD("buf[%s]\n", buf);
 
                        uiapplication_x *up = mfx->uiapplication;
                        appcontrol_x *acontrol = NULL;
@@ -4094,7 +4680,7 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
 
                                                                strncpy(buftemp, buf, BUFMAX);
                                                                snprintf(buf, BUFMAX, "%s%s|%s|%s|%s", buftemp, operation?operation:"NULL", uri?uri:"NULL", mime?mime:"NULL", subapp?subapp:"NULL");
-                                                               DBG("buf[%s]\n", buf);
+                                                               _LOGD("buf[%s]\n", buf);
 
                                                                if (ui)
                                                                        ui = ui->next;
@@ -4127,8 +4713,10 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
                fd = fileno(file);
                fsync(fd);
                fclose(file);
-
-               __ail_change_info(AIL_INSTALL, mfx->uiapplication->appid);
+               if (action == ACTION_FOTA)
+                       __ail_change_info(AIL_FOTA, mfx->uiapplication->appid, uid);
+               else
+                       __ail_change_info(AIL_INSTALL, mfx->uiapplication->appid, uid);
        }
 
        free(buf);
@@ -4137,16 +4725,16 @@ static int __ps_make_nativeapp_desktop(manifest_x * mfx, const char *manifest, b
         return 0;
 }
 
-static int __ps_remove_nativeapp_desktop(manifest_x *mfx)
+static int __ps_remove_nativeapp_desktop(manifest_x *mfx, uid_t uid)
 {
        char filepath[PKG_STRING_LEN_MAX] = "";
        int ret = 0;
        uiapplication_x *uiapplication = mfx->uiapplication;
 
        for(; uiapplication; uiapplication=uiapplication->next) {
-               snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RW_PATH, uiapplication->appid);
+               snprintf(filepath, sizeof(filepath),"%s%s.desktop", getUserDesktopPath(uid), uiapplication->appid);
 
-               __ail_change_info(AIL_REMOVE, uiapplication->appid);
+               __ail_change_info(AIL_REMOVE, uiapplication->appid, uid);
 
                ret = remove(filepath);
                if (ret <0)
@@ -4156,6 +4744,8 @@ static int __ps_remove_nativeapp_desktop(manifest_x *mfx)
         return 0;
 }
 
+#define LIBAPPSVC_PATH LIB_PATH "/libappsvc.so.0"
+
 static int __ps_remove_appsvc_db(manifest_x *mfx)
 {
        void *lib_handle = NULL;
@@ -4164,20 +4754,20 @@ static int __ps_remove_appsvc_db(manifest_x *mfx)
        uiapplication_x *uiapplication = mfx->uiapplication;
 
        if ((lib_handle = dlopen(LIBAPPSVC_PATH, RTLD_LAZY)) == NULL) {
-               DBGE("dlopen is failed LIBAIL_PATH[%s]\n", LIBAPPSVC_PATH);
+               _LOGE("dlopen is failed LIBAIL_PATH[%s]\n", LIBAPPSVC_PATH);
                goto END;
        }
 
        if ((appsvc_operation =
                 dlsym(lib_handle, "appsvc_unset_defapp")) == NULL || dlerror() != NULL) {
-               DBGE("can not find symbol \n");
+               _LOGE("can not find symbol \n");
                goto END;
        }
 
        for(; uiapplication; uiapplication=uiapplication->next) {
                ret = appsvc_operation(uiapplication->appid);
                if (ret <0)
-                       DBGE("can not operation  symbol \n");
+                       _LOGE("can not operation  symbol \n");
        }
 
 END:
@@ -4187,13 +4777,14 @@ END:
        return ret;
 }
 
-static int __add_preload_info(manifest_x * mfx, const char *manifest)
+#define PRELOAD_PACKAGE_LIST SYSCONFDIR "/package-manager/preload/preload_list.txt"
+static int __add_preload_info(manifest_x * mfx, const char *manifest, uid_t uid)
 {
        FILE *fp = NULL;
        char buffer[1024] = { 0 };
        int state = 0;
 
-       if(strstr(manifest, MANIFEST_RO_PREFIX)) {
+       if(strstr(manifest, getUserManifestPath(uid))) {
                free((void *)mfx->readonly);
                mfx->readonly = strdup("True");
 
@@ -4203,12 +4794,15 @@ static int __add_preload_info(manifest_x * mfx, const char *manifest)
                free((void *)mfx->removable);
                mfx->removable = strdup("False");
 
+               free((void *)mfx->system);
+               mfx->system = strdup("True");
+
                return 0;
        }
 
        fp = fopen(PRELOAD_PACKAGE_LIST, "r");
        if (fp == NULL) {
-               DBGE("no preload list\n");
+               _LOGE("no preload list\n");
                return -1;
        }
 
@@ -4249,16 +4843,16 @@ static int __add_preload_info(manifest_x * mfx, const char *manifest)
        return 0;
 }
 
-static int __check_preload_updated(manifest_x * mfx, const char *manifest)
+static int __check_preload_updated(manifest_x * mfx, const char *manifest, uid_t uid)
 {
        char filepath[PKG_STRING_LEN_MAX] = "";
        int ret = 0;
        uiapplication_x *uiapplication = mfx->uiapplication;
 
-       if(strstr(manifest, MANIFEST_RO_PREFIX)) {
+       if(strstr(manifest, getUserManifestPath(uid))) {
                /* if preload app is updated, then remove previous desktop file on RW*/
                for(; uiapplication; uiapplication=uiapplication->next) {
-                               snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RW_PATH, uiapplication->appid);
+                               snprintf(filepath, sizeof(filepath),"%s%s.desktop", getUserDesktopPath(uid), uiapplication->appid);
                        ret = remove(filepath);
                        if (ret <0)
                                return -1;
@@ -4277,17 +4871,33 @@ API int pkgmgr_parser_create_desktop_file(manifest_x *mfx)
 {
         int ret = 0;
        if (mfx == NULL) {
-               DBG("Manifest pointer is NULL\n");
+               _LOGD("Manifest pointer is NULL\n");
+               return -1;
+       }
+        ret = __ps_make_nativeapp_desktop(mfx, NULL, ACTION_INSTALL, GLOBAL_USER);
+        if (ret == -1)
+                _LOGD("Creating desktop file failed\n");
+        else
+                _LOGD("Creating desktop file Success\n");
+        return ret;
+}
+
+API int pkgmgr_parser_create_usr_desktop_file(manifest_x *mfx, uid_t uid)
+{
+        int ret = 0;
+       if (mfx == NULL) {
+               _LOGD("Manifest pointer is NULL\n");
                return -1;
        }
-        ret = __ps_make_nativeapp_desktop(mfx, NULL, 0);
+        ret = __ps_make_nativeapp_desktop(mfx, NULL, ACTION_INSTALL, uid);
         if (ret == -1)
-                DBG("Creating desktop file failed\n");
+                _LOGD("Creating desktop file failed\n");
         else
-                DBG("Creating desktop file Success\n");
+                _LOGD("Creating desktop file Success\n");
         return ret;
 }
 
+
 API void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
 {
        if (mfx == NULL)
@@ -4324,6 +4934,10 @@ API void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
                free((void *)mfx->update);
                mfx->update = NULL;
        }
+       if (mfx->system) {
+               free((void *)mfx->system);
+               mfx->system = NULL;
+       }
        if (mfx->type) {
                free((void *)mfx->type);
                mfx->type = NULL;
@@ -4368,6 +4982,10 @@ API void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
                free((void *)mfx->nodisplay_setting);
                mfx->nodisplay_setting = NULL;
        }
+       if (mfx->main_package) {
+               free((void *)mfx->main_package);
+               mfx->main_package = NULL;
+       }
 
        /*Free Icon*/
        if (mfx->icon) {
@@ -4516,7 +5134,35 @@ API void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
 
 API manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest)
 {
-       DBG("parsing start\n");
+       _LOGD("parsing start pkgmgr_parser_process_manifest_xml\n");
+       xmlTextReaderPtr reader;
+       manifest_x *mfx = NULL;
+
+       reader = xmlReaderForFile(manifest, NULL, 0);
+       if (reader) {
+               mfx = malloc(sizeof(manifest_x));
+               if (mfx) {
+                       memset(mfx, '\0', sizeof(manifest_x));
+                       if (__process_manifest(reader, mfx, GLOBAL_USER) < 0) {
+                               _LOGD("Parsing Failed\n");
+                               pkgmgr_parser_free_manifest_xml(mfx);
+                               mfx = NULL;
+                       } else
+                               _LOGD("Parsing Success\n");
+               } else {
+                       _LOGD("Memory allocation error\n");
+               }
+               xmlFreeTextReader(reader);
+       } else {
+               _LOGD("Unable to create xml reader\n");
+       }
+       return mfx;
+}
+
+
+API manifest_x *pkgmgr_parser_usr_process_manifest_xml(const char *manifest, uid_t uid)
+{
+       _LOGD("parsing start pkgmgr_parser_usr_process_manifest_xml\n");
        xmlTextReaderPtr reader;
        manifest_x *mfx = NULL;
 
@@ -4525,18 +5171,18 @@ API manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest)
                mfx = malloc(sizeof(manifest_x));
                if (mfx) {
                        memset(mfx, '\0', sizeof(manifest_x));
-                       if (__process_manifest(reader, mfx) < 0) {
-                               DBG("Parsing Failed\n");
+                       if (__process_manifest(reader, mfx, uid) < 0) {
+                               _LOGD("Parsing Failed\n");
                                pkgmgr_parser_free_manifest_xml(mfx);
                                mfx = NULL;
                        } else
-                               DBG("Parsing Success\n");
+                               _LOGD("Parsing Success\n");
                } else {
-                       DBG("Memory allocation error\n");
+                       _LOGD("Memory allocation error\n");
                }
                xmlFreeTextReader(reader);
        } else {
-               DBG("Unable to create xml reader\n");
+               _LOGD("Unable to create xml reader\n");
        }
        return mfx;
 }
@@ -4545,48 +5191,98 @@ API manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest)
 
 API int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char *const tagv[])
 {
-       char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
-       if (manifest == NULL) {
-               DBG("argument supplied is NULL\n");
-               return PMINFO_R_EINVAL;
-       }
-       DBG("parsing manifest for installation: %s\n", manifest);
+//     char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
+       retvm_if(manifest == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+       _LOGD("parsing manifest for installation: %s\n", manifest);
+
        manifest_x *mfx = NULL;
        int ret = -1;
-       char roxml_check[PKG_STRING_LEN_MAX] = {'\0'};
 
        xmlInitParser();
        mfx = pkgmgr_parser_process_manifest_xml(manifest);
-       DBG("Parsing Finished\n");
-       if (mfx == NULL)
-               return PMINFO_R_ERROR;
+       retvm_if(mfx == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
 
-       __streamFile(manifest, ACTION_INSTALL, temp, mfx->package);
-       __add_preload_info(mfx, manifest);
-       DBG("Added preload infomation\n");
+       _LOGD("Parsing Finished\n");
+
+//     __streamFile(manifest, ACTION_INSTALL, temp, mfx->package);
+       __ps_process_tag_parser(mfx, manifest, ACTION_INSTALL);
+       __add_preload_info(mfx, manifest, GLOBAL_USER);
+
+       _LOGD("Added preload infomation\n");
 
        __ps_process_tag(mfx, tagv);
 
        ret = pkgmgr_parser_insert_manifest_info_in_db(mfx);
+       retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
+
+       _LOGD("DB Insert Success\n");
+
+       ret = __ps_process_metadata_parser(mfx, ACTION_INSTALL);
        if (ret == -1)
-               DBG("DB Insert failed\n");
-       else
-               DBG("DB Insert Success\n");
+               _LOGD("Creating metadata parser failed\n");
 
-       ret = __ps_process_mdparser(mfx, ACTION_INSTALL);
+       ret = __ps_process_category_parser(mfx, ACTION_INSTALL);
        if (ret == -1)
-               DBG("Creating metadata parser failed\n");
+               _LOGD("Creating category parser failed\n");
+
+       if (__check_action_fota(tagv))
+               ret = __ps_make_nativeapp_desktop(mfx, NULL, ACTION_FOTA, GLOBAL_USER);
+       else
+               ret = __ps_make_nativeapp_desktop(mfx, NULL, ACTION_INSTALL, GLOBAL_USER);
 
-       ret = __ps_make_nativeapp_desktop(mfx, NULL, 0);
        if (ret == -1)
-               DBG("Creating desktop file failed\n");
+               _LOGD("Creating desktop file failed\n");
        else
-               DBG("Creating desktop file Success\n");
+               _LOGD("Creating desktop file Success\n");
+
+       pkgmgr_parser_free_manifest_xml(mfx);
+       _LOGD("Free Done\n");
+       xmlCleanupParser();
+
+       return PMINFO_R_OK;
+}
+API int pkgmgr_parser_parse_usr_manifest_for_installation(const char *manifest, uid_t uid, char *const tagv[])
+{
+//     char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
+       retvm_if(manifest == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+       _LOGD("parsing manifest for installation: %s\n", manifest);
+       manifest_x *mfx = NULL;
+       int ret = -1;
+
+       xmlInitParser();
+       mfx = pkgmgr_parser_usr_process_manifest_xml(manifest, uid);
+       retvm_if(mfx == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+
+       _LOGD("Parsing Finished\n");
+//     __streamFile(manifest, ACTION_INSTALL, temp, mfx->package);
+       __ps_process_tag_parser(mfx, manifest, ACTION_INSTALL);
+       __add_preload_info(mfx, manifest, uid);
+
+       _LOGD("Added preload infomation\n");
+       __ps_process_tag(mfx, tagv);
+
+       ret = pkgmgr_parser_insert_manifest_info_in_usr_db(mfx, uid);
+       retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
+
+       _LOGD("DB Insert Success\n");
+       ret = __ps_process_metadata_parser(mfx, ACTION_INSTALL);
+       if (ret == -1)
+               _LOGD("Creating metadata parser failed\n");
+       ret = __ps_process_category_parser(mfx, ACTION_INSTALL);
+       if (ret == -1)
+               _LOGD("Creating category parser failed\n");
 
-       __ps_apply_shared_privileges(mfx, manifest);
+       if (__check_action_fota(tagv))
+               ret = __ps_make_nativeapp_desktop(mfx, NULL, ACTION_FOTA, uid);
+       else
+               ret = __ps_make_nativeapp_desktop(mfx, NULL, ACTION_INSTALL, uid);
 
+       if (ret == -1)
+               _LOGD("Creating desktop file failed\n");
+       else
+               _LOGD("Creating desktop file Success\n");
        pkgmgr_parser_free_manifest_xml(mfx);
-       DBG("Free Done\n");
+       _LOGD("Free Done\n");
        xmlCleanupParser();
 
        return PMINFO_R_OK;
@@ -4594,46 +5290,51 @@ API int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char
 
 API int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *const tagv[])
 {
-       char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
-       if (manifest == NULL) {
-               DBG("argument supplied is NULL\n");
-               return PMINFO_R_EINVAL;
-       }
-       DBG("parsing manifest for upgradation: %s\n", manifest);
+//     char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
+       retvm_if(manifest == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+       _LOGD("pkgmgr_parser_parse_manifest_for_upgrade  parsing manifest for upgradation: %s\n", manifest);
        manifest_x *mfx = NULL;
        int ret = -1;
        bool preload = false;
+       bool system = false;
        char *csc_path = NULL;
        pkgmgrinfo_pkginfo_h handle = NULL;
 
        xmlInitParser();
        mfx = pkgmgr_parser_process_manifest_xml(manifest);
-       DBG("Parsing Finished\n");
-       if (mfx == NULL)
-               return PMINFO_R_ERROR;
-       
-       __streamFile(manifest, ACTION_UPGRADE, temp, mfx->package);
-       __add_preload_info(mfx, manifest);
-       DBG("Added preload infomation\n");
-       __check_preload_updated(mfx, manifest);
+       retvm_if(mfx == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+
+       _LOGD("Parsing Finished\n");
+//     __streamFile(manifest, ACTION_UPGRADE, temp, mfx->package);
+       __ps_process_tag_parser(mfx, manifest, ACTION_UPGRADE);
+       __add_preload_info(mfx, manifest, GLOBAL_USER);
+       _LOGD("Added preload infomation\n");
+       __check_preload_updated(mfx, manifest, GLOBAL_USER);
 
        ret = pkgmgrinfo_pkginfo_get_pkginfo(mfx->package, &handle);
        if (ret != PMINFO_R_OK)
-               DBG("pkgmgrinfo_pkginfo_get_pkginfo failed\n");
-
+               _LOGD("pkgmgrinfo_pkginfo_get_pkginfo failed\n");
        ret = pkgmgrinfo_pkginfo_is_preload(handle, &preload);
        if (ret != PMINFO_R_OK)
-               DBG("pkgmgrinfo_pkginfo_is_preload failed\n");
+               _LOGD("pkgmgrinfo_pkginfo_is_preload failed\n");
 
        if (preload) {
                free((void *)mfx->preload);
                mfx->preload = strdup("true");
        }
 
-       ret = pkgmgrinfo_pkginfo_get_csc_path(handle, &csc_path);
+       ret = pkgmgrinfo_pkginfo_is_system(handle, &system);
        if (ret != PMINFO_R_OK)
-               DBG("pkgmgrinfo_pkginfo_get_csc_path failed\n");
+               _LOGD("pkgmgrinfo_pkginfo_is_system failed\n");
+       if (system) {
+               free((void *)mfx->system);
+               mfx->system = strdup("true");
+       }
 
+       ret = pkgmgrinfo_pkginfo_get_csc_path(handle, &csc_path);
+       if (ret != PMINFO_R_OK)
+               _LOGD("pkgmgrinfo_pkginfo_get_csc_path failed\n");
+       
        if (csc_path != NULL) {
                if (mfx->csc_path)
                        free((void *)mfx->csc_path);
@@ -4641,26 +5342,100 @@ API int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *con
        }
 
        ret = pkgmgr_parser_update_manifest_info_in_db(mfx);
+       retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
+       _LOGD("DB Update Success\n");
+       ret = __ps_process_metadata_parser(mfx, ACTION_UPGRADE);
+       if (ret == -1){
+               _LOGD("Upgrade metadata parser failed\n");
+       }
+       ret = __ps_process_category_parser(mfx, ACTION_UPGRADE);
        if (ret == -1)
-               DBG("DB Update failed\n");
+               _LOGD("Creating category parser failed\n");
+       ret = __ps_make_nativeapp_desktop(mfx, manifest, ACTION_UPGRADE, GLOBAL_USER);
+       if (ret == -1)
+               _LOGD("Creating desktop file failed\n");
        else
-               DBG("DB Update Success\n");
+               _LOGD("Creating desktop file Success\n");
+       pkgmgrinfo_pkginfo_destroy_pkginfo(handle);
+       pkgmgr_parser_free_manifest_xml(mfx);
+       _LOGD("Free Done\n");
+       xmlCleanupParser();
 
-       ret = __ps_process_mdparser(mfx, ACTION_UPGRADE);
-       if (ret == -1)
-               DBG("Upgrade metadata parser failed\n");
+       return PMINFO_R_OK;
+}
 
-       ret = __ps_make_nativeapp_desktop(mfx, manifest, 1);
-       if (ret == -1)
-               DBG("Creating desktop file failed\n");
-       else
-               DBG("Creating desktop file Success\n");
+API int pkgmgr_parser_parse_usr_manifest_for_upgrade(const char *manifest, uid_t uid, char *const tagv[])
+{
+//     char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
+       retvm_if(manifest == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+       _LOGD(" pkgmgr_parser_parse_usr_manifest_for_upgrade parsing manifest for upgradation: %s\n", manifest);
+       manifest_x *mfx = NULL;
+       int ret = -1;
+       bool preload = false;
+       bool system = false;
+       char *csc_path = NULL;
+       pkgmgrinfo_pkginfo_h handle = NULL;
+
+       xmlInitParser();
+       mfx = pkgmgr_parser_usr_process_manifest_xml(manifest, uid);
+       retvm_if(mfx == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+
+       _LOGD("Parsing Finished\n");
+       //__streamFile(manifest, ACTION_UPGRADE, temp, mfx->package);
+       __ps_process_tag_parser(mfx, manifest, ACTION_UPGRADE);
+       __add_preload_info(mfx, manifest, uid);
+       _LOGD("Added preload infomation\n");
+       _LOGE("Added preload infomation\n");
+       __check_preload_updated(mfx, manifest, uid);
+
+       ret = pkgmgrinfo_pkginfo_get_usr_pkginfo(mfx->package, uid, &handle);
+       if (ret != PMINFO_R_OK)
+               _LOGD("pkgmgrinfo_pkginfo_get_pkginfo failed\n");
+       ret = pkgmgrinfo_pkginfo_is_preload(handle, &preload);
+       if (ret != PMINFO_R_OK)
+               _LOGD("pkgmgrinfo_pkginfo_is_preload failed\n");
+
+       if (preload) {
+               free((void *)mfx->preload);
+               mfx->preload = strdup("true");
+       }
+
+       ret = pkgmgrinfo_pkginfo_is_system(handle, &system);
+       if (ret != PMINFO_R_OK)
+               _LOGD("pkgmgrinfo_pkginfo_is_system failed\n");
+
+       if (system) {
+               free((void *)mfx->system);
+               mfx->system = strdup("true");
+       }
 
-       __ps_apply_shared_privileges(mfx, manifest);
+       ret = pkgmgrinfo_pkginfo_get_csc_path(handle, &csc_path);
+       if (ret != PMINFO_R_OK)
+               _LOGD("pkgmgrinfo_pkginfo_get_csc_path failed\n");
+       if (csc_path != NULL) {
+               if (mfx->csc_path)
+                       free((void *)mfx->csc_path);
+               mfx->csc_path = strdup(csc_path);
+       }
 
+       ret = pkgmgr_parser_update_manifest_info_in_usr_db(mfx, uid);
+       retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
+       _LOGD("DB Update Success\n");
+       _LOGE("DB Update Success\n" );
+       ret = __ps_process_metadata_parser(mfx, ACTION_UPGRADE);
+       if (ret == -1)
+               _LOGD("Upgrade metadata parser failed\n");
+       ret = __ps_process_category_parser(mfx, ACTION_UPGRADE);
+       if (ret == -1)
+               _LOGD("Creating category parser failed\n");
+       ret = __ps_make_nativeapp_desktop(mfx, manifest, ACTION_UPGRADE, uid);
+       if (ret == -1)
+               _LOGD("Creating desktop file failed\n");
+       else
+               _LOGD("Creating desktop file Success\n");
        pkgmgrinfo_pkginfo_destroy_pkginfo(handle);
        pkgmgr_parser_free_manifest_xml(mfx);
-       DBG("Free Done\n");
+       _LOGD("Free Done\n");
        xmlCleanupParser();
 
        return PMINFO_R_OK;
@@ -4668,63 +5443,130 @@ API int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *con
 
 API int pkgmgr_parser_parse_manifest_for_uninstallation(const char *manifest, char *const tagv[])
 {
-       char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
-       if (manifest == NULL) {
-               DBG("argument supplied is NULL\n");
-               return PMINFO_R_EINVAL;
-       }
-       DBG("parsing manifest for uninstallation: %s\n", manifest);
+//     char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
+       retvm_if(manifest == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+       _LOGD("parsing manifest for uninstallation: %s\n", manifest);
+
        manifest_x *mfx = NULL;
        int ret = -1;
        xmlInitParser();
        mfx = pkgmgr_parser_process_manifest_xml(manifest);
-       DBG("Parsing Finished\n");
-       if (mfx == NULL)
-               return PMINFO_R_ERROR;
-       
-       __streamFile(manifest, ACTION_UNINSTALL, temp, mfx->package);
-       __add_preload_info(mfx, manifest);
-       DBG("Added preload infomation\n");
+       retvm_if(mfx == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+
+       _LOGD("Parsing Finished\n");
+
+//     __streamFile(manifest, ACTION_UNINSTALL, temp, mfx->package);
+       __ps_process_tag_parser(mfx, manifest, ACTION_UNINSTALL);
+
+       __add_preload_info(mfx, manifest, GLOBAL_USER);
+       _LOGD("Added preload infomation\n");
 
-       ret = __ps_process_mdparser(mfx, ACTION_UNINSTALL);
+       ret = __ps_process_metadata_parser(mfx, ACTION_UNINSTALL);
        if (ret == -1)
-               DBG("Removing metadata parser failed\n");
+               _LOGD("Removing metadata parser failed\n");
+
+       ret = __ps_process_category_parser(mfx, ACTION_UNINSTALL);
+       if (ret == -1)
+               _LOGD("Creating category parser failed\n");
 
        ret = pkgmgr_parser_delete_manifest_info_from_db(mfx);
        if (ret == -1)
-               DBG("DB Delete failed\n");
+               _LOGD("DB Delete failed\n");
        else
-               DBG("DB Delete Success\n");
+               _LOGD("DB Delete Success\n");
 
-       ret = __ps_remove_nativeapp_desktop(mfx);
+       ret = __ps_remove_nativeapp_desktop(mfx, GLOBAL_USER);
        if (ret == -1)
-               DBG("Removing desktop file failed\n");
+               _LOGD("Removing desktop file failed\n");
        else
-               DBG("Removing desktop file Success\n");
+               _LOGD("Removing desktop file Success\n");
 
        ret = __ps_remove_appsvc_db(mfx);
        if (ret == -1)
-               DBG("Removing appsvc_db failed\n");
+               _LOGD("Removing appsvc_db failed\n");
        else
-               DBG("Removing appsvc_db Success\n");
+               _LOGD("Removing appsvc_db Success\n");
 
        pkgmgr_parser_free_manifest_xml(mfx);
-       DBG("Free Done\n");
+       _LOGD("Free Done\n");
        xmlCleanupParser();
 
        return PMINFO_R_OK;
 }
 
-API int pkgmgr_parser_parse_manifest_for_preload()
+
+API int pkgmgr_parser_parse_usr_manifest_for_uninstallation(const char *manifest, uid_t uid, char *const tagv[])
 {
-       __ps_process_smack();
+//     char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", "font", NULL};
+       retvm_if(manifest == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
+       _LOGD("parsing manifest for uninstallation: %s\n", manifest);
+
+       manifest_x *mfx = NULL;
+       int ret = -1;
+       xmlInitParser();
+       mfx = pkgmgr_parser_usr_process_manifest_xml(manifest, uid);
+       retvm_if(mfx == NULL, PMINFO_R_ERROR, "argument supplied is NULL");
 
+       _LOGD("Parsing Finished\n");
+
+//     __streamFile(manifest, ACTION_UNINSTALL, temp, mfx->package);
+       __ps_process_tag_parser(mfx, manifest, ACTION_UNINSTALL);
+
+       __add_preload_info(mfx, manifest, uid);
+       _LOGD("Added preload infomation\n");
+
+       ret = __ps_process_metadata_parser(mfx, ACTION_UNINSTALL);
+       if (ret == -1)
+               _LOGD("Removing metadata parser failed\n");
+
+       ret = __ps_process_category_parser(mfx, ACTION_UNINSTALL);
+       if (ret == -1)
+               _LOGD("Creating category parser failed\n");
+
+       ret = pkgmgr_parser_delete_manifest_info_from_usr_db(mfx, uid);
+       if (ret == -1)
+               _LOGD("DB Delete failed\n");
+       else
+               _LOGD("DB Delete Success\n");
+
+       ret = __ps_remove_nativeapp_desktop(mfx, uid);
+       if (ret == -1)
+               _LOGD("Removing desktop file failed\n");
+       else
+               _LOGD("Removing desktop file Success\n");
+
+       ret = __ps_remove_appsvc_db(mfx);
+       if (ret == -1)
+               _LOGD("Removing appsvc_db failed\n");
+       else
+               _LOGD("Removing appsvc_db Success\n");
+
+       pkgmgr_parser_free_manifest_xml(mfx);
+       _LOGD("Free Done\n");
+       xmlCleanupParser();
+
+       return PMINFO_R_OK;
+}
+
+API int pkgmgr_parser_parse_manifest_for_preload()
+{
        return pkgmgr_parser_update_preload_info_in_db();
 }
 
+API int pkgmgr_parser_parse_usr_manifest_for_preload(uid_t uid)
+{
+       return pkgmgr_parser_update_preload_info_in_usr_db(uid);
+}
+
+
+API char *pkgmgr_parser_get_usr_manifest_file(const char *pkgid, uid_t uid)
+{
+       return __pkgid_to_manifest(pkgid, uid);
+}
+
 API char *pkgmgr_parser_get_manifest_file(const char *pkgid)
 {
-       return __pkgid_to_manifest(pkgid);
+       return __pkgid_to_manifest(pkgid, GLOBAL_USER);
 }
 
 API int pkgmgr_parser_run_parser_for_installation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
@@ -4742,11 +5584,12 @@ API int pkgmgr_parser_run_parser_for_uninstallation(xmlDocPtr docPtr, const char
        return __ps_run_parser(docPtr, tag, ACTION_UNINSTALL, pkgid);
 }
 
+#define SCHEMA_FILE SYSCONFDIR "/package-manager/preload/manifest.xsd"
 #if 1
 API int pkgmgr_parser_check_manifest_validation(const char *manifest)
 {
        if (manifest == NULL) {
-               DBGE("manifest file is NULL\n");
+               _LOGE("manifest file is NULL\n");
                return PMINFO_R_EINVAL;
        }
        int ret = -1;
@@ -4755,29 +5598,29 @@ API int pkgmgr_parser_check_manifest_validation(const char *manifest)
        xmlSchemaPtr xschema;
        ctx = xmlSchemaNewParserCtxt(SCHEMA_FILE);
        if (ctx == NULL) {
-               DBGE("xmlSchemaNewParserCtxt() Failed\n");
+               _LOGE("xmlSchemaNewParserCtxt() Failed\n");
                return PMINFO_R_ERROR;
        }
        xschema = xmlSchemaParse(ctx);
        if (xschema == NULL) {
-               DBGE("xmlSchemaParse() Failed\n");
+               _LOGE("xmlSchemaParse() Failed\n");
                return PMINFO_R_ERROR;
        }
        vctx = xmlSchemaNewValidCtxt(xschema);
        if (vctx == NULL) {
-               DBGE("xmlSchemaNewValidCtxt() Failed\n");
+               _LOGE("xmlSchemaNewValidCtxt() Failed\n");
                return PMINFO_R_ERROR;
        }
        xmlSchemaSetValidErrors(vctx, (xmlSchemaValidityErrorFunc) fprintf, (xmlSchemaValidityWarningFunc) fprintf, stderr);
        ret = xmlSchemaValidateFile(vctx, manifest, 0);
        if (ret == -1) {
-               DBGE("xmlSchemaValidateFile() failed\n");
+               _LOGE("xmlSchemaValidateFile() failed\n");
                return PMINFO_R_ERROR;
        } else if (ret == 0) {
-               DBGE("Manifest is Valid\n");
+               _LOGE("Manifest is Valid\n");
                return PMINFO_R_OK;
        } else {
-               DBGE("Manifest Validation Failed with error code %d\n", ret);
+               _LOGE("Manifest Validation Failed with error code %d\n", ret);
                return PMINFO_R_ERROR;
        }
        return PMINFO_R_OK;
@@ -4794,7 +5637,7 @@ API int pkgmgr_parser_check_manifest_validation(const char *manifest)
 
        switch (pid) {
        case -1:
-               DBGE("fork failed\n");
+               _LOGE("fork failed\n");
                return -1;
        case 0:
                /* child */
@@ -4809,7 +5652,7 @@ API int pkgmgr_parser_check_manifest_validation(const char *manifest)
 
                        if (execl("/usr/bin/xmllint", "xmllint", manifest, "--schema",
                                SCHEMA_FILE, NULL) < 0) {
-                               DBGE("execl error\n");
+                               _LOGE("execl error\n");
                        }
 
                        _exit(100);
@@ -4823,7 +5666,7 @@ API int pkgmgr_parser_check_manifest_validation(const char *manifest)
                if (err < 0) {
                        if (errno == EINTR)
                                continue;
-                       DBGE("waitpid failed\n");
+                       _LOGE("waitpid failed\n");
                        return -1;
                }
        }