Fix app_control process
[platform/core/appfw/pkgmgr-info.git] / parser / pkgmgr_parser_db.c
1 /*
2  * pkgmgr-info
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>,
7  * Jaeho Lee <jaeho81.lee@samsung.com>, Shobhit Srivastava <shobhit.s@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/types.h>
27 #include <sys/smack.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <db-util.h>
31 #include <glib.h>
32 #include <grp.h>
33 #include <pwd.h>
34
35 /* For multi-user support */
36 #include <tzplatform_config.h>
37
38 #include "pkgmgr-info.h"
39 #include "pkgmgr_parser_internal.h"
40 #include "pkgmgr_parser_db.h"
41
42 #include "pkgmgr-info-debug.h"
43
44 #ifdef LOG_TAG
45 #undef LOG_TAG
46 #endif
47 #define LOG_TAG "PKGMGR_PARSER"
48
49 #define PKGMGR_PARSER_DB_FILE tzplatform_mkpath(TZ_SYS_DB, ".pkgmgr_parser.db")
50 #define PKGMGR_CERT_DB_FILE tzplatform_mkpath(TZ_SYS_DB, ".pkgmgr_cert.db")
51 #define MAX_QUERY_LEN           4096
52 #define BUFSIZE 4096
53 #define OWNER_ROOT 0
54
55 #define SET_SMACK_LABEL(x,uid) \
56         if(smack_setlabel((x), (((uid) == GLOBAL_USER)?"*":"User"), SMACK_LABEL_ACCESS)) _LOGE("failed chsmack -a \"User/*\" %s", x); \
57         else _LOGD("chsmack -a \"User/*\" %s", x);
58
59 sqlite3 *pkgmgr_parser_db;
60 sqlite3 *pkgmgr_cert_db;
61
62
63 #define QUERY_CREATE_TABLE_PACKAGE_INFO "create table if not exists package_info " \
64                                                 "(package text primary key not null, " \
65                                                 "package_type text DEFAULT 'rpm', " \
66                                                 "package_version text, " \
67                                                 "install_location text, " \
68                                                 "package_size text, " \
69                                                 "package_removable text DEFAULT 'true', " \
70                                                 "package_preload text DEFAULT 'false', " \
71                                                 "package_readonly text DEFAULT 'false', " \
72                                                 "package_update text DEFAULT 'false', " \
73                                                 "package_appsetting text DEFAULT 'false', " \
74                                                 "package_nodisplay text DEFAULT 'false', " \
75                                                 "package_system text DEFAULT 'false', " \
76                                                 "author_name text, " \
77                                                 "author_email text, " \
78                                                 "author_href text," \
79                                                 "installed_time text," \
80                                                 "installed_storage text," \
81                                                 "storeclient_id text," \
82                                                 "mainapp_id text," \
83                                                 "package_url text," \
84                                                 "root_path text," \
85                                                 "csc_path text )"
86
87 #define QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO "create table if not exists package_localized_info " \
88                                                 "(package text not null, " \
89                                                 "package_locale text DEFAULT 'No Locale', " \
90                                                 "package_label text, " \
91                                                 "package_icon text, " \
92                                                 "package_description text, " \
93                                                 "package_license text, " \
94                                                 "package_author, " \
95                                                 "PRIMARY KEY(package, package_locale), " \
96                                                 "FOREIGN KEY(package) " \
97                                                 "REFERENCES package_info(package) " \
98                                                 "ON DELETE CASCADE)"
99
100 #define QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO "create table if not exists package_privilege_info " \
101                                                 "(package text not null, " \
102                                                 "privilege text not null, " \
103                                                 "PRIMARY KEY(package, privilege) " \
104                                                 "FOREIGN KEY(package) " \
105                                                 "REFERENCES package_info(package) " \
106                                                 "ON DELETE CASCADE)"
107
108 #define QUERY_CREATE_TABLE_PACKAGE_APP_INFO "create table if not exists package_app_info " \
109                                                 "(app_id text primary key not null, " \
110                                                 "app_component text, " \
111                                                 "app_exec text, " \
112                                                 "app_nodisplay text DEFAULT 'false', " \
113                                                 "app_type text, " \
114                                                 "app_onboot text DEFAULT 'false', " \
115                                                 "app_multiple text DEFAULT 'false', " \
116                                                 "app_autorestart text DEFAULT 'false', " \
117                                                 "app_taskmanage text DEFAULT 'false', " \
118                                                 "app_enabled text DEFAULT 'true', " \
119                                                 "app_hwacceleration text DEFAULT 'use-system-setting', " \
120                                                 "app_screenreader text DEFAULT 'use-system-setting', " \
121                                                 "app_mainapp text, " \
122                                                 "app_recentimage text, " \
123                                                 "app_launchcondition text, " \
124                                                 "app_indicatordisplay text DEFAULT 'true', " \
125                                                 "app_portraitimg text, " \
126                                                 "app_landscapeimg text, " \
127                                                 "app_guestmodevisibility text DEFAULT 'true', " \
128                                                 "app_permissiontype text DEFAULT 'normal', " \
129                                                 "app_preload text DEFAULT 'false', " \
130                                                 "app_submode text DEFAULT 'false', " \
131                                                 "app_submode_mainid text, " \
132                                                 "app_launch_mode text NOT NULL DEFAULT 'caller', " \
133                                                 "component_type text, " \
134                                                 "package text not null, " \
135                                                 "FOREIGN KEY(package) " \
136                                                 "REFERENCES package_info(package) " \
137                                                 "ON DELETE CASCADE)"
138
139 #define QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO "create table if not exists package_app_localized_info " \
140                                                 "(app_id text not null, " \
141                                                 "app_locale text DEFAULT 'No Locale', " \
142                                                 "app_label text, " \
143                                                 "app_icon text, " \
144                                                 "PRIMARY KEY(app_id,app_locale) " \
145                                                 "FOREIGN KEY(app_id) " \
146                                                 "REFERENCES package_app_info(app_id) " \
147                                                 "ON DELETE CASCADE)"
148
149 #define QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO "create table if not exists package_app_icon_section_info " \
150                                                 "(app_id text not null, " \
151                                                 "app_icon text, " \
152                                                 "app_icon_section text, " \
153                                                 "app_icon_resolution text, " \
154                                                 "PRIMARY KEY(app_id,app_icon_section,app_icon_resolution) " \
155                                                 "FOREIGN KEY(app_id) " \
156                                                 "REFERENCES package_app_info(app_id) " \
157                                                 "ON DELETE CASCADE)"
158
159 #define QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO "create table if not exists package_app_image_info " \
160                                                 "(app_id text not null, " \
161                                                 "app_locale text DEFAULT 'No Locale', " \
162                                                 "app_image_section text, " \
163                                                 "app_image text, " \
164                                                 "PRIMARY KEY(app_id,app_image_section) " \
165                                                 "FOREIGN KEY(app_id) " \
166                                                 "REFERENCES package_app_info(app_id) " \
167                                                 "ON DELETE CASCADE)"
168
169 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL "create table if not exists package_app_app_control " \
170                                                 "(app_id text not null, " \
171                                                 "app_control text not null, " \
172                                                 "PRIMARY KEY(app_id,app_control) " \
173                                                 "FOREIGN KEY(app_id) " \
174                                                 "REFERENCES package_app_info(app_id) " \
175                                                 "ON DELETE CASCADE)"
176
177 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_SVC "create table if not exists package_app_app_svc " \
178                                                 "(app_id text not null, " \
179                                                 "operation text not null, " \
180                                                 "uri_scheme text, " \
181                                                 "mime_type text, " \
182                                                 "subapp_name text, " \
183                                                 "PRIMARY KEY(app_id,operation,uri_scheme,mime_type,subapp_name) " \
184                                                 "FOREIGN KEY(app_id) " \
185                                                 "REFERENCES package_app_info(app_id) " \
186                                                 "ON DELETE CASCADE)"
187
188 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY "create table if not exists package_app_app_category " \
189                                                 "(app_id text not null, " \
190                                                 "category text not null, " \
191                                                 "PRIMARY KEY(app_id,category) " \
192                                                 "FOREIGN KEY(app_id) " \
193                                                 "REFERENCES package_app_info(app_id) " \
194                                                 "ON DELETE CASCADE)"
195
196 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA "create table if not exists package_app_app_metadata " \
197                                                 "(app_id text not null, " \
198                                                 "md_key text not null, " \
199                                                 "md_value text not null, " \
200                                                 "PRIMARY KEY(app_id, md_key, md_value) " \
201                                                 "FOREIGN KEY(app_id) " \
202                                                 "REFERENCES package_app_info(app_id) " \
203                                                 "ON DELETE CASCADE)"
204
205 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION "create table if not exists package_app_app_permission " \
206                                                 "(app_id text not null, " \
207                                                 "pm_type text not null, " \
208                                                 "pm_value text not null, " \
209                                                 "PRIMARY KEY(app_id, pm_type, pm_value) " \
210                                                 "FOREIGN KEY(app_id) " \
211                                                 "REFERENCES package_app_info(app_id) " \
212                                                 "ON DELETE CASCADE)"
213
214 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED "create table if not exists package_app_share_allowed " \
215                                                 "(app_id text not null, " \
216                                                 "data_share_path text not null, " \
217                                                 "data_share_allowed text not null, " \
218                                                 "PRIMARY KEY(app_id,data_share_path,data_share_allowed) " \
219                                                 "FOREIGN KEY(app_id) " \
220                                                 "REFERENCES package_app_info(app_id) " \
221                                                 "ON DELETE CASCADE)"
222
223 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST "create table if not exists package_app_share_request " \
224                                                 "(app_id text not null, " \
225                                                 "data_share_request text not null, " \
226                                                 "PRIMARY KEY(app_id,data_share_request) " \
227                                                 "FOREIGN KEY(app_id) " \
228                                                 "REFERENCES package_app_info(app_id) " \
229                                                 "ON DELETE CASCADE)"
230
231 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO "create table if not exists package_cert_index_info " \
232                                                 "(cert_info text not null, " \
233                                                 "cert_id integer, " \
234                                                 "cert_ref_count integer, " \
235                                                 "PRIMARY KEY(cert_id)) "
236
237 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INFO "create table if not exists package_cert_info " \
238                                                 "(package text not null, " \
239                                                 "author_root_cert integer, " \
240                                                 "author_im_cert integer, " \
241                                                 "author_signer_cert integer, " \
242                                                 "dist_root_cert integer, " \
243                                                 "dist_im_cert integer, " \
244                                                 "dist_signer_cert integer, " \
245                                                 "dist2_root_cert integer, " \
246                                                 "dist2_im_cert integer, " \
247                                                 "dist2_signer_cert integer, " \
248                                                 "PRIMARY KEY(package)) "
249
250 #define QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL "create table if not exists package_app_data_control " \
251                                                 "(app_id text not null, " \
252                                                 "providerid text not null, " \
253                                                 "access text not null, " \
254                                                 "type text not null, " \
255                                                 "PRIMARY KEY(app_id, providerid, access, type) " \
256                                                 "FOREIGN KEY(app_id) " \
257                                                 "REFERENCES package_app_info(app_id) " \
258                                                 "ON DELETE CASCADE)"
259 #define QUERY_CREATE_TABLE_PACKAGE_RESOURCE_INFO "CREATE TABLE IF NOT EXISTS package_resource_info" \
260                                                 "(pkg_id text NOT NULL," \
261                                                 "group_folder text NOT NULL," \
262                                                 "group_type text NOT NULL," \
263                                                 "PRIMARY KEY(pkg_id, group_type))"
264
265 #define QUERY_CREATE_TABLE_PACKAGE_RESOURCE_DATA "CREATE TABLE IF NOT EXISTS package_resource_data" \
266                                                 "(id integer REFERENCES package_resource_info(rowid)," \
267                                                 "node_folder text NOT NULL," \
268                                                 "attr_name text NOT NULL," \
269                                                 "attr_value test NOT NULL," \
270                                                 "PRIMARY KEY(id, node_folder, attr_name))"
271
272 static int __insert_uiapplication_info(manifest_x *mfx);
273 static int __insert_serviceapplication_info(manifest_x *mfx);
274 static int __insert_uiapplication_appsvc_info(manifest_x *mfx);
275 static int __insert_serviceapplication_appsvc_info(manifest_x *mfx);
276 static int __insert_uiapplication_appcategory_info(manifest_x *mfx);
277 static int __insert_serviceapplication_appcategory_info(manifest_x *mfx);
278 static int __insert_uiapplication_appcontrol_info(manifest_x *mfx);
279 static int __insert_serviceapplication_appmetadata_info(manifest_x *mfx);
280 static int __insert_uiapplication_appmetadata_info(manifest_x *mfx);
281 static int __insert_serviceapplication_appcontrol_info(manifest_x *mfx);
282 static int __insert_uiapplication_share_allowed_info(manifest_x *mfx);
283 static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx);
284 static int __insert_uiapplication_share_request_info(manifest_x *mfx);
285 static int __insert_serviceapplication_share_request_info(manifest_x *mfx);
286 static int __insert_serviceapplication_datacontrol_info(manifest_x *mfx);
287 static void __insert_serviceapplication_locale_info(gpointer data, gpointer userdata);
288 static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata);
289 static void __insert_pkglocale_info(gpointer data, gpointer userdata);
290 static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid);
291 static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid);
292 static int __delete_subpkg_info_from_db(char *appid);
293 static int __delete_appinfo_from_db(char *db_table, const char *appid);
294 static int __initialize_db(sqlite3 *db_handle, const char *db_query);
295 static int __exec_query(char *query);
296 static void __extract_data(gpointer data, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath,
297                 char **label, char **license, char **icon, char **description, char **author);
298 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata);
299 static GList *__create_locale_list(GList *locale, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath);
300 static void __preserve_guestmode_visibility_value(manifest_x *mfx);
301 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname);
302 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path);
303
304 static int __delete_subpkg_list_cb(void *data, int ncols, char **coltxt, char **colname)
305 {
306         if (coltxt[0])
307                 __delete_subpkg_info_from_db(coltxt[0]);
308
309         return 0;
310 }
311
312 static char *__get_str(const char *str)
313 {
314         if (str == NULL)
315         {
316                 return PKGMGR_PARSER_EMPTY_STR;
317         }
318
319         return str;
320 }
321
322 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path)
323 {
324         int ret = -1;
325         sqlite3 *handle;
326
327         ret = db_util_open(db_path, &handle,  DB_UTIL_REGISTER_HOOK_METHOD);
328         if (ret != SQLITE_OK) {
329                 _LOGD("connect db [%s] failed!\n", db_path);
330                 return -1;
331         }
332         *db_handle = handle;
333
334         return 0;
335 }
336
337 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname)
338 {
339         manifest_x *mfx = (manifest_x *)data;
340         int i = 0;
341         char *appid = NULL;
342         char *status = NULL;
343         uiapplication_x *uiapp = NULL;
344         for(i = 0; i < ncols; i++)
345         {
346                 uiapp = mfx->uiapplication;
347                 if (strcmp(colname[i], "app_id") == 0) {
348                         if (coltxt[i])
349                                 appid = strdup(coltxt[i]);
350                 } else if (strcmp(colname[i], "app_guestmodevisibility") == 0) {
351                         if (coltxt[i])
352                                 status = strdup(coltxt[i]);
353                 }
354         }
355         if (appid == NULL) {
356                 _LOGD("app id is NULL\n");
357                 return -1;
358         }
359         /*update guest mode visibility*/
360         for (; uiapp != NULL; uiapp = uiapp->next) {
361                 if (strcmp(uiapp->appid, appid) == 0) {
362                         free((void *)uiapp->guestmode_visibility);
363                         uiapp->guestmode_visibility = strdup(status);
364                         break;
365                 }
366         }
367         if (appid) {
368                 free(appid);
369                 appid = NULL;
370         }
371         if (status) {
372                 free(status);
373                 status = NULL;
374         }
375
376         return 0;
377 }
378
379 static void __preserve_guestmode_visibility_value(manifest_x *mfx)
380 {
381         char *error_message = NULL;
382         char query[MAX_QUERY_LEN] = {'\0'};
383         snprintf(query, MAX_QUERY_LEN - 1, "select app_id, app_guestmodevisibility from package_app_info where package='%s'", mfx->package);
384         if (SQLITE_OK !=
385             sqlite3_exec(pkgmgr_parser_db, query,
386                          __guestmode_visibility_cb, (void *)mfx, &error_message)) {
387                 _LOGD("Don't execute query = %s error message = %s\n",
388                        query, error_message);
389                 sqlite3_free(error_message);
390         }
391         return;
392 }
393
394 static int __initialize_db(sqlite3 *db_handle, const char *db_query)
395 {
396         char *error_message = NULL;
397         if (SQLITE_OK !=
398             sqlite3_exec(db_handle, db_query,
399                          NULL, NULL, &error_message)) {
400                 _LOGD("Don't execute query = %s error message = %s\n",
401                        db_query, error_message);
402                 sqlite3_free(error_message);
403                 return -1;
404         }
405         sqlite3_free(error_message);
406         return 0;
407 }
408
409 static int __exec_query(char *query)
410 {
411         char *error_message = NULL;
412         if (SQLITE_OK !=
413             sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
414                 _LOGD("Don't execute query = %s error message = %s\n", query,
415                        error_message);
416                 sqlite3_free(error_message);
417                 return -1;
418         }
419         sqlite3_free(error_message);
420         return 0;
421 }
422
423 static int __exec_query_no_msg(char *query)
424 {
425         char *error_message = NULL;
426         if (SQLITE_OK !=
427             sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
428                 sqlite3_free(error_message);
429                 return -1;
430         }
431         sqlite3_free(error_message);
432         return 0;
433 }
434
435 static GList *__create_locale_list(GList *locale, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath)
436 {
437
438         while(lbl != NULL)
439         {
440                 if (lbl->lang)
441                         locale = g_list_insert_sorted_with_data(locale, (gpointer)lbl->lang, __comparefunc, NULL);
442                 lbl = lbl->next;
443         }
444         while(lcn != NULL)
445         {
446                 if (lcn->lang)
447                         locale = g_list_insert_sorted_with_data(locale, (gpointer)lcn->lang, __comparefunc, NULL);
448                 lcn = lcn->next;
449         }
450         while(icn != NULL)
451         {
452                 if (icn->lang)
453                         locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->lang, __comparefunc, NULL);
454                 icn = icn->next;
455         }
456         while(dcn != NULL)
457         {
458                 if (dcn->lang)
459                         locale = g_list_insert_sorted_with_data(locale, (gpointer)dcn->lang, __comparefunc, NULL);
460                 dcn = dcn->next;
461         }
462         while(ath != NULL)
463         {
464                 if (ath->lang)
465                         locale = g_list_insert_sorted_with_data(locale, (gpointer)ath->lang, __comparefunc, NULL);
466                 ath = ath->next;
467         }
468         return locale;
469
470 }
471
472 static GList *__create_icon_list(GList *locale, icon_x *icn)
473 {
474         while(icn != NULL)
475         {
476                 if (icn->section)
477                         locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->section, __comparefunc, NULL);
478                 icn = icn->next;
479         }
480         return locale;
481 }
482
483 static GList *__create_image_list(GList *locale, image_x *image)
484 {
485         while(image != NULL)
486         {
487                 if (image->section)
488                         locale = g_list_insert_sorted_with_data(locale, (gpointer)image->section, __comparefunc, NULL);
489                 image = image->next;
490         }
491         return locale;
492 }
493
494 static void __printfunc(gpointer data, gpointer userdata)
495 {
496         _LOGD("%s  ", (char*)data);
497 }
498
499 static void __trimfunc(GList* trim_list)
500 {
501         char *trim_data = NULL;
502         char *prev = NULL;
503
504         GList *list = NULL;
505         list = g_list_first(trim_list);
506
507         while (list) {
508                 trim_data = (char *)list->data;
509                 if (trim_data) {
510                         if (prev) {
511                                 if (strcmp(trim_data, prev) == 0) {
512                                         trim_list = g_list_remove(trim_list, trim_data);
513                                         list = g_list_first(trim_list);
514                                         prev = NULL;
515                                         continue;
516                                 } else
517                                         prev = trim_data;
518                         }
519                         else
520                                 prev = trim_data;
521                 }
522                 list = g_list_next(list);
523         }
524 }
525
526 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata)
527 {
528         if (a == NULL || b == NULL)
529                 return 0;
530         if (strcmp((char*)a, (char*)b) == 0)
531                 return 0;
532         if (strcmp((char*)a, (char*)b) < 0)
533                 return -1;
534         if (strcmp((char*)a, (char*)b) > 0)
535                 return 1;
536         return 0;
537 }
538
539 static void __extract_data(gpointer data, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath,
540                 char **label, char **license, char **icon, char **description, char **author)
541 {
542         while(lbl != NULL)
543         {
544                 if (lbl->lang) {
545                         if (strcmp(lbl->lang, (char *)data) == 0) {
546                                 *label = (char*)lbl->text;
547                                 break;
548                         }
549                 }
550                 lbl = lbl->next;
551         }
552         while(lcn != NULL)
553         {
554                 if (lcn->lang) {
555                         if (strcmp(lcn->lang, (char *)data) == 0) {
556                                 *license = (char*)lcn->text;
557                                 break;
558                         }
559                 }
560                 lcn = lcn->next;
561         }
562         while(icn != NULL)
563         {
564                 if (icn->lang) {
565                         if (strcmp(icn->lang, (char *)data) == 0) {
566                                 *icon = (char*)icn->text;
567                                 break;
568                         }
569                 }
570                 icn = icn->next;
571         }
572         while(dcn != NULL)
573         {
574                 if (dcn->lang) {
575                         if (strcmp(dcn->lang, (char *)data) == 0) {
576                                 *description = (char*)dcn->text;
577                                 break;
578                         }
579                 }
580                 dcn = dcn->next;
581         }
582         while(ath != NULL)
583         {
584                 if (ath->lang) {
585                         if (strcmp(ath->lang, (char *)data) == 0) {
586                                 *author = (char*)ath->text;
587                                 break;
588                         }
589                 }
590                 ath = ath->next;
591         }
592
593 }
594
595 static void __extract_icon_data(gpointer data, icon_x *icn, char **icon, char **resolution)
596 {
597         while(icn != NULL)
598         {
599                 if (icn->section) {
600                         if (strcmp(icn->section, (char *)data) == 0) {
601                                 *icon = (char*)icn->text;
602                                 *resolution = (char*)icn->resolution;
603                                 break;
604                         }
605                 }
606                 icn = icn->next;
607         }
608 }
609
610 static void __extract_image_data(gpointer data, image_x*image, char **lang, char **img)
611 {
612         while(image != NULL)
613         {
614                 if (image->section) {
615                         if (strcmp(image->section, (char *)data) == 0) {
616                                 *lang = (char*)image->lang;
617                                 *img = (char*)image->text;
618                                 break;
619                         }
620                 }
621                 image = image->next;
622         }
623 }
624
625 static void __insert_pkglocale_info(gpointer data, gpointer userdata)
626 {
627         int ret = -1;
628         char *label = NULL;
629         char *icon = NULL;
630         char *description = NULL;
631         char *license = NULL;
632         char *author = NULL;
633         char query[MAX_QUERY_LEN] = {'\0'};
634
635         manifest_x *mfx = (manifest_x *)userdata;
636         label_x *lbl = mfx->label;
637         license_x *lcn = mfx->license;
638         icon_x *icn = mfx->icon;
639         description_x *dcn = mfx->description;
640         author_x *ath = mfx->author;
641
642         __extract_data(data, lbl, lcn, icn, dcn, ath, &label, &license, &icon, &description, &author);
643         if (!label && !description && !icon && !license && !author)
644                 return;
645
646         sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
647                 "package_label, package_icon, package_description, package_license, package_author) values " \
648                 "('%q', '%q', '%q', '%q', '%s', '%s', '%s')",
649                 mfx->package,
650                 (char*)data,
651                 label,
652                 icon,
653                 __get_str(description),
654                 __get_str(license),
655                 __get_str(author));
656
657         ret = __exec_query(query);
658         if (ret == -1)
659                 _LOGD("Package Localized Info DB Insert failed\n");
660 }
661
662 static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata)
663 {
664         int ret = -1;
665         char *label = NULL;
666         char *icon = NULL;
667         char query[MAX_QUERY_LEN] = {'\0'};
668
669         uiapplication_x *up = (uiapplication_x*)userdata;
670         label_x *lbl = up->label;
671         icon_x *icn = up->icon;
672
673         __extract_data(data, lbl, NULL, icn, NULL, NULL, &label, NULL, &icon, NULL, NULL);
674         if (!label && !icon)
675                 return;
676         sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_localized_info(app_id, app_locale, " \
677                 "app_label, app_icon) values " \
678                 "('%q', '%q', '%q', '%q')", up->appid, (char*)data,
679                 label, icon);
680         ret = __exec_query(query);
681         if (ret == -1)
682                 _LOGD("Package UiApp Localized Info DB Insert failed\n");
683
684         /*insert ui app locale info to pkg locale to get mainapp data */
685         if (strcasecmp(up->mainapp, "true")==0) {
686                 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
687                         "package_label, package_icon, package_description, package_license, package_author) values " \
688                         "('%q', '%q', '%q', '%q', '%q', '%q', '%q')",
689                         up->package,
690                         (char*)data,
691                         label,
692                         icon,
693                         PKGMGR_PARSER_EMPTY_STR,
694                         PKGMGR_PARSER_EMPTY_STR,
695                         PKGMGR_PARSER_EMPTY_STR);
696
697                 ret = __exec_query_no_msg(query);
698
699                 if (icon != NULL) {
700                         sqlite3_snprintf(MAX_QUERY_LEN, query, "update package_localized_info set package_icon='%s' "\
701                                 "where package='%s' and package_locale='%s'", icon, up->package, (char*)data);
702                         ret = __exec_query_no_msg(query);
703                 }
704         }
705 }
706
707 static void __insert_uiapplication_icon_section_info(gpointer data, gpointer userdata)
708 {
709         int ret = -1;
710         char *icon = NULL;
711         char *resolution = NULL;
712         char query[MAX_QUERY_LEN] = {'\0'};
713
714         uiapplication_x *up = (uiapplication_x*)userdata;
715         icon_x *icn = up->icon;
716
717         __extract_icon_data(data, icn, &icon, &resolution);
718         if (!icon && !resolution)
719                 return;
720         sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_icon_section_info(app_id, " \
721                 "app_icon, app_icon_section, app_icon_resolution) values " \
722                 "('%q', '%q', '%q', '%q')", up->appid,
723                 icon, (char*)data, resolution);
724
725         ret = __exec_query(query);
726         if (ret == -1)
727                 _LOGD("Package UiApp Localized Info DB Insert failed\n");
728
729 }
730
731 static void __insert_uiapplication_image_info(gpointer data, gpointer userdata)
732 {
733         int ret = -1;
734         char *lang = NULL;
735         char *img = NULL;
736         char query[MAX_QUERY_LEN] = {'\0'};
737
738         uiapplication_x *up = (uiapplication_x*)userdata;
739         image_x *image = up->image;
740
741         __extract_image_data(data, image, &lang, &img);
742         if (!lang && !img)
743                 return;
744         sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_image_info(app_id, app_locale, " \
745                 "app_image_section, app_image) values " \
746                 "('%q', '%q', '%q', '%q')", up->appid, lang, (char*)data, img);
747
748         ret = __exec_query(query);
749         if (ret == -1)
750                 _LOGD("Package UiApp image Info DB Insert failed\n");
751
752 }
753
754
755 static void __insert_serviceapplication_locale_info(gpointer data, gpointer userdata)
756 {
757         int ret = -1;
758         char *icon = NULL;
759         char *label = NULL;
760         char query[MAX_QUERY_LEN] = {'\0'};
761
762         serviceapplication_x *sp = (serviceapplication_x*)userdata;
763         label_x *lbl = sp->label;
764         icon_x *icn = sp->icon;
765
766         __extract_data(data, lbl, NULL, icn, NULL, NULL, &label, NULL, &icon, NULL, NULL);
767         if (!icon && !label)
768                 return;
769         sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_localized_info(app_id, app_locale, " \
770                 "app_label, app_icon) values " \
771                 "('%q', '%q', '%q', '%q')", sp->appid, (char*)data,
772                 label, icon);
773         ret = __exec_query(query);
774         if (ret == -1)
775                 _LOGD("Package ServiceApp Localized Info DB Insert failed\n");
776 }
777
778 static int __insert_ui_mainapp_info(manifest_x *mfx)
779 {
780         uiapplication_x *up = mfx->uiapplication;
781         int ret = -1;
782         char query[MAX_QUERY_LEN] = {'\0'};
783         while(up != NULL)
784         {
785                 snprintf(query, MAX_QUERY_LEN,
786                         "update package_app_info set app_mainapp='%s' where app_id='%s'", up->mainapp, up->appid);
787
788                 ret = __exec_query(query);
789                 if (ret == -1) {
790                         _LOGD("Package UiApp Info DB Insert Failed\n");
791                         return -1;
792                 }
793                 if (strcasecmp(up->mainapp, "True")==0)
794                         mfx->mainapp_id = strdup(up->appid);
795
796                 up = up->next;
797                 memset(query, '\0', MAX_QUERY_LEN);
798         }
799
800         if (mfx->mainapp_id == NULL){
801                 if (mfx->uiapplication && mfx->uiapplication->appid) {
802                         snprintf(query, MAX_QUERY_LEN, "update package_app_info set app_mainapp='true' where app_id='%s'", mfx->uiapplication->appid);
803                 } else {
804                         _LOGD("Not valid appid\n");
805                         return -1;
806                 }
807
808                 ret = __exec_query(query);
809                 if (ret == -1) {
810                         _LOGD("Package UiApp Info DB Insert Failed\n");
811                         return -1;
812                 }
813
814                 free((void *)mfx->uiapplication->mainapp);
815                 mfx->uiapplication->mainapp= strdup("true");
816                 mfx->mainapp_id = strdup(mfx->uiapplication->appid);
817         }
818
819         memset(query, '\0', MAX_QUERY_LEN);
820         snprintf(query, MAX_QUERY_LEN,
821                 "update package_info set mainapp_id='%s' where package='%s'", mfx->mainapp_id, mfx->package);
822         ret = __exec_query(query);
823         if (ret == -1) {
824                 _LOGD("Package Info DB update Failed\n");
825                 return -1;
826         }
827
828         return 0;
829 }
830 /* _PRODUCT_LAUNCHING_ENHANCED_
831 *  up->indicatordisplay, up->portraitimg, up->landscapeimg, up->guestmode_appstatus
832 */
833 static int __insert_uiapplication_info(manifest_x *mfx)
834 {
835         uiapplication_x *up = mfx->uiapplication;
836         int ret = -1;
837         char query[MAX_QUERY_LEN] = {'\0'};
838         while(up != NULL)
839         {
840                 snprintf(query, MAX_QUERY_LEN,
841                          "insert into package_app_info(app_id, app_component, app_exec, app_nodisplay, app_type, app_onboot, " \
842                         "app_multiple, app_autorestart, app_taskmanage, app_enabled, app_hwacceleration, app_screenreader, app_mainapp , app_recentimage, " \
843                         "app_launchcondition, app_indicatordisplay, app_portraitimg, app_landscapeimg, app_guestmodevisibility, app_permissiontype, "\
844                         "app_preload, app_submode, app_submode_mainid, component_type, package, app_launch_mode) " \
845                         "values('%s', '%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
846                          up->appid,
847                          "uiapp",
848                          up->exec,
849                          up->nodisplay,
850                          up->type,
851                          PKGMGR_PARSER_EMPTY_STR,
852                          up->multiple,
853                          PKGMGR_PARSER_EMPTY_STR,
854                          up->taskmanage,
855                          up->enabled,
856                          up->hwacceleration,
857                          up->screenreader,
858                          up->mainapp,
859                          __get_str(up->recentimage),
860                          up->launchcondition,
861                          up->indicatordisplay,
862                          __get_str(up->portraitimg),
863                          __get_str(up->landscapeimg),
864                          up->guestmode_visibility,
865                          up->permission_type,
866                          mfx->preload,
867                          up->submode,
868                          __get_str(up->submode_mainid),
869                          up->component_type,
870                          mfx->package,
871                          up->launch_mode);
872
873                 ret = __exec_query(query);
874                 if (ret == -1) {
875                         _LOGD("Package UiApp Info DB Insert Failed\n");
876                         return -1;
877                 }
878                 up = up->next;
879                 memset(query, '\0', MAX_QUERY_LEN);
880         }
881         return 0;
882 }
883
884 static int __insert_uiapplication_appcategory_info(manifest_x *mfx)
885 {
886         uiapplication_x *up = mfx->uiapplication;
887         category_x *ct = NULL;
888         int ret = -1;
889         char query[MAX_QUERY_LEN] = {'\0'};
890         while(up != NULL)
891         {
892                 ct = up->category;
893                 while (ct != NULL)
894                 {
895                         snprintf(query, MAX_QUERY_LEN,
896                                 "insert into package_app_app_category(app_id, category) " \
897                                 "values('%s','%s')",\
898                                  up->appid, ct->name);
899                         ret = __exec_query(query);
900                         if (ret == -1) {
901                                 _LOGD("Package UiApp Category Info DB Insert Failed\n");
902                                 return -1;
903                         }
904                         ct = ct->next;
905                         memset(query, '\0', MAX_QUERY_LEN);
906                 }
907                 up = up->next;
908         }
909         return 0;
910 }
911
912 static int __insert_uiapplication_appmetadata_info(manifest_x *mfx)
913 {
914         uiapplication_x *up = mfx->uiapplication;
915         metadata_x *md = NULL;
916         int ret = -1;
917         char query[MAX_QUERY_LEN] = {'\0'};
918         while(up != NULL)
919         {
920                 md = up->metadata;
921                 while (md != NULL)
922                 {
923                         if (md->key) {
924                                 snprintf(query, MAX_QUERY_LEN,
925                                         "insert into package_app_app_metadata(app_id, md_key, md_value) " \
926                                         "values('%s','%s', '%s')",\
927                                          up->appid, md->key, md->value);
928                                 ret = __exec_query(query);
929                                 if (ret == -1) {
930                                         _LOGD("Package UiApp Metadata Info DB Insert Failed\n");
931                                         return -1;
932                                 }
933                         }
934                         md = md->next;
935                         memset(query, '\0', MAX_QUERY_LEN);
936                 }
937                 up = up->next;
938         }
939         return 0;
940 }
941
942 static int __insert_uiapplication_apppermission_info(manifest_x *mfx)
943 {
944         uiapplication_x *up = mfx->uiapplication;
945         permission_x *pm = NULL;
946         int ret = -1;
947         char query[MAX_QUERY_LEN] = {'\0'};
948         while(up != NULL)
949         {
950                 pm = up->permission;
951                 while (pm != NULL)
952                 {
953                         snprintf(query, MAX_QUERY_LEN,
954                                 "insert into package_app_app_permission(app_id, pm_type, pm_value) " \
955                                 "values('%s','%s', '%s')",\
956                                  up->appid, pm->type, pm->value);
957                         ret = __exec_query(query);
958                         if (ret == -1) {
959                                 _LOGD("Package UiApp permission Info DB Insert Failed\n");
960                                 return -1;
961                         }
962                         pm = pm->next;
963                         memset(query, '\0', MAX_QUERY_LEN);
964                 }
965                 up = up->next;
966         }
967         return 0;
968 }
969
970 static int __insert_uiapplication_appcontrol_info(manifest_x *mfx)
971 {
972         uiapplication_x *up = mfx->uiapplication;
973         appcontrol_x *acontrol = NULL;
974         int ret = -1;
975         char query[MAX_QUERY_LEN] = {'\0'};
976         char buf[BUFSIZE] = {'\0'};
977         while (up != NULL) {
978                 acontrol = up->appcontrol;
979                 while (acontrol != NULL) {
980                         snprintf(buf, BUFSIZE, "%s|%s|%s",\
981                                         acontrol->operation ? acontrol->operation : "NULL",
982                                         acontrol->uri ? acontrol->uri : "NULL",
983                                         acontrol->mime ? acontrol->mime : "NULL");
984                         snprintf(query, MAX_QUERY_LEN,
985                                         "insert into package_app_app_control(app_id, app_control) " \
986                                         "values('%s', '%s')",\
987                                         up->appid, buf);
988                         ret = __exec_query(query);
989                         if (ret == -1) {
990                                 _LOGD("Package UiApp AppSvc DB Insert Failed\n");
991                                 return -1;
992                         }
993                         memset(query, '\0', MAX_QUERY_LEN);
994                         acontrol = acontrol->next;
995                 }
996                 up = up->next;
997         }
998         return 0;
999 }
1000
1001 static int __insert_uiapplication_appsvc_info(manifest_x *mfx)
1002 {
1003         uiapplication_x *up = mfx->uiapplication;
1004         appsvc_x *asvc = NULL;
1005         operation_x *op = NULL;
1006         mime_x *mi = NULL;
1007         uri_x *ui = NULL;
1008         subapp_x *sub = NULL;
1009         int ret = -1;
1010         char query[MAX_QUERY_LEN] = {'\0'};
1011         const char *operation = NULL;
1012         const char *mime = NULL;
1013         const char *uri = NULL;
1014         const char *subapp = NULL;
1015         while(up != NULL)
1016         {
1017                 asvc = up->appsvc;
1018                 while(asvc != NULL)
1019                 {
1020                         op = asvc->operation;
1021                         while(op != NULL)
1022                         {
1023                                 if (op)
1024                                         operation = op->name;
1025                                 mi = asvc->mime;
1026
1027                                 do
1028                                 {
1029                                         if (mi)
1030                                                 mime = mi->name;
1031                                         sub = asvc->subapp;
1032                                         do
1033                                         {
1034                                                 if (sub)
1035                                                         subapp = sub->name;
1036                                                 ui = asvc->uri;
1037                                                 do
1038                                                 {
1039                                                         if (ui)
1040                                                                 uri = ui->name;
1041                                                         snprintf(query, MAX_QUERY_LEN,
1042                                                                  "insert into package_app_app_svc(app_id, operation, uri_scheme, mime_type, subapp_name) " \
1043                                                                 "values('%s', '%s', '%s', '%s', '%s')",\
1044                                                                  up->appid,
1045                                                                  operation,
1046                                                                  __get_str(uri),
1047                                                                  __get_str(mime),
1048                                                                  __get_str(subapp));
1049
1050                                                         ret = __exec_query(query);
1051                                                         if (ret == -1) {
1052                                                                 _LOGD("Package UiApp AppSvc DB Insert Failed\n");
1053                                                                 return -1;
1054                                                         }
1055                                                         memset(query, '\0', MAX_QUERY_LEN);
1056                                                         if (ui)
1057                                                                 ui = ui->next;
1058                                                         uri = NULL;
1059                                                 } while(ui != NULL);
1060                                                 if (sub)
1061                                                         sub = sub->next;
1062                                                 subapp = NULL;
1063                                         }while(sub != NULL);
1064                                         if (mi)
1065                                                 mi = mi->next;
1066                                         mime = NULL;
1067                                 }while(mi != NULL);
1068                                 if (op)
1069                                         op = op->next;
1070                                 operation = NULL;
1071                         }
1072                         asvc = asvc->next;
1073                 }
1074                 up = up->next;
1075         }
1076         return 0;
1077 }
1078
1079 static int __insert_uiapplication_share_request_info(manifest_x *mfx)
1080 {
1081         uiapplication_x *up = mfx->uiapplication;
1082         datashare_x *ds = NULL;
1083         request_x *rq = NULL;
1084         int ret = -1;
1085         char query[MAX_QUERY_LEN] = {'\0'};
1086         while(up != NULL)
1087         {
1088                 ds = up->datashare;
1089                 while(ds != NULL)
1090                 {
1091                         rq = ds->request;
1092                         while(rq != NULL)
1093                         {
1094                                 snprintf(query, MAX_QUERY_LEN,
1095                                          "insert into package_app_share_request(app_id, data_share_request) " \
1096                                         "values('%s', '%s')",\
1097                                          up->appid, rq->text);
1098                                 ret = __exec_query(query);
1099                                 if (ret == -1) {
1100                                         _LOGD("Package UiApp Share Request DB Insert Failed\n");
1101                                         return -1;
1102                                 }
1103                                 memset(query, '\0', MAX_QUERY_LEN);
1104                                 rq = rq->next;
1105                         }
1106                         ds = ds->next;
1107                 }
1108                 up = up->next;
1109         }
1110         return 0;
1111 }
1112
1113 static int __insert_uiapplication_share_allowed_info(manifest_x *mfx)
1114 {
1115         uiapplication_x *up = mfx->uiapplication;
1116         datashare_x *ds = NULL;
1117         define_x *df = NULL;
1118         allowed_x *al = NULL;
1119         int ret = -1;
1120         char query[MAX_QUERY_LEN] = {'\0'};
1121         while(up != NULL)
1122         {
1123                 ds = up->datashare;
1124                 while(ds != NULL)
1125                 {
1126                         df = ds->define;
1127                         while(df != NULL)
1128                         {
1129                                 al = df->allowed;
1130                                 while(al != NULL)
1131                                 {
1132                                         snprintf(query, MAX_QUERY_LEN,
1133                                                  "insert into package_app_share_allowed(app_id, data_share_path, data_share_allowed) " \
1134                                                 "values('%s', '%s', '%s')",\
1135                                                  up->appid, df->path, al->text);
1136                                         ret = __exec_query(query);
1137                                         if (ret == -1) {
1138                                                 _LOGD("Package UiApp Share Allowed DB Insert Failed\n");
1139                                                 return -1;
1140                                         }
1141                                         memset(query, '\0', MAX_QUERY_LEN);
1142                                         al = al->next;
1143                                 }
1144                                 df = df->next;
1145                         }
1146                         ds = ds->next;
1147                 }
1148                 up = up->next;
1149         }
1150         return 0;
1151 }
1152
1153 static int __insert_serviceapplication_info(manifest_x *mfx)
1154 {
1155         serviceapplication_x *sp = mfx->serviceapplication;
1156         int ret = -1;
1157         char query[MAX_QUERY_LEN] = {'\0'};
1158         while(sp != NULL)
1159         {
1160                 snprintf(query, MAX_QUERY_LEN,
1161                          "insert into package_app_info(app_id, app_component, app_exec, app_type, app_onboot, " \
1162                         "app_multiple, app_autorestart, app_enabled, app_permissiontype, package) " \
1163                         "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
1164                          sp->appid, "svcapp", sp->exec, sp->type, sp->onboot, "\0",
1165                          sp->autorestart, sp->enabled, sp->permission_type, mfx->package);
1166                 ret = __exec_query(query);
1167                 if (ret == -1) {
1168                         _LOGD("Package ServiceApp Info DB Insert Failed\n");
1169                         return -1;
1170                 }
1171                 sp = sp->next;
1172                 memset(query, '\0', MAX_QUERY_LEN);
1173         }
1174         return 0;
1175 }
1176
1177 static int __insert_serviceapplication_appcategory_info(manifest_x *mfx)
1178 {
1179         serviceapplication_x *sp = mfx->serviceapplication;
1180         category_x *ct = NULL;
1181         int ret = -1;
1182         char query[MAX_QUERY_LEN] = {'\0'};
1183         while(sp != NULL)
1184         {
1185                 ct = sp->category;
1186                 while (ct != NULL)
1187                 {
1188                         snprintf(query, MAX_QUERY_LEN,
1189                                 "insert into package_app_app_category(app_id, category) " \
1190                                 "values('%s','%s')",\
1191                                  sp->appid, ct->name);
1192                         ret = __exec_query(query);
1193                         if (ret == -1) {
1194                                 _LOGD("Package ServiceApp Category Info DB Insert Failed\n");
1195                                 return -1;
1196                         }
1197                         ct = ct->next;
1198                         memset(query, '\0', MAX_QUERY_LEN);
1199                 }
1200                 sp = sp->next;
1201         }
1202         return 0;
1203 }
1204
1205 static int __insert_serviceapplication_appmetadata_info(manifest_x *mfx)
1206 {
1207         serviceapplication_x *sp = mfx->serviceapplication;
1208         metadata_x *md = NULL;
1209         int ret = -1;
1210         char query[MAX_QUERY_LEN] = {'\0'};
1211         while(sp != NULL)
1212         {
1213                 md = sp->metadata;
1214                 while (md != NULL)
1215                 {
1216                         if (md->key) {
1217                                 snprintf(query, MAX_QUERY_LEN,
1218                                         "insert into package_app_app_metadata(app_id, md_key, md_value) " \
1219                                         "values('%s','%s', '%s')",\
1220                                          sp->appid, md->key, md->value);
1221                                 ret = __exec_query(query);
1222                                 if (ret == -1) {
1223                                         _LOGD("Package ServiceApp Metadata Info DB Insert Failed\n");
1224                                         return -1;
1225                                 }
1226                         }
1227                         md = md->next;
1228                         memset(query, '\0', MAX_QUERY_LEN);
1229                 }
1230                 sp = sp->next;
1231         }
1232         return 0;
1233 }
1234
1235 static int __insert_serviceapplication_apppermission_info(manifest_x *mfx)
1236 {
1237         serviceapplication_x *sp = mfx->serviceapplication;
1238         permission_x *pm = NULL;
1239         int ret = -1;
1240         char query[MAX_QUERY_LEN] = {'\0'};
1241         while(sp != NULL)
1242         {
1243                 pm = sp->permission;
1244                 while (pm != NULL)
1245                 {
1246                         snprintf(query, MAX_QUERY_LEN,
1247                                 "insert into package_app_app_permission(app_id, pm_type, pm_value) " \
1248                                 "values('%s','%s', '%s')",\
1249                                  sp->appid, pm->type, pm->value);
1250                         ret = __exec_query(query);
1251                         if (ret == -1) {
1252                                 _LOGD("Package ServiceApp permission Info DB Insert Failed\n");
1253                                 return -1;
1254                         }
1255                         pm = pm->next;
1256                         memset(query, '\0', MAX_QUERY_LEN);
1257                 }
1258                 sp = sp->next;
1259         }
1260         return 0;
1261 }
1262
1263 static int __insert_serviceapplication_appcontrol_info(manifest_x *mfx)
1264 {
1265         serviceapplication_x *sp = mfx->serviceapplication;
1266         appcontrol_x *acontrol = NULL;
1267         int ret = -1;
1268         char query[MAX_QUERY_LEN] = {'\0'};
1269         char buf[BUFSIZE] = {'\0'};
1270         while (sp != NULL) {
1271                 acontrol = sp->appcontrol;
1272                 while (acontrol != NULL) {
1273                         snprintf(buf, BUFSIZE, "%s|%s|%s",
1274                                         acontrol->operation ? acontrol->operation : "NULL",
1275                                         acontrol->uri ? acontrol->uri : "NULL",
1276                                         acontrol->mime ? acontrol->mime : "NULL");
1277                         snprintf(query, MAX_QUERY_LEN,
1278                                         "insert into package_app_app_control(app_id, app_control) " \
1279                                         "values('%s', '%s')",\
1280                                         sp->appid, buf);
1281                         ret = __exec_query(query);
1282                         if (ret == -1) {
1283                                 _LOGD("Package UiApp AppSvc DB Insert Failed\n");
1284                                 return -1;
1285                         }
1286                         memset(query, '\0', MAX_QUERY_LEN);
1287                         acontrol = acontrol->next;
1288                 }
1289                 sp = sp->next;
1290         }
1291         return 0;
1292 }
1293
1294 static int __insert_serviceapplication_appsvc_info(manifest_x *mfx)
1295 {
1296         serviceapplication_x *sp = mfx->serviceapplication;
1297         appsvc_x *asvc = NULL;
1298         int ret = -1;
1299         char query[MAX_QUERY_LEN] = {'\0'};
1300         operation_x *op = NULL;
1301         mime_x *mi = NULL;
1302         uri_x *ui = NULL;
1303         subapp_x *sub = NULL;
1304         const char *operation = NULL;
1305         const char *mime = NULL;
1306         const char *uri = NULL;
1307         const char *subapp = NULL;
1308         while(sp != NULL)
1309         {
1310                 asvc = sp->appsvc;
1311                 while(asvc != NULL)
1312                 {
1313                         op = asvc->operation;
1314                         while(op != NULL)
1315                         {
1316                         if (op)
1317                                 operation = op->name;
1318                         mi = asvc->mime;
1319                                 do
1320                                 {
1321                                 if (mi)
1322                                         mime = mi->name;
1323                                 sub = asvc->subapp;
1324                                         do
1325                                         {
1326                                         if (sub)
1327                                                 subapp = sub->name;
1328                                         ui = asvc->uri;
1329                                                         do
1330                                                         {
1331                                                                 if (ui)
1332                                                                         uri = ui->name;
1333                                                                 snprintf(query, MAX_QUERY_LEN,
1334                                                                          "insert into package_app_app_svc(app_id, operation, uri_scheme, mime_type, subapp_name) " \
1335                                                                         "values('%s', '%s', '%s', '%s', '%s')",\
1336                                                                          sp->appid,
1337                                                                          operation,
1338                                                                         __get_str(uri),
1339                                                                         __get_str(mime),
1340                                                                         __get_str(subapp));
1341                                                                 ret = __exec_query(query);
1342                                                                 if (ret == -1) {
1343                                                                         _LOGD("Package UiApp AppSvc DB Insert Failed\n");
1344                                                                         return -1;
1345                                                                 }
1346                                                                 memset(query, '\0', MAX_QUERY_LEN);
1347                                                                 if (ui)
1348                                                                         ui = ui->next;
1349                                                                 uri = NULL;
1350                                                         } while(ui != NULL);
1351                                                 if (sub)
1352                                                         sub     = sub->next;
1353                                                 subapp = NULL;
1354                                         }while(sub != NULL);
1355                                         if (mi)
1356                                                 mi = mi->next;
1357                                         mime = NULL;
1358                                 }while(mi != NULL);
1359                                 if (op)
1360                                         op = op->next;
1361                                 operation = NULL;
1362                         }
1363                         asvc = asvc->next;
1364                 }
1365                 sp = sp->next;
1366         }
1367         return 0;
1368 }
1369
1370 static int __insert_serviceapplication_datacontrol_info(manifest_x *mfx)
1371 {
1372         serviceapplication_x *sp = mfx->serviceapplication;
1373         datacontrol_x *dc = NULL;
1374         int ret = -1;
1375         char query[MAX_QUERY_LEN] = {'\0'};
1376
1377         while(sp != NULL)
1378         {
1379                 dc = sp->datacontrol;
1380                 while(dc != NULL)
1381                 {
1382                         snprintf(query, MAX_QUERY_LEN,
1383                                         "insert into package_app_data_control(app_id, providerid, access, type) " \
1384                                         "values('%s', '%s', '%s', '%s')",\
1385                                         mfx->serviceapplication->appid,
1386                                         dc->providerid,
1387                                         dc->access,
1388                                         dc->type);
1389
1390                         ret = __exec_query(query);
1391                         if (ret == -1) {
1392                                 _LOGD("Package ServiceApp Data Control DB Insert Failed\n");
1393                                 return -1;
1394                         }
1395                         memset(query, '\0', MAX_QUERY_LEN);
1396                         dc = dc->next;
1397                 }
1398                 sp = sp->next;
1399         }
1400         return 0;
1401 }
1402
1403 static int __insert_serviceapplication_share_request_info(manifest_x *mfx)
1404 {
1405         serviceapplication_x *sp = mfx->serviceapplication;
1406         datashare_x *ds = NULL;
1407         request_x *rq = NULL;
1408         int ret = -1;
1409         char query[MAX_QUERY_LEN] = {'\0'};
1410         while(sp != NULL)
1411         {
1412                 ds = sp->datashare;
1413                 while(ds != NULL)
1414                 {
1415                         rq = ds->request;
1416                         while(rq != NULL)
1417                         {
1418                                 snprintf(query, MAX_QUERY_LEN,
1419                                          "insert into package_app_share_request(app_id, data_share_request) " \
1420                                         "values('%s', '%s')",\
1421                                          sp->appid, rq->text);
1422                                 ret = __exec_query(query);
1423                                 if (ret == -1) {
1424                                         _LOGD("Package ServiceApp Share Request DB Insert Failed\n");
1425                                         return -1;
1426                                 }
1427                                 memset(query, '\0', MAX_QUERY_LEN);
1428                                 rq = rq->next;
1429                         }
1430                         ds = ds->next;
1431                 }
1432                 sp = sp->next;
1433         }
1434         return 0;
1435 }
1436
1437
1438
1439 static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx)
1440 {
1441         serviceapplication_x *sp = mfx->serviceapplication;
1442         datashare_x *ds = NULL;
1443         define_x *df = NULL;
1444         allowed_x *al = NULL;
1445         int ret = -1;
1446         char query[MAX_QUERY_LEN] = {'\0'};
1447         while(sp != NULL)
1448         {
1449                 ds = sp->datashare;
1450                 while(ds != NULL)
1451                 {
1452                         df = ds->define;
1453                         while(df != NULL)
1454                         {
1455                                 al = df->allowed;
1456                                 while(al != NULL)
1457                                 {
1458                                         snprintf(query, MAX_QUERY_LEN,
1459                                                  "insert into package_app_share_allowed(app_id, data_share_path, data_share_allowed) " \
1460                                                 "values('%s', '%s', '%s')",\
1461                                                  sp->appid, df->path, al->text);
1462                                         ret = __exec_query(query);
1463                                         if (ret == -1) {
1464                                                 _LOGD("Package App Share Allowed DB Insert Failed\n");
1465                                                 return -1;
1466                                         }
1467                                         memset(query, '\0', MAX_QUERY_LEN);
1468                                         al = al->next;
1469                                 }
1470                                 df = df->next;
1471                         }
1472                         ds = ds->next;
1473                 }
1474                 sp = sp->next;
1475         }
1476         return 0;
1477 }
1478
1479 static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid)
1480 {
1481         label_x *lbl = mfx->label;
1482         license_x *lcn = mfx->license;
1483         icon_x *icn = mfx->icon;
1484         description_x *dcn = mfx->description;
1485         author_x *ath = mfx->author;
1486         uiapplication_x *up = mfx->uiapplication;
1487         uiapplication_x *up_icn = mfx->uiapplication;
1488         uiapplication_x *up_image = mfx->uiapplication;
1489         serviceapplication_x *sp = mfx->serviceapplication;
1490         privileges_x *pvs = NULL;
1491         privilege_x *pv = NULL;
1492         char query[MAX_QUERY_LEN] = { '\0' };
1493         char root[MAX_QUERY_LEN] = { '\0' };
1494         int ret = -1;
1495         char *type = NULL;
1496         char *path = NULL;
1497         const char *auth_name = NULL;
1498         const char *auth_email = NULL;
1499         const char *auth_href = NULL;
1500         const char *apps_path = NULL;
1501
1502         GList *pkglocale = NULL;
1503         GList *applocale = NULL;
1504         GList *appicon = NULL;
1505         GList *appimage = NULL;
1506
1507         if (ath) {
1508                 if (ath->text)
1509                         auth_name = ath->text;
1510                 if (ath->email)
1511                         auth_email = ath->email;
1512                 if (ath->href)
1513                         auth_href = ath->href;
1514         }
1515         /*Insert in the package_cert_info CERT_DB*/
1516         pkgmgrinfo_instcertinfo_h cert_handle = NULL;
1517         ret = pkgmgrinfo_set_cert_value(&cert_handle, PMINFO_SET_AUTHOR_ROOT_CERT, "author root certificate");
1518         if (ret != PMINFO_R_OK) {
1519                 pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
1520                 _LOGE("Cert Info DB create handle failed\n");
1521                 return -1;
1522         }
1523         ret = pkgmgrinfo_save_certinfo(mfx->package, &cert_handle, uid);
1524         if (ret != PMINFO_R_OK) {
1525                 pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
1526                 _LOGE("Cert Info DB Insert Failed\n");
1527                 return -1;
1528         }
1529
1530         /*Insert in the package_info DB*/
1531         if (mfx->type)
1532                 type = strdup(mfx->type);
1533         else
1534                 type = strdup("rpm");
1535         /*Insert in the package_info DB*/
1536         if (mfx->root_path)
1537                 path = strdup(mfx->root_path);
1538         else{
1539                 if (strcmp(type,"rpm")==0) {
1540                         apps_path = tzplatform_getenv(TZ_SYS_RO_APP);
1541                         snprintf(root, MAX_QUERY_LEN - 1, "%s/%s", apps_path, mfx->package);
1542                 } else {
1543                         apps_path = tzplatform_getenv(TZ_USER_APP);
1544                         snprintf(root, MAX_QUERY_LEN - 1, "%s/%s", apps_path, mfx->package);
1545                 }
1546                 path = strdup(root);
1547         }
1548         snprintf(query, MAX_QUERY_LEN,
1549                  "insert into package_info(package, package_type, package_version, install_location, package_size, " \
1550                 "package_removable, package_preload, package_readonly, package_update, package_appsetting, package_nodisplay, package_system," \
1551                 "author_name, author_email, author_href, installed_time, installed_storage, storeclient_id, mainapp_id, package_url, root_path, csc_path) " \
1552                 "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
1553                  mfx->package,
1554                  type,
1555                  mfx->version,
1556                  __get_str(mfx->installlocation),
1557                  __get_str(mfx->package_size),
1558                  mfx->removable,
1559                  mfx->preload,
1560                  mfx->readonly,
1561                  mfx->update,
1562                  mfx->appsetting,
1563                  mfx->nodisplay_setting,
1564                  mfx->system,
1565                  __get_str(auth_name),
1566                  __get_str(auth_email),
1567                  __get_str(auth_href),
1568                  mfx->installed_time,
1569                  mfx->installed_storage,
1570                  __get_str(mfx->storeclient_id),
1571                  mfx->mainapp_id,
1572                  __get_str(mfx->package_url),
1573                  path,
1574                  __get_str(mfx->csc_path));
1575         /*If package dont have main_package tag, this package is main package.*/
1576         if (mfx->main_package == NULL) {
1577                 ret = __exec_query(query);
1578                 if (ret == -1) {
1579                         _LOGD("Package Info DB Insert Failed\n");
1580                         if (type) {
1581                                 free(type);
1582                                 type = NULL;
1583                         }
1584                         if (path) {
1585                                 free(path);
1586                                 path = NULL;
1587                         }
1588                         return -1;
1589                 }
1590         } else {
1591                 /*If package has main_package tag, this package is sub package(ug, efl).
1592                 skip __exec_query for package_info and change pkgid with main_package*/
1593                 memset(root, '\0', MAX_QUERY_LEN);
1594                 snprintf(root, MAX_QUERY_LEN - 1, "/usr/apps/%s", mfx->main_package);
1595                 if (access(root, F_OK) == 0) {
1596                         free((void *)mfx->package);
1597                         mfx->package = strdup(mfx->main_package);
1598                 } else {
1599                         _LOGE("main package[%s] is not installed\n", root);
1600                         return -1;
1601                 }
1602         }
1603         if (type) {
1604                 free(type);
1605                 type = NULL;
1606         }
1607         if (path) {
1608                 free(path);
1609                 path = NULL;
1610         }
1611
1612         /*Insert in the package_privilege_info DB*/
1613         pvs = mfx->privileges;
1614         while (pvs != NULL) {
1615                 pv = pvs->privilege;
1616                 while (pv != NULL) {
1617                         memset(query, '\0', MAX_QUERY_LEN);
1618                         snprintf(query, MAX_QUERY_LEN,
1619                                 "insert into package_privilege_info(package, privilege) " \
1620                                 "values('%s','%s')",\
1621                                  mfx->package, pv->text);
1622                         ret = __exec_query(query);
1623                         if (ret == -1) {
1624                                 _LOGD("Package Privilege Info DB Insert Failed\n");
1625                                 return -1;
1626                         }
1627                         pv = pv->next;
1628                 }
1629                 pvs = pvs->next;
1630         }
1631
1632         if (up != NULL) {
1633                 ret = __insert_ui_mainapp_info(mfx);
1634                 if (ret == -1)
1635                         return -1;
1636         }
1637
1638         /*Insert the package locale*/
1639         pkglocale = __create_locale_list(pkglocale, lbl, lcn, icn, dcn, ath);
1640         /*remove duplicated data in pkglocale*/
1641         __trimfunc(pkglocale);
1642
1643         /*Insert the app locale info */
1644         while(up != NULL)
1645         {
1646                 applocale = __create_locale_list(applocale, up->label, NULL, up->icon, NULL, NULL);
1647                 up = up->next;
1648         }
1649         while(sp != NULL)
1650         {
1651                 applocale = __create_locale_list(applocale, sp->label, NULL, sp->icon, NULL, NULL);
1652                 sp = sp->next;
1653         }
1654         /*remove duplicated data in applocale*/
1655         __trimfunc(applocale);
1656
1657         /*Insert the app icon info */
1658         while(up_icn != NULL)
1659         {
1660                 appicon = __create_icon_list(appicon, up_icn->icon);
1661                 up_icn = up_icn->next;
1662         }
1663         /*remove duplicated data in appicon*/
1664         __trimfunc(appicon);
1665
1666         /*Insert the image info */
1667         while(up_image != NULL)
1668         {
1669                 appimage = __create_image_list(appimage, up_image->image);
1670                 up_image = up_image->next;
1671         }
1672         /*remove duplicated data in appimage*/
1673         __trimfunc(appimage);
1674
1675         /*g_list_foreach(pkglocale, __printfunc, NULL);*/
1676         /*_LOGD("\n");*/
1677         /*g_list_foreach(applocale, __printfunc, NULL);*/
1678
1679         /*package locale info, it is only for main package.*/
1680         if (mfx->main_package == NULL)
1681                 g_list_foreach(pkglocale, __insert_pkglocale_info, (gpointer)mfx);
1682
1683         /*native app locale info*/
1684         up = mfx->uiapplication;
1685         while(up != NULL)
1686         {
1687                 g_list_foreach(applocale, __insert_uiapplication_locale_info, (gpointer)up);
1688                 up = up->next;
1689         }
1690         /*agent app locale info*/
1691         sp = mfx->serviceapplication;
1692         while(sp != NULL)
1693         {
1694                 g_list_foreach(applocale, __insert_serviceapplication_locale_info, (gpointer)sp);
1695                 sp = sp->next;
1696         }
1697
1698         /*app icon locale info*/
1699         up_icn = mfx->uiapplication;
1700         while(up_icn != NULL)
1701         {
1702                 g_list_foreach(appicon, __insert_uiapplication_icon_section_info, (gpointer)up_icn);
1703                 up_icn = up_icn->next;
1704         }
1705
1706         /*app image info*/
1707         up_image = mfx->uiapplication;
1708         while(up_image != NULL)
1709         {
1710                 g_list_foreach(appimage, __insert_uiapplication_image_info, (gpointer)up_image);
1711                 up_image = up_image->next;
1712         }
1713
1714         g_list_free(pkglocale);
1715         pkglocale = NULL;
1716         g_list_free(applocale);
1717         applocale = NULL;
1718         g_list_free(appicon);
1719         appicon = NULL;
1720         g_list_free(appimage);
1721         appimage = NULL;
1722
1723         /*Insert in the package_app_info DB*/
1724         ret = __insert_uiapplication_info(mfx);
1725         if (ret == -1)
1726                 return -1;
1727         ret = __insert_serviceapplication_info(mfx);
1728         if (ret == -1)
1729                 return -1;
1730         /*Insert in the package_app_app_control DB*/
1731         ret = __insert_uiapplication_appcontrol_info(mfx);
1732         if (ret == -1)
1733                 return -1;
1734         ret = __insert_serviceapplication_appcontrol_info(mfx);
1735         if (ret == -1)
1736                 return -1;
1737
1738         /*Insert in the package_app_app_category DB*/
1739         ret = __insert_uiapplication_appcategory_info(mfx);
1740         if (ret == -1)
1741                 return -1;
1742         ret = __insert_serviceapplication_appcategory_info(mfx);
1743         if (ret == -1)
1744                 return -1;
1745
1746         /*Insert in the package_app_app_metadata DB*/
1747         ret = __insert_uiapplication_appmetadata_info(mfx);
1748         if (ret == -1)
1749                 return -1;
1750         ret = __insert_serviceapplication_appmetadata_info(mfx);
1751         if (ret == -1)
1752                 return -1;
1753
1754         /*Insert in the package_app_app_permission DB*/
1755         ret = __insert_uiapplication_apppermission_info(mfx);
1756         if (ret == -1)
1757                 return -1;
1758         ret = __insert_serviceapplication_apppermission_info(mfx);
1759         if (ret == -1)
1760                 return -1;
1761
1762         /*Insert in the package_app_app_svc DB*/
1763         ret = __insert_uiapplication_appsvc_info(mfx);
1764         if (ret == -1)
1765                 return -1;
1766         ret = __insert_serviceapplication_appsvc_info(mfx);
1767         if (ret == -1)
1768                 return -1;
1769
1770         /*Insert in the package_app_share_allowed DB*/
1771         ret = __insert_uiapplication_share_allowed_info(mfx);
1772         if (ret == -1)
1773                 return -1;
1774         ret = __insert_serviceapplication_share_allowed_info(mfx);
1775         if (ret == -1)
1776                 return -1;
1777
1778         /*Insert in the package_app_share_request DB*/
1779         ret = __insert_uiapplication_share_request_info(mfx);
1780         if (ret == -1)
1781                 return -1;
1782         ret = __insert_serviceapplication_share_request_info(mfx);
1783         if (ret == -1)
1784                 return -1;
1785
1786         /*Insert in the package_app_data_control DB*/
1787         ret = __insert_serviceapplication_datacontrol_info(mfx);
1788         if (ret == -1)
1789                 return -1;
1790
1791         return 0;
1792
1793 }
1794
1795 static int __delete_appinfo_from_db(char *db_table, const char *appid)
1796 {
1797         char query[MAX_QUERY_LEN] = { '\0' };
1798         int ret = -1;
1799         memset(query, '\0', MAX_QUERY_LEN);
1800         snprintf(query, MAX_QUERY_LEN,
1801                  "delete from %s where app_id='%s'", db_table, appid);
1802         ret = __exec_query(query);
1803         if (ret == -1) {
1804                 _LOGD("DB Deletion from table (%s) Failed\n", db_table);
1805                 return -1;
1806         }
1807         return 0;
1808 }
1809
1810 static int __delete_subpkg_info_from_db(char *appid)
1811 {
1812         int ret = -1;
1813
1814         ret = __delete_appinfo_from_db("package_app_info", appid);
1815         if (ret < 0)
1816                 return ret;
1817         ret = __delete_appinfo_from_db("package_app_localized_info", appid);
1818         if (ret < 0)
1819                 return ret;
1820         ret = __delete_appinfo_from_db("package_app_icon_section_info", appid);
1821         if (ret < 0)
1822                 return ret;
1823         ret = __delete_appinfo_from_db("package_app_image_info", appid);
1824         if (ret < 0)
1825                 return ret;
1826         ret = __delete_appinfo_from_db("package_app_app_svc", appid);
1827         if (ret < 0)
1828                 return ret;
1829         ret = __delete_appinfo_from_db("package_app_app_control", appid);
1830         if (ret < 0)
1831                 return ret;
1832         ret = __delete_appinfo_from_db("package_app_app_category", appid);
1833         if (ret < 0)
1834                 return ret;
1835         ret = __delete_appinfo_from_db("package_app_app_metadata", appid);
1836         if (ret < 0)
1837                 return ret;
1838         ret = __delete_appinfo_from_db("package_app_app_permission", appid);
1839         if (ret < 0)
1840                 return ret;
1841         ret = __delete_appinfo_from_db("package_app_share_allowed", appid);
1842         if (ret < 0)
1843                 return ret;
1844         ret = __delete_appinfo_from_db("package_app_share_request", appid);
1845         if (ret < 0)
1846                 return ret;
1847         ret = __delete_appinfo_from_db("package_app_data_control", appid);
1848         if (ret < 0)
1849                 return ret;
1850
1851         return 0;
1852 }
1853
1854 static int __delete_subpkg_from_db(manifest_x *mfx)
1855 {
1856         char query[MAX_QUERY_LEN] = { '\0' };
1857         char *error_message = NULL;
1858
1859         snprintf(query, MAX_QUERY_LEN, "select app_id from package_app_info where package='%s'", mfx->package);
1860         if (SQLITE_OK !=
1861             sqlite3_exec(pkgmgr_parser_db, query, __delete_subpkg_list_cb, NULL, &error_message)) {
1862                 _LOGE("Don't execute query = %s error message = %s\n", query,
1863                        error_message);
1864                 sqlite3_free(error_message);
1865                 return -1;
1866         }
1867         sqlite3_free(error_message);
1868
1869         return 0;
1870 }
1871
1872 static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid)
1873 {
1874         char query[MAX_QUERY_LEN] = { '\0' };
1875         int ret = -1;
1876         uiapplication_x *up = mfx->uiapplication;
1877         serviceapplication_x *sp = mfx->serviceapplication;
1878         /*Delete from cert table*/
1879         if (uid != GLOBAL_USER)
1880                 ret = pkgmgrinfo_delete_usr_certinfo(mfx->package, uid);
1881         else
1882                 ret = pkgmgrinfo_delete_certinfo(mfx->package);
1883         if (ret) {
1884                 _LOGD("Cert Info  DB Delete Failed\n");
1885                 return -1;
1886         }
1887
1888         /*Delete from Package Info DB*/
1889         snprintf(query, MAX_QUERY_LEN,
1890                  "delete from package_info where package='%s'", mfx->package);
1891         ret = __exec_query(query);
1892         if (ret == -1) {
1893                 _LOGD("Package Info DB Delete Failed\n");
1894                 return -1;
1895         }
1896         memset(query, '\0', MAX_QUERY_LEN);
1897
1898         /*Delete from Package Localized Info*/
1899         snprintf(query, MAX_QUERY_LEN,
1900                  "delete from package_localized_info where package='%s'", mfx->package);
1901         ret = __exec_query(query);
1902         if (ret == -1) {
1903                 _LOGD("Package Localized Info DB Delete Failed\n");
1904                 return -1;
1905         }
1906
1907         /*Delete from Package Privilege Info*/
1908         snprintf(query, MAX_QUERY_LEN,
1909                  "delete from package_privilege_info where package='%s'", mfx->package);
1910         ret = __exec_query(query);
1911         if (ret == -1) {
1912                 _LOGD("Package Privilege Info DB Delete Failed\n");
1913                 return -1;
1914         }
1915
1916         while (up != NULL) {
1917                 ret = __delete_appinfo_from_db("package_app_info", up->appid);
1918                 if (ret < 0)
1919                         return ret;
1920                 ret = __delete_appinfo_from_db("package_app_localized_info", up->appid);
1921                 if (ret < 0)
1922                         return ret;
1923                 ret = __delete_appinfo_from_db("package_app_icon_section_info", up->appid);
1924                 if (ret < 0)
1925                         return ret;
1926                 ret = __delete_appinfo_from_db("package_app_image_info", up->appid);
1927                 if (ret < 0)
1928                         return ret;
1929                 ret = __delete_appinfo_from_db("package_app_app_svc", up->appid);
1930                 if (ret < 0)
1931                         return ret;
1932                 ret = __delete_appinfo_from_db("package_app_app_control", up->appid);
1933                 if (ret < 0)
1934                         return ret;
1935                 ret = __delete_appinfo_from_db("package_app_app_category", up->appid);
1936                 if (ret < 0)
1937                         return ret;
1938                 ret = __delete_appinfo_from_db("package_app_app_metadata", up->appid);
1939                 if (ret < 0)
1940                         return ret;
1941                 ret = __delete_appinfo_from_db("package_app_app_permission", up->appid);
1942                 if (ret < 0)
1943                         return ret;
1944                 ret = __delete_appinfo_from_db("package_app_share_allowed", up->appid);
1945                 if (ret < 0)
1946                         return ret;
1947                 ret = __delete_appinfo_from_db("package_app_share_request", up->appid);
1948                 if (ret < 0)
1949                         return ret;
1950                 ret = __delete_appinfo_from_db("package_app_data_control", up->appid);
1951                 if (ret < 0)
1952                         return ret;
1953                 up = up->next;
1954         }
1955
1956         while (sp != NULL) {
1957                 ret = __delete_appinfo_from_db("package_app_info", sp->appid);
1958                 if (ret < 0)
1959                         return ret;
1960                 ret = __delete_appinfo_from_db("package_app_localized_info", sp->appid);
1961                 if (ret < 0)
1962                         return ret;
1963                 ret = __delete_appinfo_from_db("package_app_icon_section_info", sp->appid);
1964                 if (ret < 0)
1965                         return ret;
1966                 ret = __delete_appinfo_from_db("package_app_image_info", sp->appid);
1967                 if (ret < 0)
1968                         return ret;
1969                 ret = __delete_appinfo_from_db("package_app_app_svc", sp->appid);
1970                 if (ret < 0)
1971                         return ret;
1972                 ret = __delete_appinfo_from_db("package_app_app_control", sp->appid);
1973                 if (ret < 0)
1974                         return ret;
1975                 ret = __delete_appinfo_from_db("package_app_app_category", sp->appid);
1976                 if (ret < 0)
1977                         return ret;
1978                 ret = __delete_appinfo_from_db("package_app_app_metadata", sp->appid);
1979                 if (ret < 0)
1980                         return ret;
1981                 ret = __delete_appinfo_from_db("package_app_app_permission", sp->appid);
1982                 if (ret < 0)
1983                         return ret;
1984                 ret = __delete_appinfo_from_db("package_app_share_allowed", sp->appid);
1985                 if (ret < 0)
1986                         return ret;
1987                 ret = __delete_appinfo_from_db("package_app_share_request", sp->appid);
1988                 if (ret < 0)
1989                         return ret;
1990                 ret = __delete_appinfo_from_db("package_app_data_control", sp->appid);
1991                 if (ret < 0)
1992                         return ret;
1993                 sp = sp->next;
1994         }
1995
1996         /* if main package has sub pkg, delete sub pkg data*/
1997         __delete_subpkg_from_db(mfx);
1998
1999         return 0;
2000 }
2001
2002 static int __update_preload_condition_in_db()
2003 {
2004         int ret = -1;
2005         char query[MAX_QUERY_LEN] = {'\0'};
2006
2007         snprintf(query, MAX_QUERY_LEN, "update package_info set package_preload='true'");
2008
2009         ret = __exec_query(query);
2010         if (ret == -1)
2011                 _LOGD("Package preload_condition update failed\n");
2012
2013         return ret;
2014 }
2015
2016 API int pkgmgr_parser_initialize_db(void)
2017 {
2018         int ret = -1;
2019         /*Manifest DB*/
2020         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_INFO);
2021         if (ret == -1) {
2022                 _LOGD("package info DB initialization failed\n");
2023                 return ret;
2024         }
2025         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO);
2026         if (ret == -1) {
2027                 _LOGD("package localized info DB initialization failed\n");
2028                 return ret;
2029         }
2030         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO);
2031         if (ret == -1) {
2032                 _LOGD("package app app privilege DB initialization failed\n");
2033                 return ret;
2034         }
2035         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_INFO);
2036         if (ret == -1) {
2037                 _LOGD("package app info DB initialization failed\n");
2038                 return ret;
2039         }
2040         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO);
2041         if (ret == -1) {
2042                 _LOGD("package app localized info DB initialization failed\n");
2043                 return ret;
2044         }
2045         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO);
2046         if (ret == -1) {
2047                 _LOGD("package app icon localized info DB initialization failed\n");
2048                 return ret;
2049         }
2050         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO);
2051         if (ret == -1) {
2052                 _LOGD("package app image info DB initialization failed\n");
2053                 return ret;
2054         }
2055         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL);
2056         if (ret == -1) {
2057                 _LOGD("package app app control DB initialization failed\n");
2058                 return ret;
2059         }
2060         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY);
2061         if (ret == -1) {
2062                 _LOGD("package app app category DB initialization failed\n");
2063                 return ret;
2064         }
2065         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA);
2066         if (ret == -1) {
2067                 _LOGD("package app app category DB initialization failed\n");
2068                 return ret;
2069         }
2070         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION);
2071         if (ret == -1) {
2072                 _LOGD("package app app permission DB initialization failed\n");
2073                 return ret;
2074         }
2075         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_SVC);
2076         if (ret == -1) {
2077                 _LOGD("package app app svc DB initialization failed\n");
2078                 return ret;
2079         }
2080         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED);
2081         if (ret == -1) {
2082                 _LOGD("package app share allowed DB initialization failed\n");
2083                 return ret;
2084         }
2085         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST);
2086         if (ret == -1) {
2087                 _LOGD("package app share request DB initialization failed\n");
2088                 return ret;
2089         }
2090         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL);
2091         if (ret == -1) {
2092                 _LOGD("package app data control DB initialization failed\n");
2093                 return ret;
2094         }
2095         /*Cert DB*/
2096         ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INFO);
2097         if (ret == -1) {
2098                 _LOGD("package cert info DB initialization failed\n");
2099                 return ret;
2100         }
2101         ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO);
2102         if (ret == -1) {
2103                 _LOGD("package cert index info DB initialization failed\n");
2104                 return ret;
2105         }
2106         /*resource DB*/
2107         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_RESOURCE_INFO);
2108         if (ret == -1) {
2109                 _LOGD("package resource info DB initialization failed\n");
2110                 return ret;
2111         }
2112         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_RESOURCE_DATA);
2113         if (ret == -1) {
2114                 _LOGD("package resource data DB initialization failed\n");
2115                 return ret;
2116         }
2117
2118         return 0;
2119 }
2120
2121 static int parserdb_change_perm(const char *db_file, uid_t uid)
2122 {
2123         char buf[BUFSIZE];
2124         char journal_file[BUFSIZE];
2125         char *files[3];
2126         int ret, i;
2127         struct passwd *userinfo = NULL;
2128         files[0] = (char *)db_file;
2129         files[1] = journal_file;
2130         files[2] = NULL;
2131
2132         if(db_file == NULL)
2133                 return -1;
2134
2135         if(getuid() != OWNER_ROOT) //At this time we should be root to apply this
2136                         return 0;
2137         snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
2138     userinfo = getpwuid(uid);
2139     if (!userinfo) {
2140                 _LOGE("FAIL: user %d doesn't exist", uid);
2141                 return -1;
2142         }
2143         snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
2144
2145         for (i = 0; files[i]; i++) {
2146                 ret = chown(files[i], uid, userinfo->pw_gid);
2147                 SET_SMACK_LABEL(files[i],uid)
2148                 if (ret == -1) {
2149                         strerror_r(errno, buf, sizeof(buf));
2150                         _LOGD("FAIL : chown %s %d.%d, because %s", db_file, uid, userinfo->pw_gid, buf);
2151                         return -1;
2152                 }
2153
2154                 ret = chmod(files[i], S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
2155                 if (ret == -1) {
2156                         strerror_r(errno, buf, sizeof(buf));
2157                         _LOGD("FAIL : chmod %s 0664, because %s", db_file, buf);
2158                         return -1;
2159                 }
2160         }
2161         return 0;
2162 }
2163
2164 API int pkgmgr_parser_check_and_create_db(uid_t uid)
2165 {
2166         int ret = -1;
2167         /*Manifest DB*/
2168         ret = __pkgmgr_parser_create_db(&pkgmgr_parser_db, getUserPkgParserDBPathUID(uid));
2169         if (ret) {
2170                 _LOGD("Manifest DB creation Failed\n");
2171                 return -1;
2172         }
2173
2174         /*Cert DB*/
2175         ret = __pkgmgr_parser_create_db(&pkgmgr_cert_db, getUserPkgCertDBPathUID(uid));
2176         if (ret) {
2177                 _LOGD("Cert DB creation Failed\n");
2178                 return -1;
2179         }
2180         if( 0 != parserdb_change_perm(getUserPkgCertDBPathUID(uid), uid)) {
2181                 _LOGD("Failed to change cert db permission\n");
2182         }
2183         if( 0 != parserdb_change_perm(getUserPkgParserDBPathUID(uid), uid)) {
2184                 _LOGD("Failed to change parser db permission\n");
2185         }
2186         return 0;
2187 }
2188
2189 void pkgmgr_parser_close_db()
2190 {
2191         sqlite3_close(pkgmgr_parser_db);
2192         sqlite3_close(pkgmgr_cert_db);
2193 }
2194
2195
2196 API int pkgmgr_parser_insert_manifest_info_in_db(manifest_x *mfx)
2197 {
2198         _LOGD("pkgmgr_parser_insert_manifest_info_in_db\n");
2199         if (mfx == NULL) {
2200                 _LOGD("manifest pointer is NULL\n");
2201                 return -1;
2202         }
2203         int ret = 0;
2204         ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
2205         if (ret == -1) {
2206                 _LOGD("Failed to open DB\n");
2207                 return ret;
2208         }
2209         ret = pkgmgr_parser_initialize_db();
2210         if (ret == -1)
2211                 goto err;
2212         /*Begin transaction*/
2213         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2214         if (ret != SQLITE_OK) {
2215                 _LOGD("Failed to begin transaction\n");
2216                 ret = -1;
2217                 goto err;
2218         }
2219         _LOGD("Transaction Begin\n");
2220         ret = __insert_manifest_info_in_db(mfx, GLOBAL_USER);
2221         if (ret == -1) {
2222                 _LOGD("Insert into DB failed. Rollback now\n");
2223                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2224                 goto err;
2225         }
2226         /*Commit transaction*/
2227         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2228         if (ret != SQLITE_OK) {
2229                 _LOGD("Failed to commit transaction. Rollback now\n");
2230                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2231                 ret = -1;
2232                 goto err;
2233         }
2234         _LOGD("Transaction Commit and End\n");
2235 err:
2236         pkgmgr_parser_close_db();
2237         return ret;
2238 }
2239
2240 API int pkgmgr_parser_insert_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
2241 {
2242         _LOGD("pkgmgr_parser_insert_manifest_info_in_usr_db\n");
2243         if (mfx == NULL) {
2244                 _LOGD("manifest pointer is NULL\n");
2245                 return -1;
2246         }
2247         int ret = 0;
2248         ret = pkgmgr_parser_check_and_create_db(uid);
2249         if (ret == -1) {
2250                 _LOGD("Failed to open DB\n");
2251                 return ret;
2252         }
2253         ret = pkgmgr_parser_initialize_db();
2254         if (ret == -1)
2255                 goto err;
2256         /*Begin transaction*/
2257         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2258         if (ret != SQLITE_OK) {
2259                 _LOGD("Failed to begin transaction\n");
2260                 ret = -1;
2261                 goto err;
2262         }
2263         _LOGD("Transaction Begin\n");
2264         ret = __insert_manifest_info_in_db(mfx, uid);
2265         if (ret == -1) {
2266                 _LOGD("Insert into DB failed. Rollback now\n");
2267                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2268                 goto err;
2269         }
2270         /*Commit transaction*/
2271         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2272         if (ret != SQLITE_OK) {
2273                 _LOGD("Failed to commit transaction. Rollback now\n");
2274                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2275                 ret = -1;
2276                 goto err;
2277         }
2278         _LOGD("Transaction Commit and End\n");
2279 err:
2280         pkgmgr_parser_close_db();
2281         return ret;
2282 }
2283
2284 API int pkgmgr_parser_update_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
2285 {
2286         if (mfx == NULL) {
2287                 _LOGD("manifest pointer is NULL\n");
2288                 return -1;
2289         }
2290         int ret = 0;
2291         ret = pkgmgr_parser_check_and_create_db(uid);
2292         if (ret == -1) {
2293                 _LOGD("Failed to open DB\n");
2294                 return ret;
2295         }
2296         ret = pkgmgr_parser_initialize_db();
2297         if (ret == -1)
2298                 goto err;
2299         /*Preserve guest mode visibility*/
2300         __preserve_guestmode_visibility_value( mfx);
2301         /*Begin transaction*/
2302         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2303         if (ret != SQLITE_OK) {
2304                 _LOGD("Failed to begin transaction\n");
2305                 ret = -1;
2306                 goto err;
2307         }
2308         _LOGD("Transaction Begin\n");
2309         ret = __delete_manifest_info_from_db(mfx, uid);
2310         if (ret == -1) {
2311                 _LOGD("Delete from DB failed. Rollback now\n");
2312                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2313                 goto err;
2314         }
2315         ret = __insert_manifest_info_in_db(mfx, uid);
2316         if (ret == -1) {
2317                 _LOGD("Insert into DB failed. Rollback now\n");
2318                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2319                 goto err;
2320         }
2321
2322         /*Commit transaction*/
2323         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2324         if (ret != SQLITE_OK) {
2325                 _LOGD("Failed to commit transaction. Rollback now\n");
2326                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2327                 ret = -1;
2328                 goto err;
2329         }
2330         _LOGD("Transaction Commit and End\n");
2331 err:
2332         pkgmgr_parser_close_db();
2333         return ret;
2334 }
2335
2336 API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
2337 {
2338         return pkgmgr_parser_update_manifest_info_in_usr_db(mfx, GLOBAL_USER);
2339 }
2340
2341 API int pkgmgr_parser_delete_manifest_info_from_usr_db(manifest_x *mfx, uid_t uid)
2342 {
2343         if (mfx == NULL) {
2344                 _LOGD("manifest pointer is NULL\n");
2345                 return -1;
2346         }
2347         int ret = 0;
2348         ret = pkgmgr_parser_check_and_create_db(uid);
2349         if (ret == -1) {
2350                 _LOGD("Failed to open DB\n");
2351                 return ret;
2352         }
2353         /*Begin transaction*/
2354         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2355         if (ret != SQLITE_OK) {
2356                 _LOGD("Failed to begin transaction\n");
2357                 ret = -1;
2358                 goto err;
2359         }
2360         _LOGD("Transaction Begin\n");
2361         ret = __delete_manifest_info_from_db(mfx, uid);
2362         if (ret == -1) {
2363                 _LOGD("Delete from DB failed. Rollback now\n");
2364                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2365                 goto err;
2366         }
2367         /*Commit transaction*/
2368         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2369         if (ret != SQLITE_OK) {
2370                 _LOGD("Failed to commit transaction, Rollback now\n");
2371                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2372                 ret = -1;
2373                 goto err;
2374         }
2375         _LOGD("Transaction Commit and End\n");
2376 err:
2377         pkgmgr_parser_close_db();
2378         return ret;
2379 }
2380
2381 API int pkgmgr_parser_delete_manifest_info_from_db(manifest_x *mfx)
2382 {
2383         return pkgmgr_parser_delete_manifest_info_from_usr_db(mfx, GLOBAL_USER);
2384 }
2385
2386 API int pkgmgr_parser_update_preload_info_in_db()
2387 {
2388         int ret = 0;
2389         ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
2390         if (ret == -1) {
2391                 _LOGD("Failed to open DB\n");
2392                 return ret;
2393         }
2394         /*Begin transaction*/
2395         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2396         if (ret != SQLITE_OK) {
2397                 _LOGD("Failed to begin transaction\n");
2398                 ret = -1;
2399                 goto err;
2400         }
2401         _LOGD("Transaction Begin\n");
2402         ret = __update_preload_condition_in_db();
2403         if (ret == -1) {
2404                 _LOGD("__update_preload_condition_in_db failed. Rollback now\n");
2405                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2406                 goto err;
2407         }
2408         /*Commit transaction*/
2409         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2410         if (ret != SQLITE_OK) {
2411                 _LOGD("Failed to commit transaction, Rollback now\n");
2412                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2413                 ret = -1;
2414                 goto err;
2415         }
2416         _LOGD("Transaction Commit and End\n");
2417 err:
2418         pkgmgr_parser_close_db();
2419         return ret;
2420 }
2421
2422 API int pkgmgr_parser_update_preload_info_in_usr_db(uid_t uid)
2423 {
2424         int ret = 0;
2425         ret = pkgmgr_parser_check_and_create_db(uid);
2426         if (ret == -1) {
2427                 _LOGD("Failed to open DB\n");
2428                 return ret;
2429         }
2430         /*Begin transaction*/
2431         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2432         if (ret != SQLITE_OK) {
2433                 _LOGD("Failed to begin transaction\n");
2434                 ret = -1;
2435                 goto err;
2436         }
2437         _LOGD("Transaction Begin\n");
2438         ret = __update_preload_condition_in_db();
2439         if (ret == -1) {
2440                 _LOGD("__update_preload_condition_in_db failed. Rollback now\n");
2441                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2442                 goto err;
2443         }
2444         /*Commit transaction*/
2445         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2446         if (ret != SQLITE_OK) {
2447                 _LOGD("Failed to commit transaction, Rollback now\n");
2448                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2449                 ret = -1;
2450                 goto err;
2451         }
2452         _LOGD("Transaction Commit and End\n");
2453 err:
2454         pkgmgr_parser_close_db();
2455         return ret;
2456 }