4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
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>
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
26 #include <sys/types.h>
27 #include <sys/smack.h>
35 /* For multi-user support */
36 #include <tzplatform_config.h>
38 #include "pkgmgr-info.h"
39 #include "pkgmgrinfo_basic.h"
40 #include "pkgmgrinfo_debug.h"
41 #include "pkgmgr_parser_internal.h"
42 #include "pkgmgr_parser_db.h"
47 #define LOG_TAG "PKGMGR_PARSER"
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
55 #define DB_LABEL "User::Home"
56 #define SET_SMACK_LABEL(x) \
58 if (smack_setlabel((x), DB_LABEL, SMACK_LABEL_ACCESS)) \
59 _LOGE("failed chsmack -a %s %s", DB_LABEL, x); \
61 _LOGD("chsmack -a %s %s", DB_LABEL, x); \
64 sqlite3 *pkgmgr_parser_db;
65 sqlite3 *pkgmgr_cert_db;
68 #define QUERY_CREATE_TABLE_PACKAGE_INFO "create table if not exists package_info " \
69 "(package text primary key not null, " \
70 "package_type text DEFAULT 'rpm', " \
71 "package_version text, " \
72 "package_api_version text, " \
73 "package_tep_name text, " \
74 "install_location text, " \
75 "package_size text, " \
76 "package_removable text DEFAULT 'true', " \
77 "package_preload text DEFAULT 'false', " \
78 "package_readonly text DEFAULT 'false', " \
79 "package_update text DEFAULT 'false', " \
80 "package_appsetting text DEFAULT 'false', " \
81 "package_nodisplay text DEFAULT 'false', " \
82 "package_system text DEFAULT 'false', " \
83 "author_name text, " \
84 "author_email text, " \
86 "installed_time text," \
87 "installed_storage text," \
88 "storeclient_id text," \
93 "package_support_disable text DEFAULT 'false')"
95 #define QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO "create table if not exists package_localized_info " \
96 "(package text not null, " \
97 "package_locale text DEFAULT 'No Locale', " \
98 "package_label text, " \
99 "package_icon text, " \
100 "package_description text, " \
101 "package_license text, " \
103 "PRIMARY KEY(package, package_locale), " \
104 "FOREIGN KEY(package) " \
105 "REFERENCES package_info(package) " \
108 #define QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO "create table if not exists package_privilege_info " \
109 "(package text not null, " \
110 "privilege text not null, " \
111 "PRIMARY KEY(package, privilege) " \
112 "FOREIGN KEY(package) " \
113 "REFERENCES package_info(package) " \
116 #define QUERY_CREATE_TABLE_PACKAGE_APP_INFO "create table if not exists package_app_info " \
117 "(app_id text primary key not null, " \
118 "app_component text, " \
120 "app_nodisplay text DEFAULT 'false', " \
122 "app_onboot text DEFAULT 'false', " \
123 "app_multiple text DEFAULT 'false', " \
124 "app_autorestart text DEFAULT 'false', " \
125 "app_taskmanage text DEFAULT 'false', " \
126 "app_enabled text DEFAULT 'true', " \
127 "app_hwacceleration text DEFAULT 'use-system-setting', " \
128 "app_screenreader text DEFAULT 'use-system-setting', " \
129 "app_mainapp text, " \
130 "app_recentimage text, " \
131 "app_launchcondition text, " \
132 "app_indicatordisplay text DEFAULT 'true', " \
133 "app_portraitimg text, " \
134 "app_landscapeimg text, " \
135 "app_guestmodevisibility text DEFAULT 'true', " \
136 "app_permissiontype text DEFAULT 'normal', " \
137 "app_preload text DEFAULT 'false', " \
138 "app_submode text DEFAULT 'false', " \
139 "app_submode_mainid text, " \
140 "app_installed_storage text, " \
141 "app_process_pool text DEFAULT 'false', " \
142 "app_launch_mode text NOT NULL DEFAULT 'caller', " \
143 "app_ui_gadget text DEFAULT 'false', " \
144 "app_support_disable text DEFAULT 'false', " \
145 "component_type text, " \
146 "package text not null, " \
147 "app_tep_name text, " \
148 "app_background_category INTEGER DEFAULT 0, " \
149 "FOREIGN KEY(package) " \
150 "REFERENCES package_info(package) " \
153 #define QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO "create table if not exists package_app_localized_info " \
154 "(app_id text not null, " \
155 "app_locale text DEFAULT 'No Locale', " \
158 "PRIMARY KEY(app_id,app_locale) " \
159 "FOREIGN KEY(app_id) " \
160 "REFERENCES package_app_info(app_id) " \
163 #define QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO "create table if not exists package_app_icon_section_info " \
164 "(app_id text not null, " \
166 "app_icon_section text, " \
167 "app_icon_resolution text, " \
168 "PRIMARY KEY(app_id,app_icon_section,app_icon_resolution) " \
169 "FOREIGN KEY(app_id) " \
170 "REFERENCES package_app_info(app_id) " \
173 #define QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO "create table if not exists package_app_image_info " \
174 "(app_id text not null, " \
175 "app_locale text DEFAULT 'No Locale', " \
176 "app_image_section text, " \
178 "PRIMARY KEY(app_id,app_image_section) " \
179 "FOREIGN KEY(app_id) " \
180 "REFERENCES package_app_info(app_id) " \
183 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL "create table if not exists package_app_app_control " \
184 "(app_id text not null, " \
185 "app_control text not null, " \
186 "PRIMARY KEY(app_id,app_control) " \
187 "FOREIGN KEY(app_id) " \
188 "REFERENCES package_app_info(app_id) " \
191 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY "create table if not exists package_app_app_category " \
192 "(app_id text not null, " \
193 "category text not null, " \
194 "PRIMARY KEY(app_id,category) " \
195 "FOREIGN KEY(app_id) " \
196 "REFERENCES package_app_info(app_id) " \
199 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA "create table if not exists package_app_app_metadata " \
200 "(app_id text not null, " \
201 "md_key text not null, " \
202 "md_value text not null, " \
203 "PRIMARY KEY(app_id, md_key, md_value) " \
204 "FOREIGN KEY(app_id) " \
205 "REFERENCES package_app_info(app_id) " \
208 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION "create table if not exists package_app_app_permission " \
209 "(app_id text not null, " \
210 "pm_type text not null, " \
211 "pm_value text not null, " \
212 "PRIMARY KEY(app_id, pm_type, pm_value) " \
213 "FOREIGN KEY(app_id) " \
214 "REFERENCES package_app_info(app_id) " \
217 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED "create table if not exists package_app_share_allowed " \
218 "(app_id text not null, " \
219 "data_share_path text not null, " \
220 "data_share_allowed text not null, " \
221 "PRIMARY KEY(app_id,data_share_path,data_share_allowed) " \
222 "FOREIGN KEY(app_id) " \
223 "REFERENCES package_app_info(app_id) " \
226 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST "create table if not exists package_app_share_request " \
227 "(app_id text not null, " \
228 "data_share_request text not null, " \
229 "PRIMARY KEY(app_id,data_share_request) " \
230 "FOREIGN KEY(app_id) " \
231 "REFERENCES package_app_info(app_id) " \
234 /* FIXME: duplicated at pkgmgrinfo_db.c */
235 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO \
236 "CREATE TABLE IF NOT EXISTS package_cert_index_info( " \
237 " cert_info TEXT UNIQUE, " \
238 " cert_id INTEGER PRIMARY KEY, " \
239 " cert_ref_count INTEGER NOT NULL)"
241 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INFO \
242 "CREATE TABLE IF NOT EXISTS package_cert_info( " \
243 " package TEXT PRIMARY KEY, " \
244 " author_root_cert INTEGER, " \
245 " author_im_cert INTEGER, " \
246 " author_signer_cert INTEGER, " \
247 " dist_root_cert INTEGER, " \
248 " dist_im_cert INTEGER, " \
249 " dist_signer_cert INTEGER, " \
250 " dist2_root_cert INTEGER, " \
251 " dist2_im_cert INTEGER, " \
252 " dist2_signer_cert INTEGER)"
254 #define QUERY_CREATE_TRIGGER_DELETE_CERT_INFO \
255 "CREATE TRIGGER IF NOT EXISTS delete_cert_info " \
256 "AFTER DELETE ON package_cert_info " \
258 " UPDATE package_cert_index_info SET" \
259 " cert_ref_count = cert_ref_count - 1" \
260 " WHERE cert_id = OLD.author_root_cert" \
261 " OR cert_id = OLD.author_im_cert" \
262 " OR cert_id = OLD.author_signer_cert" \
263 " OR cert_id = OLD.dist_root_cert" \
264 " OR cert_id = OLD.dist_im_cert" \
265 " OR cert_id = OLD.dist_signer_cert" \
266 " OR cert_id = OLD.dist2_root_cert" \
267 " OR cert_id = OLD.dist2_im_cert" \
268 " OR cert_id = OLD.dist2_signer_cert;" \
271 #define QUERY_CREATE_TRIGGER_UPDATE_CERT_INDEX_INFO \
272 "CREATE TRIGGER IF NOT EXISTS update_cert_index_info " \
273 "AFTER UPDATE ON package_cert_index_info " \
274 "WHEN ((SELECT cert_ref_count FROM package_cert_index_info " \
275 " WHERE cert_id = OLD.cert_id) = 0) "\
277 " DELETE FROM package_cert_index_info WHERE cert_id = OLD.cert_id;" \
280 #define QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL "create table if not exists package_app_data_control " \
281 "(app_id text not null, " \
282 "providerid text not null, " \
283 "access text not null, " \
284 "type text not null, " \
285 "PRIMARY KEY(app_id, providerid, access, type) " \
286 "FOREIGN KEY(app_id) " \
287 "REFERENCES package_app_info(app_id) " \
290 static int __insert_application_info(manifest_x *mfx);
291 static int __insert_application_appcategory_info(manifest_x *mfx);
292 static int __insert_application_appcontrol_info(manifest_x *mfx);
293 static int __insert_application_appmetadata_info(manifest_x *mfx);
294 static int __insert_application_share_allowed_info(manifest_x *mfx);
295 static int __insert_application_share_request_info(manifest_x *mfx);
296 static int __insert_application_datacontrol_info(manifest_x *mfx);
297 static void __insert_application_locale_info(gpointer data, gpointer userdata);
298 static void __insert_pkglocale_info(gpointer data, gpointer userdata);
299 static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid);
300 static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid);
301 static int __delete_subpkg_info_from_db(char *appid);
302 static int __delete_appinfo_from_db(char *db_table, const char *appid);
303 static int __initialize_db(sqlite3 *db_handle, const char *db_query);
304 static int __exec_query(char *query);
305 static void __extract_data(gpointer data, GList *lbl, GList *lcn, GList *icn, GList *dcn, GList *ath,
306 char **label, char **license, char **icon, char **description, char **author);
307 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata);
308 static GList *__create_locale_list(GList *locale, GList *lbl, GList *lcn, GList *icn, GList *dcn, GList *ath);
309 static void __preserve_guestmode_visibility_value(manifest_x *mfx);
310 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname);
311 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path);
312 static int __parserdb_change_perm(const char *db_file, uid_t uid);
314 static int __delete_subpkg_list_cb(void *data, int ncols, char **coltxt, char **colname)
317 __delete_subpkg_info_from_db(coltxt[0]);
322 static const char *__get_str(const char *str)
326 return PKGMGR_PARSER_EMPTY_STR;
332 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path)
337 ret = db_util_open(db_path, &handle, DB_UTIL_REGISTER_HOOK_METHOD);
338 if (ret != SQLITE_OK) {
339 _LOGD("connect db [%s] failed!\n", db_path);
347 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname)
349 manifest_x *mfx = (manifest_x *)data;
355 if (mfx->application == NULL)
357 app = (application_x *)mfx->application->data;
358 for(i = 0; i < ncols; i++)
360 if (strcmp(colname[i], "app_id") == 0) {
362 appid = strdup(coltxt[i]);
363 } else if (strcmp(colname[i], "app_guestmodevisibility") == 0) {
365 status = strdup(coltxt[i]);
369 _LOGD("app id is NULL\n");
372 /*update guest mode visibility*/
373 for (tmp = mfx->application; tmp; tmp = tmp->next) {
374 app = (application_x *)tmp->data;
377 if (strcmp(app->appid, appid) == 0) {
378 free((void *)app->guestmode_visibility);
379 app->guestmode_visibility = strdup(status);
395 static void __preserve_guestmode_visibility_value(manifest_x *mfx)
397 char *error_message = NULL;
398 char query[MAX_QUERY_LEN] = {'\0'};
399 snprintf(query, MAX_QUERY_LEN - 1, "select app_id, app_guestmodevisibility from package_app_info where package='%s'", mfx->package);
401 sqlite3_exec(pkgmgr_parser_db, query,
402 __guestmode_visibility_cb, (void *)mfx, &error_message)) {
403 _LOGD("Don't execute query = %s error message = %s\n",
404 query, error_message);
405 sqlite3_free(error_message);
410 static int __initialize_db(sqlite3 *db_handle, const char *db_query)
412 char *error_message = NULL;
414 sqlite3_exec(db_handle, db_query,
415 NULL, NULL, &error_message)) {
416 _LOGD("Don't execute query = %s error message = %s\n",
417 db_query, error_message);
418 sqlite3_free(error_message);
421 sqlite3_free(error_message);
425 static int __exec_query(char *query)
427 char *error_message = NULL;
429 sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
430 _LOGE("Don't execute query = %s error message = %s\n", query,
432 sqlite3_free(error_message);
435 sqlite3_free(error_message);
439 static int __exec_query_no_msg(char *query)
441 char *error_message = NULL;
443 sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
444 sqlite3_free(error_message);
447 sqlite3_free(error_message);
451 static GList *__create_locale_list(GList *locale, GList *lbls, GList *lcns, GList *icns, GList *dcns, GList *aths)
459 for (tmp = lbls; tmp; tmp = tmp->next) {
460 lbl = (label_x *)tmp->data;
464 locale = g_list_insert_sorted_with_data(locale, (gpointer)lbl->lang, __comparefunc, NULL);
466 for (tmp = lcns; tmp; tmp = tmp->next) {
467 lcn = (license_x *)tmp->data;
471 locale = g_list_insert_sorted_with_data(locale, (gpointer)lcn->lang, __comparefunc, NULL);
473 for (tmp = icns; tmp; tmp = tmp->next) {
474 icn = (icon_x *)tmp->data;
478 locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->lang, __comparefunc, NULL);
480 for (tmp = dcns; tmp; tmp = tmp->next) {
481 dcn = (description_x *)tmp->data;
485 locale = g_list_insert_sorted_with_data(locale, (gpointer)dcn->lang, __comparefunc, NULL);
487 for (tmp = aths; tmp; tmp = tmp->next) {
488 ath = (author_x *)tmp->data;
492 locale = g_list_insert_sorted_with_data(locale, (gpointer)ath->lang, __comparefunc, NULL);
498 static GList *__create_icon_list(GList *locale, GList *icns)
503 for (tmp = icns; tmp; tmp = tmp->next) {
504 icn = (icon_x *)tmp->data;
508 locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->section, __comparefunc, NULL);
513 static GList *__create_image_list(GList *locale, GList *imgs)
518 for (tmp = imgs; tmp; tmp = tmp->next) {
519 img = (image_x *)tmp->data;
523 locale = g_list_insert_sorted_with_data(locale, (gpointer)img->section, __comparefunc, NULL);
528 static void __trimfunc(GList* trim_list)
530 char *trim_data = NULL;
534 list = g_list_first(trim_list);
537 trim_data = (char *)list->data;
540 if (strcmp(trim_data, prev) == 0) {
541 trim_list = g_list_remove(trim_list, trim_data);
542 list = g_list_first(trim_list);
551 list = g_list_next(list);
555 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata)
557 if (a == NULL || b == NULL)
559 if (strcmp((char*)a, (char*)b) == 0)
561 if (strcmp((char*)a, (char*)b) < 0)
563 if (strcmp((char*)a, (char*)b) > 0)
568 static void __extract_data(gpointer data, GList *lbls, GList *lcns, GList *icns, GList *dcns, GList *aths,
569 char **label, char **license, char **icon, char **description, char **author)
577 for (tmp = lbls; tmp; tmp = tmp->next) {
578 lbl = (label_x *)tmp->data;
582 if (strcmp(lbl->lang, (char *)data) == 0) {
583 *label = (char*)lbl->text;
588 for (tmp = lcns; tmp; tmp = tmp->next) {
589 lcn = (license_x *)tmp->data;
593 if (strcmp(lcn->lang, (char *)data) == 0) {
594 *license = (char*)lcn->text;
599 for (tmp = icns; tmp; tmp = tmp->next) {
600 icn = (icon_x *)tmp->data;
604 if (strcmp(icn->lang, (char *)data) == 0) {
605 *icon = (char*)icn->text;
610 for (tmp = dcns; tmp; tmp = tmp->next) {
611 dcn = (description_x *)tmp->data;
615 if (strcmp(dcn->lang, (char *)data) == 0) {
616 *description = (char*)dcn->text;
621 for (tmp = aths; tmp; tmp = tmp->next) {
622 ath = (author_x *)tmp->data;
626 if (strcmp(ath->lang, (char *)data) == 0) {
627 *author = (char*)ath->text;
635 static void __extract_icon_data(gpointer data, GList *icns, char **icon, char **resolution)
639 for (tmp = icns; tmp; tmp = tmp->next) {
640 icn = (icon_x *)tmp->data;
644 if (strcmp(icn->section, (char *)data) == 0) {
645 *icon = (char*)icn->text;
646 *resolution = (char*)icn->resolution;
653 static void __extract_image_data(gpointer data, GList *imgs, char **lang, char **image)
657 for (tmp = imgs; tmp; tmp = tmp->next) {
658 img = (image_x *)tmp->data;
662 if (strcmp(img->section, (char *)data) == 0) {
663 *lang = (char*)img->lang;
664 *image = (char*)img->text;
671 static void __insert_pkglocale_info(gpointer data, gpointer userdata)
676 char *description = NULL;
677 char *license = NULL;
679 char query[MAX_QUERY_LEN] = {'\0'};
681 manifest_x *mfx = (manifest_x *)userdata;
682 GList *lbl = mfx->label;
683 GList *lcn = mfx->license;
684 GList *icn = mfx->icon;
685 GList *dcn = mfx->description;
686 GList *ath = mfx->author;
688 __extract_data(data, lbl, lcn, icn, dcn, ath, &label, &license, &icon, &description, &author);
689 if (!label && !description && !icon && !license && !author)
692 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
693 "package_label, package_icon, package_description, package_license, package_author) values " \
694 "('%q', '%q', '%q', '%q', '%s', '%s', '%s')",
699 __get_str(description),
703 ret = __exec_query(query);
705 _LOGD("Package Localized Info DB Insert failed\n");
708 static void __insert_application_locale_info(gpointer data, gpointer userdata)
713 char query[MAX_QUERY_LEN] = {'\0'};
715 application_x *app = (application_x*)userdata;
716 GList *lbl = app->label;
717 GList *icn = app->icon;
719 __extract_data(data, lbl, NULL, icn, NULL, NULL, &label, NULL, &icon, NULL, NULL);
722 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_localized_info(app_id, app_locale, " \
723 "app_label, app_icon) values " \
724 "('%q', '%q', '%q', '%q')", app->appid, (char*)data,
726 ret = __exec_query(query);
728 _LOGD("Package UiApp Localized Info DB Insert failed\n");
730 /*insert ui app locale info to pkg locale to get mainapp data */
731 if (strcasecmp(app->mainapp, "true")==0) {
732 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
733 "package_label, package_icon, package_description, package_license, package_author) values " \
734 "('%q', '%q', '%q', '%q', '%q', '%q', '%q')",
739 PKGMGR_PARSER_EMPTY_STR,
740 PKGMGR_PARSER_EMPTY_STR,
741 PKGMGR_PARSER_EMPTY_STR);
743 ret = __exec_query_no_msg(query);
746 sqlite3_snprintf(MAX_QUERY_LEN, query, "update package_localized_info set package_icon='%s' "\
747 "where package='%s' and package_locale='%s'", icon, app->package, (char*)data);
748 ret = __exec_query_no_msg(query);
753 static void __insert_application_icon_section_info(gpointer data, gpointer userdata)
757 char *resolution = NULL;
758 char query[MAX_QUERY_LEN] = {'\0'};
760 application_x *app = (application_x*)userdata;
761 GList *icn = app->icon;
763 __extract_icon_data(data, icn, &icon, &resolution);
764 if (!icon && !resolution)
766 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_icon_section_info(app_id, " \
767 "app_icon, app_icon_section, app_icon_resolution) values " \
768 "('%q', '%q', '%q', '%q')", app->appid,
769 icon, (char*)data, resolution);
771 ret = __exec_query(query);
773 _LOGD("Package UiApp Localized Info DB Insert failed\n");
777 static void __insert_application_image_info(gpointer data, gpointer userdata)
782 char query[MAX_QUERY_LEN] = {'\0'};
784 application_x *app = (application_x*)userdata;
785 GList *image = app->image;
787 __extract_image_data(data, image, &lang, &img);
790 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_image_info(app_id, app_locale, " \
791 "app_image_section, app_image) values " \
792 "('%q', '%q', '%q', '%q')", app->appid, lang, (char*)data, img);
794 ret = __exec_query(query);
796 _LOGD("Package UiApp image Info DB Insert failed\n");
801 static int __insert_mainapp_info(manifest_x *mfx)
806 char query[MAX_QUERY_LEN] = {'\0'};
807 for (tmp = mfx->application; tmp; tmp = tmp->next) {
808 app = (application_x *)tmp->data;
811 snprintf(query, MAX_QUERY_LEN,
812 "update package_app_info set app_mainapp='%s' where app_id='%s'", app->mainapp, app->appid);
814 ret = __exec_query(query);
816 _LOGD("Package App Info DB Insert Failed\n");
819 if (strcasecmp(app->mainapp, "True")==0)
820 mfx->mainapp_id = strdup(app->appid);
823 if (mfx->mainapp_id == NULL) {
824 if (mfx->application == NULL)
826 app = (application_x *)mfx->application->data;
830 snprintf(query, MAX_QUERY_LEN, "update package_app_info set app_mainapp='true' where app_id='%s'", app->appid);
832 _LOGD("Not valid appid\n");
836 ret = __exec_query(query);
838 _LOGD("Package UiApp Info DB Insert Failed\n");
842 free((void *)app->mainapp);
843 app->mainapp= strdup("true");
844 mfx->mainapp_id = strdup(app->appid);
847 memset(query, '\0', MAX_QUERY_LEN);
848 snprintf(query, MAX_QUERY_LEN,
849 "update package_info set mainapp_id='%s' where package='%s'", mfx->mainapp_id, mfx->package);
850 ret = __exec_query(query);
852 _LOGD("Package Info DB update Failed\n");
859 static int __convert_background_category(GList *category_list)
862 GList *tmp_list = category_list;
863 char *category_data = NULL;
865 if (category_list == NULL)
868 while (tmp_list != NULL) {
869 category_data = (char *)tmp_list->data;
870 if (strcmp(category_data, APP_BG_CATEGORY_MEDIA_STR) == 0) {
871 ret = ret | APP_BG_CATEGORY_MEDIA_VAL;
872 } else if (strcmp(category_data, APP_BG_CATEGORY_DOWNLOAD_STR) == 0) {
873 ret = ret | APP_BG_CATEGORY_DOWNLOAD_VAL;
874 } else if (strcmp(category_data, APP_BG_CATEGORY_BGNETWORK_STR) == 0) {
875 ret = ret | APP_BG_CATEGORY_BGNETWORK_VAL;
876 } else if (strcmp(category_data, APP_BG_CATEGORY_LOCATION_STR) == 0) {
877 ret = ret | APP_BG_CATEGORY_LOCATION_VAL;
878 } else if (strcmp(category_data, APP_BG_CATEGORY_SENSOR_STR) == 0) {
879 ret = ret | APP_BG_CATEGORY_SENSOR_VAL;
880 } else if (strcmp(category_data, APP_BG_CATEGORY_IOTCOMM_STR) == 0) {
881 ret = ret | APP_BG_CATEGORY_IOTCOMM_VAL;
882 } else if (strcmp(category_data, APP_BG_CATEGORY_SYSTEM) == 0) {
883 ret = ret | APP_BG_CATEGORY_SYSTEM_VAL;
885 _LOGE("Unidentified category [%s]", category_data);
887 tmp_list = g_list_next(tmp_list);
893 /* _PRODUCT_LAUNCHING_ENHANCED_
894 * app->indicatordisplay, app->portraitimg, app->landscapeimg, app->guestmode_appstatus
896 static int __insert_application_info(manifest_x *mfx)
901 int background_value = 0;
902 char query[MAX_QUERY_LEN] = {'\0'};
904 for (tmp = mfx->application; tmp; tmp = tmp->next) {
905 app = (application_x *)tmp->data;
909 background_value = __convert_background_category(app->background_category);
910 if (background_value < 0) {
911 _LOGE("Failed to retrieve background value[%d]", background_value);
912 background_value = 0;
915 snprintf(query, MAX_QUERY_LEN,
916 "insert into package_app_info(" \
917 "app_id, app_component, app_exec, app_nodisplay, app_type, " \
918 "app_onboot, app_multiple, app_autorestart, app_taskmanage, app_enabled, " \
919 "app_hwacceleration, app_screenreader, app_mainapp, app_recentimage, app_launchcondition, " \
920 "app_indicatordisplay, app_portraitimg, app_landscapeimg, app_guestmodevisibility, app_permissiontype, " \
921 "app_preload, app_submode, app_submode_mainid, app_installed_storage, app_process_pool, " \
922 "app_launch_mode, app_ui_gadget, app_support_disable, component_type, package, " \
923 "app_tep_name, app_background_category) " \
925 "'%s', '%s', '%s', '%s', '%s', " \
926 "'%s', '%s', '%s', '%s', '%s', " \
927 "'%s', '%s', '%s', '%s', '%s', " \
928 "'%s', '%s', '%s', '%s', '%s', " \
929 "'%s', '%s', '%s', '%s', '%s', " \
930 "'%s', '%s', '%s', '%s', '%s', " \
932 app->appid, app->component_type, app->exec, app->nodisplay, app->type,
933 app->onboot, app->multiple, app->autorestart, app->taskmanage, app->enabled,
934 app->hwacceleration, app->screenreader, app->mainapp, __get_str(app->recentimage), app->launchcondition,
935 app->indicatordisplay, __get_str(app->portraitimg), __get_str(app->landscapeimg),
936 app->guestmode_visibility, app->permission_type,
937 mfx->preload, app->submode, __get_str(app->submode_mainid), mfx->installed_storage, app->process_pool,
938 app->launch_mode, app->ui_gadget, mfx->support_disable, app->component_type, mfx->package,
939 __get_str(mfx->tep_name), background_value);
941 ret = __exec_query(query);
943 _LOGD("Package UiApp Info DB Insert Failed\n");
946 memset(query, '\0', MAX_QUERY_LEN);
951 static int __insert_application_appcategory_info(manifest_x *mfx)
958 char query[MAX_QUERY_LEN] = {'\0'};
959 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
960 app = (application_x *)app_tmp->data;
963 for (ct_tmp = app->category; ct_tmp; ct_tmp = ct_tmp->next) {
964 ct = (const char *)ct_tmp->data;
967 snprintf(query, MAX_QUERY_LEN,
968 "insert into package_app_app_category(app_id, category) " \
969 "values('%s','%s')",\
971 ret = __exec_query(query);
973 _LOGD("Package UiApp Category Info DB Insert Failed\n");
976 memset(query, '\0', MAX_QUERY_LEN);
982 static int __insert_application_appmetadata_info(manifest_x *mfx)
989 char query[MAX_QUERY_LEN] = {'\0'};
990 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
991 app = (application_x *)app_tmp->data;
994 for (md_tmp = app->metadata; md_tmp; md_tmp = md_tmp->next) {
995 md = (metadata_x *)md_tmp->data;
999 snprintf(query, MAX_QUERY_LEN,
1000 "insert into package_app_app_metadata(app_id, md_key, md_value) " \
1001 "values('%s','%s', '%s')",\
1002 app->appid, md->key, md->value ? md->value : "");
1003 ret = __exec_query(query);
1005 _LOGD("Package UiApp Metadata Info DB Insert Failed\n");
1009 memset(query, '\0', MAX_QUERY_LEN);
1015 static int __insert_application_apppermission_info(manifest_x *mfx)
1022 char query[MAX_QUERY_LEN] = {'\0'};
1023 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1024 app = (application_x *)app_tmp->data;
1027 for (pm_tmp = app->permission; pm_tmp; pm_tmp = pm_tmp->next) {
1028 pm = (permission_x *)pm_tmp->data;
1031 snprintf(query, MAX_QUERY_LEN,
1032 "insert into package_app_app_permission(app_id, pm_type, pm_value) " \
1033 "values('%s','%s', '%s')",\
1034 app->appid, pm->type, pm->value);
1035 ret = __exec_query(query);
1037 _LOGD("Package UiApp permission Info DB Insert Failed\n");
1040 memset(query, '\0', MAX_QUERY_LEN);
1046 static int __insert_application_appcontrol_info(manifest_x *mfx)
1050 GList *acontrol_tmp;
1051 appcontrol_x *acontrol;
1053 char query[MAX_QUERY_LEN] = {'\0'};
1054 char buf[BUFSIZE] = {'\0'};
1055 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1056 app = (application_x *)app_tmp->data;
1059 for (acontrol_tmp = app->appcontrol; acontrol_tmp; acontrol_tmp = acontrol_tmp->next) {
1060 acontrol = (appcontrol_x *)acontrol_tmp->data;
1061 if (acontrol == NULL)
1063 snprintf(buf, BUFSIZE, "%s|%s|%s",\
1064 acontrol->operation ? (strlen(acontrol->operation) > 0 ? acontrol->operation : "NULL") : "NULL",
1065 acontrol->uri ? (strlen(acontrol->uri) > 0 ? acontrol->uri : "NULL") : "NULL",
1066 acontrol->mime ? (strlen(acontrol->mime) > 0 ? acontrol->mime : "NULL") : "NULL");
1067 snprintf(query, MAX_QUERY_LEN,
1068 "insert into package_app_app_control(app_id, app_control) " \
1069 "values('%s', '%s')",\
1071 ret = __exec_query(query);
1073 _LOGD("Package UiApp AppSvc DB Insert Failed\n");
1076 memset(query, '\0', MAX_QUERY_LEN);
1082 static int __insert_application_datacontrol_info(manifest_x *mfx)
1089 char query[MAX_QUERY_LEN] = {'\0'};
1091 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1092 app = (application_x *)app_tmp->data;
1095 for (dc_tmp = app->datacontrol; dc_tmp; dc_tmp = dc_tmp->next) {
1096 dc = (datacontrol_x *)dc_tmp->data;
1099 snprintf(query, MAX_QUERY_LEN,
1100 "insert into package_app_data_control(app_id, providerid, access, type) " \
1101 "values('%s', '%s', '%s', '%s')",\
1107 ret = __exec_query(query);
1109 _LOGD("Package UiApp Data Control DB Insert Failed\n");
1112 memset(query, '\0', MAX_QUERY_LEN);
1118 static int __insert_application_share_request_info(manifest_x *mfx)
1127 char query[MAX_QUERY_LEN] = {'\0'};
1128 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1129 app = (application_x *)app_tmp->data;
1132 for (ds_tmp = app->datashare; ds_tmp; ds_tmp = ds_tmp->next) {
1133 ds = (datashare_x *)ds_tmp->data;
1136 for (rq_tmp = ds->request; rq_tmp; rq_tmp = rq_tmp->next) {
1137 rq = (const char *)rq_tmp->data;
1140 snprintf(query, MAX_QUERY_LEN,
1141 "insert into package_app_share_request(app_id, data_share_request) " \
1142 "values('%s', '%s')",\
1144 ret = __exec_query(query);
1146 _LOGD("Package UiApp Share Request DB Insert Failed\n");
1149 memset(query, '\0', MAX_QUERY_LEN);
1156 static int __insert_application_share_allowed_info(manifest_x *mfx)
1167 char query[MAX_QUERY_LEN] = {'\0'};
1168 for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1169 app = (application_x *)app_tmp->data;
1172 for (ds_tmp = app->datashare; ds_tmp; ds_tmp = ds_tmp->next) {
1173 ds = (datashare_x *)ds_tmp->data;
1176 for (df_tmp = ds->define; df_tmp; df_tmp = df_tmp->next) {
1177 df = (define_x *)df_tmp->data;
1180 for (al_tmp = df->allowed; al_tmp; al_tmp = al_tmp->next) {
1181 al = (const char *)al_tmp->data;
1184 snprintf(query, MAX_QUERY_LEN,
1185 "insert into package_app_share_allowed(app_id, data_share_path, data_share_allowed) " \
1186 "values('%s', '%s', '%s')",\
1187 app->appid, df->path, al);
1188 ret = __exec_query(query);
1190 _LOGD("Package UiApp Share Allowed DB Insert Failed\n");
1193 memset(query, '\0', MAX_QUERY_LEN);
1201 static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid)
1205 const char *pv = NULL;
1206 char query[MAX_QUERY_LEN] = { '\0' };
1209 const char *auth_name = NULL;
1210 const char *auth_email = NULL;
1211 const char *auth_href = NULL;
1213 GList *pkglocale = NULL;
1214 GList *applocale = NULL;
1215 GList *appicon = NULL;
1216 GList *appimage = NULL;
1218 if (mfx->author && mfx->author->data) {
1219 author = (author_x *)mfx->author->data;
1221 auth_name = author->text;
1223 auth_email = author->email;
1225 auth_href = author->href;
1227 /*Insert in the package_cert_info CERT_DB*/
1228 pkgmgrinfo_instcertinfo_h cert_handle = NULL;
1229 ret = pkgmgrinfo_set_cert_value(&cert_handle, PMINFO_SET_AUTHOR_ROOT_CERT, "author root certificate");
1230 if (ret != PMINFO_R_OK) {
1231 pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
1232 _LOGE("Cert Info DB create handle failed\n");
1235 ret = pkgmgrinfo_save_certinfo(mfx->package, &cert_handle, uid);
1236 if (ret != PMINFO_R_OK) {
1237 pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
1238 _LOGE("Cert Info DB Insert Failed\n");
1242 /*Insert in the package_info DB*/
1243 snprintf(query, MAX_QUERY_LEN,
1244 "insert into package_info(" \
1245 "package, package_type, package_version, package_api_version, package_tep_name, " \
1246 "install_location, package_size, package_removable, package_preload, package_readonly, " \
1247 "package_update, package_appsetting, package_nodisplay, package_system, author_name, " \
1248 "author_email, author_href, installed_time, installed_storage, storeclient_id, " \
1249 "mainapp_id, package_url, root_path, csc_path, package_support_disable) " \
1251 "'%s', '%s', '%s', '%s', '%s', " \
1252 "'%s', '%s', '%s', '%s', '%s', " \
1253 "'%s', '%s', '%s', '%s', '%s', " \
1254 "'%s', '%s', '%s', '%s', '%s', " \
1255 "'%s', '%s', '%s', '%s', '%s')", \
1256 mfx->package, mfx->type, mfx->version, __get_str(mfx->api_version), __get_str(mfx->tep_name),
1257 __get_str(mfx->installlocation), __get_str(mfx->package_size), mfx->removable, mfx->preload, mfx->readonly,
1258 mfx->update, mfx->appsetting, mfx->nodisplay_setting, mfx->system, __get_str(auth_name),
1259 __get_str(auth_email), __get_str(auth_href), mfx->installed_time, mfx->installed_storage,
1260 __get_str(mfx->storeclient_id),
1261 mfx->mainapp_id, __get_str(mfx->package_url), mfx->root_path, __get_str(mfx->csc_path), mfx->support_disable);
1263 ret = __exec_query(query);
1265 _LOGD("Package Info DB Insert Failed\n");
1269 /*Insert in the package_privilege_info DB*/
1270 for (tmp = mfx->privileges; tmp; tmp = tmp->next) {
1271 pv = (const char *)tmp->data;
1274 memset(query, '\0', MAX_QUERY_LEN);
1275 snprintf(query, MAX_QUERY_LEN,
1276 "insert into package_privilege_info(package, privilege) " \
1277 "values('%s','%s')",\
1279 ret = __exec_query(query);
1281 _LOGD("Package Privilege Info DB Insert Failed\n");
1286 if (mfx->application != NULL) {
1287 ret = __insert_mainapp_info(mfx);
1292 /*Insert the package locale*/
1293 pkglocale = __create_locale_list(pkglocale, mfx->label, mfx->license, mfx->icon, mfx->description, mfx->author);
1294 /*remove duplicated data in pkglocale*/
1295 __trimfunc(pkglocale);
1297 /*Insert the app locale, icon, image info */
1298 for (tmp = mfx->application; tmp; tmp = tmp->next) {
1299 app = (application_x *)tmp->data;
1302 applocale = __create_locale_list(applocale, app->label, NULL, app->icon, NULL, NULL);
1303 appicon = __create_icon_list(appicon, app->icon);
1304 appimage = __create_image_list(appimage, app->image);
1306 /*remove duplicated data in applocale*/
1307 __trimfunc(applocale);
1308 __trimfunc(appicon);
1309 __trimfunc(appimage);
1311 g_list_foreach(pkglocale, __insert_pkglocale_info, (gpointer)mfx);
1313 /*native app locale info*/
1314 for (tmp = mfx->application; tmp; tmp = tmp->next) {
1315 app = (application_x *)tmp->data;
1318 g_list_foreach(applocale, __insert_application_locale_info, (gpointer)app);
1319 g_list_foreach(appicon, __insert_application_icon_section_info, (gpointer)app);
1320 g_list_foreach(appimage, __insert_application_image_info, (gpointer)app);
1323 g_list_free(pkglocale);
1325 g_list_free(applocale);
1327 g_list_free(appicon);
1329 g_list_free(appimage);
1332 /*Insert in the package_app_info DB*/
1333 ret = __insert_application_info(mfx);
1336 /*Insert in the package_app_app_control DB*/
1337 ret = __insert_application_appcontrol_info(mfx);
1341 /*Insert in the package_app_app_category DB*/
1342 ret = __insert_application_appcategory_info(mfx);
1346 /*Insert in the package_app_app_metadata DB*/
1347 ret = __insert_application_appmetadata_info(mfx);
1351 /*Insert in the package_app_app_permission DB*/
1352 ret = __insert_application_apppermission_info(mfx);
1356 /*Insert in the package_app_share_allowed DB*/
1357 ret = __insert_application_share_allowed_info(mfx);
1361 /*Insert in the package_app_share_request DB*/
1362 ret = __insert_application_share_request_info(mfx);
1366 /*Insert in the package_app_data_control DB*/
1367 ret = __insert_application_datacontrol_info(mfx);
1375 static int __delete_appinfo_from_db(char *db_table, const char *appid)
1377 char query[MAX_QUERY_LEN] = { '\0' };
1379 memset(query, '\0', MAX_QUERY_LEN);
1380 snprintf(query, MAX_QUERY_LEN,
1381 "delete from %s where app_id='%s'", db_table, appid);
1382 ret = __exec_query(query);
1384 _LOGD("DB Deletion from table (%s) Failed\n", db_table);
1390 static int __delete_subpkg_info_from_db(char *appid)
1394 ret = __delete_appinfo_from_db("package_app_info", appid);
1397 ret = __delete_appinfo_from_db("package_app_localized_info", appid);
1400 ret = __delete_appinfo_from_db("package_app_icon_section_info", appid);
1403 ret = __delete_appinfo_from_db("package_app_image_info", appid);
1406 ret = __delete_appinfo_from_db("package_app_app_control", appid);
1409 ret = __delete_appinfo_from_db("package_app_app_category", appid);
1412 ret = __delete_appinfo_from_db("package_app_app_metadata", appid);
1415 ret = __delete_appinfo_from_db("package_app_app_permission", appid);
1418 ret = __delete_appinfo_from_db("package_app_share_allowed", appid);
1421 ret = __delete_appinfo_from_db("package_app_share_request", appid);
1424 ret = __delete_appinfo_from_db("package_app_data_control", appid);
1431 static int __delete_subpkg_from_db(manifest_x *mfx)
1433 char query[MAX_QUERY_LEN] = { '\0' };
1434 char *error_message = NULL;
1436 snprintf(query, MAX_QUERY_LEN, "select app_id from package_app_info where package='%s'", mfx->package);
1438 sqlite3_exec(pkgmgr_parser_db, query, __delete_subpkg_list_cb, NULL, &error_message)) {
1439 _LOGE("Don't execute query = %s error message = %s\n", query,
1441 sqlite3_free(error_message);
1444 sqlite3_free(error_message);
1449 static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid)
1451 char query[MAX_QUERY_LEN] = { '\0' };
1455 /*Delete from cert table*/
1456 ret = pkgmgrinfo_delete_certinfo(mfx->package);
1458 _LOGD("Cert Info DB Delete Failed\n");
1462 /*Delete from Package Info DB*/
1463 snprintf(query, MAX_QUERY_LEN,
1464 "delete from package_info where package='%s'", mfx->package);
1465 ret = __exec_query(query);
1467 _LOGD("Package Info DB Delete Failed\n");
1470 memset(query, '\0', MAX_QUERY_LEN);
1472 /*Delete from Package Localized Info*/
1473 snprintf(query, MAX_QUERY_LEN,
1474 "delete from package_localized_info where package='%s'", mfx->package);
1475 ret = __exec_query(query);
1477 _LOGD("Package Localized Info DB Delete Failed\n");
1481 /*Delete from Package Privilege Info*/
1482 snprintf(query, MAX_QUERY_LEN,
1483 "delete from package_privilege_info where package='%s'", mfx->package);
1484 ret = __exec_query(query);
1486 _LOGD("Package Privilege Info DB Delete Failed\n");
1490 for (tmp = mfx->application; tmp; tmp = tmp->next) {
1491 app = (application_x *)tmp->data;
1494 ret = __delete_appinfo_from_db("package_app_info", app->appid);
1497 ret = __delete_appinfo_from_db("package_app_localized_info", app->appid);
1500 ret = __delete_appinfo_from_db("package_app_icon_section_info", app->appid);
1503 ret = __delete_appinfo_from_db("package_app_image_info", app->appid);
1506 ret = __delete_appinfo_from_db("package_app_app_control", app->appid);
1509 ret = __delete_appinfo_from_db("package_app_app_category", app->appid);
1512 ret = __delete_appinfo_from_db("package_app_app_metadata", app->appid);
1515 ret = __delete_appinfo_from_db("package_app_app_permission", app->appid);
1518 ret = __delete_appinfo_from_db("package_app_share_allowed", app->appid);
1521 ret = __delete_appinfo_from_db("package_app_share_request", app->appid);
1524 ret = __delete_appinfo_from_db("package_app_data_control", app->appid);
1529 /* if main package has sub pkg, delete sub pkg data*/
1530 __delete_subpkg_from_db(mfx);
1535 static int __update_preload_condition_in_db()
1538 char query[MAX_QUERY_LEN] = {'\0'};
1540 snprintf(query, MAX_QUERY_LEN, "update package_info set package_preload='true'");
1542 ret = __exec_query(query);
1544 _LOGD("Package preload_condition update failed\n");
1549 API int pkgmgr_parser_initialize_db(uid_t uid)
1553 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_INFO);
1555 _LOGD("package info DB initialization failed\n");
1558 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO);
1560 _LOGD("package localized info DB initialization failed\n");
1563 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO);
1565 _LOGD("package app app privilege DB initialization failed\n");
1568 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_INFO);
1570 _LOGD("package app info DB initialization failed\n");
1573 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO);
1575 _LOGD("package app localized info DB initialization failed\n");
1578 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO);
1580 _LOGD("package app icon localized info DB initialization failed\n");
1583 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO);
1585 _LOGD("package app image info DB initialization failed\n");
1588 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL);
1590 _LOGD("package app app control DB initialization failed\n");
1593 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY);
1595 _LOGD("package app app category DB initialization failed\n");
1598 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA);
1600 _LOGD("package app app category DB initialization failed\n");
1603 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION);
1605 _LOGD("package app app permission DB initialization failed\n");
1608 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED);
1610 _LOGD("package app share allowed DB initialization failed\n");
1613 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST);
1615 _LOGD("package app share request DB initialization failed\n");
1618 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL);
1620 _LOGD("package app data control DB initialization failed\n");
1624 /* TODO: refactor this code */
1625 ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INFO);
1627 _LOGD("package cert info DB initialization failed\n");
1630 ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO);
1632 _LOGD("package cert index info DB initialization failed\n");
1635 ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TRIGGER_DELETE_CERT_INFO);
1637 _LOGD("package cert info DB initialization failed\n");
1640 ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TRIGGER_UPDATE_CERT_INDEX_INFO);
1642 _LOGD("package cert index info DB initialization failed\n");
1646 if( 0 != __parserdb_change_perm(getUserPkgCertDBPathUID(GLOBAL_USER), GLOBAL_USER)) {
1647 _LOGD("Failed to change cert db permission\n");
1649 if( 0 != __parserdb_change_perm(getUserPkgParserDBPathUID(uid), uid)) {
1650 _LOGD("Failed to change parser db permission\n");
1656 static int __parserdb_change_perm(const char *db_file, uid_t uid)
1659 char journal_file[BUFSIZE];
1662 struct passwd *userinfo = NULL;
1663 files[0] = (char *)db_file;
1664 files[1] = journal_file;
1667 if (db_file == NULL)
1670 if (getuid() != OWNER_ROOT) //At this time we should be root to apply this
1672 snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
1673 if (uid == OWNER_ROOT)
1675 userinfo = getpwuid(uid);
1677 _LOGE("FAIL: user %d doesn't exist", uid);
1680 snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
1682 for (i = 0; files[i]; i++) {
1683 ret = chown(files[i], uid, userinfo->pw_gid);
1685 if (strerror_r(errno, buf, sizeof(buf)))
1687 _LOGD("FAIL : chown %s %d.%d : %s", files[i], uid,
1688 userinfo->pw_gid, buf);
1692 ret = chmod(files[i], S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
1694 if (strerror_r(errno, buf, sizeof(buf)))
1696 _LOGD("FAIL : chmod %s 0664 : %s", files[i], buf);
1699 SET_SMACK_LABEL(files[i]);
1704 API int pkgmgr_parser_create_and_initialize_db(uid_t uid)
1708 if (getuid() != OWNER_ROOT) {
1709 _LOGE("Only root user is allowed");
1713 if (access(getUserPkgParserDBPathUID(uid), F_OK) != -1) {
1714 _LOGE("Manifest db for user %d is already exists", uid);
1718 if (access(getUserPkgCertDBPathUID(uid), F_OK) != -1) {
1719 _LOGE("Cert db for user %d is already exists", uid);
1723 ret = pkgmgr_parser_check_and_create_db(uid);
1726 ret = pkgmgr_parser_initialize_db(uid);
1728 pkgmgr_parser_close_db();
1731 pkgmgr_parser_close_db();
1736 API int pkgmgr_parser_check_and_create_db(uid_t uid)
1740 ret = __pkgmgr_parser_create_db(&pkgmgr_parser_db, getUserPkgParserDBPathUID(uid));
1742 _LOGD("Manifest DB creation Failed\n");
1747 ret = __pkgmgr_parser_create_db(&pkgmgr_cert_db, getUserPkgCertDBPathUID(GLOBAL_USER));
1749 _LOGD("Cert DB creation Failed\n");
1755 void pkgmgr_parser_close_db(void)
1757 sqlite3_close(pkgmgr_parser_db);
1758 sqlite3_close(pkgmgr_cert_db);
1762 API int pkgmgr_parser_insert_manifest_info_in_db(manifest_x *mfx)
1764 _LOGD("pkgmgr_parser_insert_manifest_info_in_db\n");
1766 _LOGD("manifest pointer is NULL\n");
1770 ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
1772 _LOGD("Failed to open DB\n");
1775 ret = pkgmgr_parser_initialize_db(GLOBAL_USER);
1778 /*Begin transaction*/
1779 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
1780 if (ret != SQLITE_OK) {
1781 _LOGD("Failed to begin transaction\n");
1785 _LOGD("Transaction Begin\n");
1786 ret = __insert_manifest_info_in_db(mfx, GLOBAL_USER);
1788 _LOGD("Insert into DB failed. Rollback now\n");
1789 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1792 /*Commit transaction*/
1793 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
1794 if (ret != SQLITE_OK) {
1795 _LOGD("Failed to commit transaction. Rollback now\n");
1796 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1800 _LOGD("Transaction Commit and End\n");
1802 pkgmgr_parser_close_db();
1806 API int pkgmgr_parser_insert_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
1808 _LOGD("pkgmgr_parser_insert_manifest_info_in_usr_db\n");
1810 _LOGD("manifest pointer is NULL\n");
1814 ret = pkgmgr_parser_check_and_create_db(uid);
1816 _LOGD("Failed to open DB\n");
1819 ret = pkgmgr_parser_initialize_db(uid);
1822 /*Begin transaction*/
1823 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
1824 if (ret != SQLITE_OK) {
1825 _LOGD("Failed to begin transaction\n");
1829 _LOGD("Transaction Begin\n");
1830 ret = __insert_manifest_info_in_db(mfx, uid);
1832 _LOGD("Insert into DB failed. Rollback now\n");
1833 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1836 /*Commit transaction*/
1837 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
1838 if (ret != SQLITE_OK) {
1839 _LOGD("Failed to commit transaction. Rollback now\n");
1840 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1844 _LOGD("Transaction Commit and End\n");
1846 pkgmgr_parser_close_db();
1850 API int pkgmgr_parser_update_tep_info_in_db(const char *pkgid, const char *tep_path)
1852 return pkgmgr_parser_update_tep_info_in_usr_db(pkgid, tep_path, GLOBAL_USER);
1855 API int pkgmgr_parser_update_tep_info_in_usr_db(const char *pkgid, const char *tep_path, uid_t uid)
1857 if (pkgid == NULL || tep_path == NULL) {
1858 _LOGE("invalid parameter");
1865 ret = pkgmgr_parser_check_and_create_db(uid);
1867 _LOGD("Failed to open DB\n");
1870 ret = pkgmgr_parser_initialize_db(uid);
1874 /*Begin transaction*/
1875 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
1876 if (ret != SQLITE_OK) {
1877 _LOGD("Failed to begin transaction\n");
1881 _LOGD("Transaction Begin\n");
1884 /* Updating TEP info in "package_info" table */
1885 query = sqlite3_mprintf("UPDATE package_info "\
1886 "SET package_tep_name = %Q "\
1887 "WHERE package = %Q", tep_path, pkgid);
1889 ret = __exec_query(query);
1890 sqlite3_free(query);
1891 if (ret != SQLITE_OK) {
1892 ret = PM_PARSER_R_ERROR;
1893 _LOGE("sqlite exec failed to insert entries into package_info!!");
1897 /* Updating TEP info in "package_app_info" table */
1898 query = sqlite3_mprintf("UPDATE package_app_info "\
1899 "SET app_tep_name = %Q "\
1900 "WHERE package = %Q", tep_path, pkgid);
1902 ret = __exec_query(query);
1903 sqlite3_free(query);
1904 if (ret != SQLITE_OK) {
1905 ret = PM_PARSER_R_ERROR;
1906 _LOGE("sqlite exec failed to insert entries into package_app_info!!");
1910 /*Commit transaction*/
1911 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
1912 if (ret != SQLITE_OK) {
1913 _LOGE("Failed to commit transaction, Rollback now\n");
1914 ret = sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1915 if (ret != SQLITE_OK)
1916 _LOGE("Failed to Rollback\n");
1918 ret = PM_PARSER_R_ERROR;
1921 _LOGD("Transaction Commit and End\n");
1922 ret = PM_PARSER_R_OK;
1925 pkgmgr_parser_close_db();
1930 API int pkgmgr_parser_update_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
1933 _LOGD("manifest pointer is NULL\n");
1937 ret = pkgmgr_parser_check_and_create_db(uid);
1939 _LOGD("Failed to open DB\n");
1942 ret = pkgmgr_parser_initialize_db(uid);
1945 /*Preserve guest mode visibility*/
1946 __preserve_guestmode_visibility_value( mfx);
1947 /*Begin transaction*/
1948 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
1949 if (ret != SQLITE_OK) {
1950 _LOGD("Failed to begin transaction\n");
1954 _LOGD("Transaction Begin\n");
1955 ret = __delete_manifest_info_from_db(mfx, uid);
1957 _LOGD("Delete from DB failed. Rollback now\n");
1958 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1961 ret = __insert_manifest_info_in_db(mfx, uid);
1963 _LOGD("Insert into DB failed. Rollback now\n");
1964 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1968 /*Commit transaction*/
1969 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
1970 if (ret != SQLITE_OK) {
1971 _LOGD("Failed to commit transaction. Rollback now\n");
1972 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1976 _LOGD("Transaction Commit and End\n");
1978 pkgmgr_parser_close_db();
1982 API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
1984 return pkgmgr_parser_update_manifest_info_in_usr_db(mfx, GLOBAL_USER);
1987 API int pkgmgr_parser_delete_manifest_info_from_usr_db(manifest_x *mfx, uid_t uid)
1990 _LOGD("manifest pointer is NULL\n");
1994 ret = pkgmgr_parser_check_and_create_db(uid);
1996 _LOGD("Failed to open DB\n");
1999 /*Begin transaction*/
2000 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2001 if (ret != SQLITE_OK) {
2002 _LOGD("Failed to begin transaction\n");
2006 _LOGD("Transaction Begin\n");
2007 ret = __delete_manifest_info_from_db(mfx, uid);
2009 _LOGD("Delete from DB failed. Rollback now\n");
2010 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2013 /*Commit transaction*/
2014 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2015 if (ret != SQLITE_OK) {
2016 _LOGD("Failed to commit transaction, Rollback now\n");
2017 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2021 _LOGD("Transaction Commit and End\n");
2023 pkgmgr_parser_close_db();
2027 API int pkgmgr_parser_delete_manifest_info_from_db(manifest_x *mfx)
2029 return pkgmgr_parser_delete_manifest_info_from_usr_db(mfx, GLOBAL_USER);
2032 API int pkgmgr_parser_update_preload_info_in_db()
2035 ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
2037 _LOGD("Failed to open DB\n");
2040 /*Begin transaction*/
2041 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2042 if (ret != SQLITE_OK) {
2043 _LOGD("Failed to begin transaction\n");
2047 _LOGD("Transaction Begin\n");
2048 ret = __update_preload_condition_in_db();
2050 _LOGD("__update_preload_condition_in_db failed. Rollback now\n");
2051 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2054 /*Commit transaction*/
2055 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2056 if (ret != SQLITE_OK) {
2057 _LOGD("Failed to commit transaction, Rollback now\n");
2058 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2062 _LOGD("Transaction Commit and End\n");
2064 pkgmgr_parser_close_db();
2068 API int pkgmgr_parser_update_preload_info_in_usr_db(uid_t uid)
2071 ret = pkgmgr_parser_check_and_create_db(uid);
2073 _LOGD("Failed to open DB\n");
2076 /*Begin transaction*/
2077 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2078 if (ret != SQLITE_OK) {
2079 _LOGD("Failed to begin transaction\n");
2083 _LOGD("Transaction Begin\n");
2084 ret = __update_preload_condition_in_db();
2086 _LOGD("__update_preload_condition_in_db failed. Rollback now\n");
2087 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2090 /*Commit transaction*/
2091 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2092 if (ret != SQLITE_OK) {
2093 _LOGD("Failed to commit transaction, Rollback now\n");
2094 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2098 _LOGD("Transaction Commit and End\n");
2100 pkgmgr_parser_close_db();