Rename some macros
[platform/core/api/media-content.git] / src / media_util_private.c
1 /*
2 * Copyright (c) 2011 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
18 #include <dirent.h>
19 #include <fcntl.h>
20 #include <media_info_private.h>
21 #include <storage.h>
22 #include <system_info.h>
23 #include <sys/stat.h>
24
25 #ifdef _USE_SENIOR_MODE
26 #include <media_util_private.h>
27 #endif
28
29 static int MEDIA_CONTENT_OTHER_SUPPORT = -1;
30
31 bool _media_util_check_support_media_type(const char *path)
32 {
33         int ret = SYSTEM_INFO_ERROR_NONE;
34         int media_type = -1;
35         bool is_supported = false;
36
37         content_retvm_if(!STRING_VALID(path), false, "path is empty");
38
39         if (MEDIA_CONTENT_OTHER_SUPPORT == -1) {
40                 ret = system_info_get_platform_bool("http://tizen.org/feature/content.scanning.others", &is_supported);
41                 if (ret != SYSTEM_INFO_ERROR_NONE) {
42                         content_debug("SYSTEM_INFO_ERROR: content.scanning.others [%d]", ret);
43                         return false;
44                 }
45
46                 MEDIA_CONTENT_OTHER_SUPPORT = is_supported;
47         }
48
49         /* If not, check media type */
50         if (!MEDIA_CONTENT_OTHER_SUPPORT) {
51                 ret = media_svc_get_media_type(path, &media_type);
52                 content_retvm_if(ret != MS_MEDIA_ERR_NONE, false, "Failed to get media type");
53
54                 if (media_type == MEDIA_CONTENT_TYPE_OTHERS)
55                         return false;
56         }
57
58         return true;
59 }
60
61 int _media_util_check_file_exist(const char *path)
62 {
63         int exist;
64
65         /* check the file exits actually */
66         exist = open(path, O_RDONLY);
67         if (exist < 0) {
68                 if (errno == EACCES || errno == EPERM) {
69                         content_stderror("open file fail");
70                         content_sec_debug("path [%s]", path);
71                         return MEDIA_CONTENT_ERROR_PERMISSION_DENIED;
72                 } else {
73                         content_stderror("open file fail");
74                         content_sec_debug("path [%s]", path);
75                         return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
76                 }
77         }
78
79         close(exist);
80
81         return MEDIA_CONTENT_ERROR_NONE;
82 }
83
84 void _media_util_trim_path(const char *input_path, char **output_path)
85 {
86         gchar **name_list = NULL;
87         gchar *tmp_path = NULL;
88
89         if (!STRING_VALID(input_path) || output_path == NULL)
90                 return;
91
92         /* Workflow example
93                 Input : /a/b//c/
94                 After g_strsplit() : {'','a','b','','c',''}
95                 After g_build_pathv() : a/b/c
96                 After g_strdup_printf() : /a/b/c
97         */
98         name_list = g_strsplit(input_path, "/", -1);
99         if (!name_list)
100                 return;
101
102         tmp_path = g_build_pathv(G_DIR_SEPARATOR_S, name_list);
103         g_strfreev(name_list);
104         if (!tmp_path)
105                 return;
106
107         /* g_build_pathv does not add root '/' */
108         *output_path = g_strdup_printf("/%s", tmp_path);
109         g_free(tmp_path);
110 }
111
112
113 int _media_util_get_file_time(const char *path)
114 {
115         struct stat statbuf;
116         int ret = 0;
117
118         memset(&statbuf, 0, sizeof(struct stat));
119         ret = stat(path, &statbuf);
120         if (ret == -1) {
121                 content_stderror("stat failed");
122                 return ret;
123         }
124
125         return statbuf.st_mtime;
126 }
127
128 int _media_util_check_ignore_file(const char *path, bool *ignore)
129 {
130         content_retvm_if(!STRING_VALID(path), MEDIA_CONTENT_ERROR_INVALID_PARAMETER, "invalid path");
131
132         *ignore = FALSE;
133         char *tmp_path = NULL;
134         char *org_path = NULL;
135
136 #ifndef _USE_TVPD_MODE
137         char replace[MAX_PATH_LEN] = {0, };
138 #endif
139
140         /* Check is exist (It may be the path to the deleted file) */
141         if (!g_file_test(path, G_FILE_TEST_EXISTS)) {
142                 content_sec_debug("removed path[%s]", path);
143                 return MEDIA_CONTENT_ERROR_NONE;
144         }
145
146         /* Check symbolic link file */
147         if (g_file_test(path, G_FILE_TEST_IS_SYMLINK)) {
148                 *ignore = TRUE;
149                 content_error("symbolic link(file)");
150                 content_sec_debug("path : %s", path);
151                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
152         }
153
154         /* Check hidden path */
155         if (strstr(path, "/.") != NULL) {
156                 *ignore = TRUE;
157                 content_error("hidden path");
158                 content_sec_debug("path : %s", path);
159                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
160         }
161
162         /* Check symbolic directory */
163         tmp_path = realpath(path, NULL);
164         /* Get trimmed path */
165         _media_util_trim_path(path, &org_path);
166
167 #ifdef _USE_TVPD_MODE
168         if (g_strcmp0(tmp_path, org_path) != 0) {
169                 *ignore = TRUE;
170                 content_error("symbolic link(directory)");
171                 content_sec_debug("path[%s] real[%s]", org_path, tmp_path);
172                 SAFE_FREE(tmp_path);
173                 SAFE_FREE(org_path);
174                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
175         }
176 #else
177         if (g_str_has_prefix(tmp_path, MEDIA_SHARE_PATH)) {
178                 /* If shared dirctory, it should be change path to TZ_USER_SHARE from realpath */
179                 snprintf(replace, MAX_PATH_LEN, "%s%s", tzplatform_getenv(TZ_USER_MEDIASHARED), tmp_path + strlen(MEDIA_SHARE_PATH));
180                 if (g_strcmp0(replace, org_path) != 0) {
181                         *ignore = TRUE;
182                         content_error("symbolic link(directory)");
183                         content_sec_debug("path[%s] real[%s]", org_path, tmp_path);
184                         SAFE_FREE(tmp_path);
185                         SAFE_FREE(org_path);
186                         return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
187                 }
188         } else {
189                 if (g_strcmp0(tmp_path, org_path) != 0) {
190                         *ignore = TRUE;
191                         content_error("symbolic link(directory)");
192                         content_sec_debug("path[%s] real[%s]", org_path, tmp_path);
193                         SAFE_FREE(tmp_path);
194                         SAFE_FREE(org_path);
195                         return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
196                 }
197         }
198 #endif
199         SAFE_FREE(tmp_path);
200         SAFE_FREE(org_path);
201
202         return MEDIA_CONTENT_ERROR_NONE;
203 }
204
205 static bool __is_scan_ignore_exist(const char *path)
206 {
207         const char *scan_ignore = ".scan_ignore";
208         char *ignore_path = NULL;
209         gboolean result = FALSE;
210
211         if (!STRING_VALID(path))
212                 return false;
213
214         ignore_path = g_build_path(G_DIR_SEPARATOR_S, path, scan_ignore, NULL);
215         result = g_file_test(ignore_path, G_FILE_TEST_EXISTS);
216
217         if (result)
218                 content_error("scan ignore file exist [%s]", ignore_path);
219
220         SAFE_FREE(ignore_path);
221
222         return (bool)result;
223 }
224
225 int _media_util_check_ignore_dir(const char *dir_path, bool *ignore)
226 {
227         int ret = MEDIA_CONTENT_ERROR_NONE;
228         ms_user_storage_type_e storage_type = MS_USER_STORAGE_INTERNAL;
229
230         content_retvm_if(!STRING_VALID(dir_path), MEDIA_CONTENT_ERROR_INVALID_PARAMETER, "invalid dir_path");
231         content_sec_debug("dir_path : %s", dir_path);
232
233         *ignore = false;
234         /*1. Check Hidden Directory*/
235         if (strstr(dir_path, "/.") != NULL) {
236                 *ignore = true;
237                 content_error("hidden path");
238                 return MEDIA_CONTENT_ERROR_NONE;
239         }
240
241         /*2. Check Scan Ignore Directory*/
242         ret = ms_user_get_storage_type(_content_get_uid(), dir_path, &storage_type);
243         if (ret != MS_MEDIA_ERR_NONE) {
244                 content_error("ms_user_get_storage_type failed : %d", ret);
245                 return _content_error_capi(ret);
246         }
247
248         char *leaf_path = NULL;
249         char search_path[MAX_PATH_LEN] = {0, };
250
251         memset(search_path, 0, sizeof(search_path));
252         SAFE_STRLCPY(search_path, dir_path, sizeof(search_path));
253
254         while (STRING_VALID(search_path)) {
255                 if ((*ignore = __is_scan_ignore_exist(search_path)))
256                         break;
257
258                 leaf_path = strrchr(search_path, '/');
259                 if (!leaf_path)
260                         break;
261
262                 search_path[leaf_path - search_path] = '\0';
263         }
264
265         return MEDIA_CONTENT_ERROR_NONE;
266 }
267
268 int _media_content_check_dir(const char *path)
269 {
270         DIR *dp = NULL;
271         char *real = NULL;
272         char *origin = NULL;
273 #ifndef _USE_TVPD_MODE
274         char result_path[MAX_PATH_LEN] = {0, };
275 #endif
276         dp = opendir(path);
277         if (dp == NULL) {
278                 if (errno == EACCES || errno == EPERM) {
279                         content_stderror("open dir fail");
280                         content_sec_error("path [%s]", path);
281                         return MEDIA_CONTENT_ERROR_PERMISSION_DENIED;
282                 } else {
283                         content_stderror("open dir fail");
284                         content_sec_error("path [%s]", path);
285                         return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
286                 }
287         }
288
289         closedir(dp);
290
291         /* Check symbolic link directory */
292         real = realpath(path, NULL);
293         /* Get trimmed path */
294         _media_util_trim_path(path, &origin);
295
296 #ifdef _USE_TVPD_MODE
297         if (g_strcmp0(real, origin) != 0) {
298                 content_error("symbolic link(directory)");
299                 content_sec_debug("path[%s] real[%s]", origin, real);
300                 SAFE_FREE(real);
301                 SAFE_FREE(origin);
302                 return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
303         }
304 #else
305         if (g_str_has_prefix(real, MEDIA_SHARE_PATH)) {
306                 /* If shared dirctory, it should be change path to TZ_USER_SHARE from realpath */
307                 snprintf(result_path, MAX_PATH_LEN, "%s%s", tzplatform_getenv(TZ_USER_MEDIASHARED), real + strlen(MEDIA_SHARE_PATH));
308                 if (g_strcmp0(result_path, origin) != 0) {
309                         content_error("symbolic link(directory)");
310                         content_sec_debug("path[%s] real[%s]", origin, real);
311                         SAFE_FREE(real);
312                         SAFE_FREE(origin);
313                         return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
314                 }
315         } else {
316                 if (g_strcmp0(real, origin) != 0) {
317                         content_error("symbolic link(directory)");
318                         content_sec_debug("path[%s] real[%s]", origin, real);
319                         SAFE_FREE(real);
320                         SAFE_FREE(origin);
321                         return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
322                 }
323         }
324 #endif
325
326         SAFE_FREE(real);
327         SAFE_FREE(origin);
328
329         return MEDIA_CONTENT_ERROR_NONE;
330 }
331
332
333 /* FIXME : If there are no issue reports related to this, it will be deleted in tizen 6.5 or after. */
334 char * _media_content_replace_path_in_condition(const char *condition)
335 {
336         return g_strdup(condition);
337 #if 0
338         char **split_list = NULL;
339         char *result = NULL;
340
341         if (!STRING_VALID(MEDIA_ROOT_PATH_INTERNAL_OLD) || !STRING_VALID(MEDIA_ROOT_PATH_INTERNAL))
342                 return NULL;
343
344         content_sec_debug("Old condition[%s]", condition);
345
346         split_list = g_strsplit(condition, MEDIA_ROOT_PATH_INTERNAL_OLD, -1);
347         if (!split_list)
348                 return NULL;
349
350         result = g_strjoinv(MEDIA_ROOT_PATH_INTERNAL, split_list);
351         g_strfreev(split_list);
352
353         return result;
354 #endif
355 }
356
357 /* FIXME : If there are no issue reports related to this, it will be deleted in Tizen 6.5 or after. */
358 int _media_content_replace_path(const char *path, char *replace_path)
359 {
360         content_retvm_if(!STRING_VALID(path), MEDIA_CONTENT_ERROR_INVALID_PARAMETER, "Invalid path");
361
362         snprintf(replace_path, MAX_PATH_LEN, "%s", path);
363 #if 0
364         if (strncmp(path, MEDIA_ROOT_PATH_INTERNAL_OLD, strlen(MEDIA_ROOT_PATH_INTERNAL_OLD)) == 0) {
365                 content_sec_debug("Old path[%s]", path);
366                 snprintf(replace_path, MAX_PATH_LEN, "%s%s", MEDIA_ROOT_PATH_INTERNAL, path + strlen(MEDIA_ROOT_PATH_INTERNAL_OLD));
367         } else {
368                 snprintf(replace_path, MAX_PATH_LEN, "%s", path);
369         }
370 #endif
371
372         return MEDIA_CONTENT_ERROR_NONE;
373 }
374
375 #ifdef _USE_SENIOR_MODE
376 bool _media_content_is_support_senior_mode()
377 {
378         bool bSupportSeniorMode = false;
379
380         if (system_info_get_value_bool(SYSTEM_INFO_KEY_GET_SENIOR_MODE_SUPPORTED, &bSupportSeniorMode) != SYSTEM_INFO_ERROR_NONE) {
381                 content_debug("Get senior mode support failed");
382                 return false;
383         }
384         /* content_debug("Senior mode Support : [%d]", bSupportSeniorMode); */
385         return bSupportSeniorMode;
386 }
387 #endif
388