Use thread safe functions and fix return values
[platform/core/appfw/librua.git] / src / rua_util.c
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <unistd.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <stdio.h>
21 #include <grp.h>
22 #include <pwd.h>
23
24 #include <tzplatform_config.h>
25 #include <sys/stat.h>
26 #include <db-util.h>
27
28 #include "rua_util.h"
29
30 #define DBPATH_LEN_MAX  4096
31 #define ERR_BUF_MAX 1024
32
33 char *_rua_util_get_db_path(uid_t uid, char *db_name)
34 {
35         char db_path[DBPATH_LEN_MAX];
36         char *db_path_prefix;
37         int ret;
38
39         tzplatform_set_user(uid);
40         db_path_prefix = tzplatform_getenv(TZ_USER_DB);
41         tzplatform_reset_user();
42
43         snprintf(db_path, sizeof(db_path), "%s/%s", db_path_prefix, db_name);
44         LOGD("db path %s", db_path);
45
46         return strdup(db_path);
47 }
48
49 int _rua_util_open_db(sqlite3 **db, int flags, uid_t uid, char *db_name)
50 {
51         int r;
52         char *db_path = _rua_util_get_db_path(uid, db_name);
53         if (db_path == NULL) {
54                 LOGE("out of memory _rua_util_get_db_path fail");
55                 return -1;
56         }
57
58         r = db_util_open_with_options(db_path, db, flags, NULL);
59         if (r) {
60                 LOGE("db util open error(%d/%d/%d/%s)", r,
61                         sqlite3_errcode(*db),
62                         sqlite3_extended_errcode(*db),
63                         sqlite3_errmsg(*db));
64                 free(db_path);
65                 return -1;
66         }
67
68         free(db_path);
69         return r;
70 }
71
72 int _rua_util_check_uid(uid_t target_uid)
73 {
74         uid_t uid = getuid();
75         if (uid > BASE_UID && uid != target_uid) {
76                 LOGE("Invalid UID : %d, target UID : %d", uid, target_uid);
77                 return -1;
78         }
79         return 0;
80 }