Improve __msc_dir_scan function
[platform/core/multimedia/media-server.git] / src / common / media-common-utils.c
1 /*
2  * Media Server
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Yong Yeon Kim <yy9875.kim@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #include <sys/types.h>
23 #include <fcntl.h>
24 #include <vconf.h>
25 #include <sys/statvfs.h>
26 #include <sys/stat.h>
27
28 #ifdef _SET_VIP_PROCESS
29 #include <sys/prctl.h>
30 #endif
31 #include <system_info.h>
32 #include <device/power.h>
33
34 #ifndef _USE_DEVICED_DBUS
35 #include <usb-device.h>
36 #endif
37
38 #include "media-util.h"
39 #include "media-server-ipc.h"
40 #include "media-common-dbg.h"
41 #include "media-common-system.h"
42 #include "media-common-utils.h"
43
44 int ms_strappend(char *res, const int size, const char *pattern, const char *str1, const char *str2)
45 {
46         int len = 0;
47         int real_size = size - 1;
48
49         if (!res || !pattern || !str1 || !str2)
50                 return MS_MEDIA_ERR_INVALID_PARAMETER;
51
52         if (real_size < (int)(strlen(str1) + strlen(str2)))
53                 return MS_MEDIA_ERR_INVALID_PARAMETER;
54
55         len = snprintf(res, real_size, pattern, str1, str2);
56         if (len < 0)
57                 return MS_MEDIA_ERR_INVALID_PARAMETER;
58
59         res[len] = '\0';
60
61         return MS_MEDIA_ERR_NONE;
62 }
63
64 bool ms_config_get_int(const char *key, int *value)
65 {
66         int err;
67
68         if (!key || !value) {
69                 MS_DBG_ERR("Arguments key or value is NULL");
70                 return false;
71         }
72
73         err = vconf_get_int(key, value);
74         if (err == VCONF_OK)
75                 return true;
76
77         MS_DBG_ERR("Error code: %d", err);
78
79         return false;
80 }
81
82 bool ms_config_set_int(const char *key, int value)
83 {
84         int err;
85
86         if (!key) {
87                 MS_DBG_ERR("Arguments key is NULL");
88                 return false;
89         }
90
91         err = vconf_set_int(key, value);
92         if (err == VCONF_OK)
93                 return true;
94
95         MS_DBG_ERR("Error code: %d", err);
96
97         return false;
98 }
99
100 bool ms_config_get_str(const char *key, char **value)
101 {
102         char *res = NULL;
103
104         if (key == NULL || value == NULL) {
105                 MS_DBG_ERR("Arguments key or value is NULL");
106                 return false;
107         }
108
109         res = vconf_get_str(key);
110         if (MS_STRING_VALID(res)) {
111                 *value = strdup(res);
112                 MS_SAFE_FREE(res);
113                 return true;
114         }
115
116         return false;
117 }
118
119 int ms_get_remain_space(double *free_space)
120 {
121         int ret = MS_MEDIA_ERR_NONE;
122         const char *path = "/opt";
123         struct statvfs s;
124
125         ret = statvfs(path, &s);
126         if (ret != 0) {
127                 MS_DBG_ERR("statvfs failed[%d]", ret);
128                 MS_DBG_STRERROR();
129                 return MS_MEDIA_ERR_INTERNAL;
130         }
131
132         /* f_bsize:unsigned long, f_bavail:fsblkcnt_t(unsigned long) */
133         *free_space = (double)(s.f_bsize * s.f_bavail);
134
135         return MS_MEDIA_ERR_NONE;
136 }
137
138 #ifdef _USE_RECORDED_CONTENT
139 bool ms_is_support_pvr(void)
140 {
141
142         int nSupportPVR = 0;
143         if (system_info_get_value_int(SYSTEM_INFO_KEY_PVR_SUPPORTED, &nSupportPVR) != SYSTEM_INFO_ERROR_NONE) {
144                 MS_DBG_ERR("Get PVR Support failed");
145                 return false;
146         }
147
148         MS_DBG("PVR Support : [%d]", nSupportPVR);
149
150         return (nSupportPVR != 0);
151 }
152 #endif
153
154 #ifdef _USE_SENIOR_MODE
155 bool ms_is_support_senior_mode()
156 {
157         bool bSupportSeniorMode = false;
158
159         if (system_info_get_value_bool(SYSTEM_INFO_KEY_GET_SENIOR_MODE_SUPPORTED, &bSupportSeniorMode) != SYSTEM_INFO_ERROR_NONE) {
160                 MS_DBG_ERR("Get senior mode support failed");
161                 return false;
162         }
163
164         MS_DBG("Senior mode support : [%d]", bSupportSeniorMode);
165
166         return bSupportSeniorMode;
167 }
168 #endif
169
170 int ms_check_file_path(const char *file_path, uid_t uid)
171 {
172         ms_user_storage_type_e storage_type = -1;
173         int ret = MS_MEDIA_ERR_NONE;
174
175         if (!MS_STRING_VALID(file_path)) {
176                 MS_DBG_ERR("Invalid path");
177                 return MS_MEDIA_ERR_INVALID_PARAMETER;
178         }
179
180         ret = ms_user_get_storage_type(uid, file_path, &storage_type);
181         MS_DBG_RETVM_IF(ret != MS_MEDIA_ERR_NONE, MS_MEDIA_ERR_INVALID_PATH, "Invalid path");
182
183         if (!g_file_test(file_path, G_FILE_TEST_IS_REGULAR)) {
184                 MS_DBG_SERR("g_file_test fail [%s]", file_path);
185                 return MS_MEDIA_ERR_INVALID_PATH;
186         }
187
188         return MS_MEDIA_ERR_NONE;
189 }
190
191 int ms_check_ignore_dir(const char *full_path, uid_t uid)
192 {
193         int ret = MS_MEDIA_ERR_NONE;
194         char *dir_path = NULL;
195         char *leaf_path = NULL;
196         char *usr_path = NULL;
197
198         ret = ms_check_file_path(full_path, uid);
199         if (ret != MS_MEDIA_ERR_NONE) {
200                 MS_DBG_ERR("invalid path : %s", full_path);
201                 return MS_MEDIA_ERR_INVALID_PATH;
202         }
203
204         dir_path = g_path_get_dirname(full_path);
205         if (dir_path == NULL || strcmp(dir_path, ".") == 0) {
206                 MS_DBG_ERR("getting directory path is failed : %s", full_path);
207                 MS_SAFE_FREE(dir_path);
208                 return MS_MEDIA_ERR_INVALID_PATH;
209         }
210
211         ret = ms_user_get_internal_root_path(uid, &usr_path);
212         if (ret != MS_MEDIA_ERR_NONE) {
213                 MS_DBG_ERR("ms_user_get_internal_root_path() fail");
214                 MS_SAFE_FREE(dir_path);
215                 return MS_MEDIA_ERR_INTERNAL;
216         }
217
218         while (1) {
219                 if (ms_check_scan_ignore(dir_path, uid) != MS_MEDIA_ERR_NONE) {
220                         ret = MS_MEDIA_ERR_INVALID_PATH;
221                         break;
222                 }
223
224 #ifdef _USE_SENIOR_MODE
225                 if (ms_is_support_senior_mode()) {
226                         if (strcmp(dir_path, MEDIA_ROOT_PATH_SENIOR_MODE) == 0)
227                                 break;
228                 }
229 #endif
230                 if (strcmp(dir_path, usr_path) == 0)
231                         break;
232                 else if (MS_STRING_VALID(MEDIA_ROOT_PATH_SDCARD) && (strncmp(dir_path, MEDIA_ROOT_PATH_SDCARD, strlen(MEDIA_ROOT_PATH_SDCARD)) == 0))
233                         break;
234                 else if (MS_STRING_VALID(MEDIA_ROOT_PATH_USB) && (strncmp(dir_path, MEDIA_ROOT_PATH_USB, strlen(MEDIA_ROOT_PATH_USB)) == 0))
235                         break;
236                 else if (MS_STRING_VALID(MEDIA_ROOT_PATH_DISC) && (strncmp(dir_path, MEDIA_ROOT_PATH_DISC, strlen(MEDIA_ROOT_PATH_DISC)) == 0))
237                         break;
238
239                 leaf_path = strrchr(dir_path, '/');
240                 if (leaf_path != NULL) {
241                                 int seek_len = leaf_path -dir_path;
242                                 dir_path[seek_len] = '\0';
243                 } else {
244                         MS_DBG_ERR("Fail to find leaf path");
245                         ret = MS_MEDIA_ERR_INVALID_PATH;
246                         break;
247                 }
248         }
249
250         MS_SAFE_FREE(dir_path);
251         MS_SAFE_FREE(usr_path);
252
253         return ret;
254 }
255
256 void __ms_trim_path(const char *input_path, char **output_path)
257 {
258         char buf[4096] = {0,};
259         char tmp[4096] = {0,};
260         char *pos = NULL;
261
262         memset(buf, 0, sizeof(buf));
263         SAFE_STRLCPY(buf, input_path, sizeof(buf));
264
265         while ((pos = strstr(buf, "//")) != NULL) {
266                 memset(tmp, 0, sizeof(tmp));
267                 SAFE_STRLCPY(tmp, buf, pos - buf + 1);
268                 SAFE_STRLCAT(tmp, pos + 1, sizeof(tmp));
269
270                 memset(buf, 0, sizeof(buf));
271                 SAFE_STRLCPY(buf, tmp, sizeof(buf));
272         }
273
274         if (g_str_has_suffix(buf, "/"))
275                 *output_path = g_strndup(buf, strlen(buf) - 1);
276         else
277                 *output_path = g_strdup(buf);
278 }
279
280 int ms_check_scan_ignore(char * path, uid_t uid)
281 {
282         int ret = MS_MEDIA_ERR_NONE;
283         const char *ignore_file = ".scan_ignore";
284         char *tmp_path = NULL;
285         char *org_path = NULL;
286         char ignore_path[MS_FILE_PATH_LEN_MAX] = {0, };
287
288 #ifndef _USE_TVPD_MODE
289         char replace[MS_FILE_PATH_LEN_MAX] = {0, };
290         char *mediashared = NULL;
291 #endif
292
293         /* Check for symbolic link */
294         tmp_path = realpath(path, NULL);
295         /* Get trimmed path */
296         __ms_trim_path(path, &org_path);
297
298 #ifdef _USE_TVPD_MODE
299         if (g_strcmp0(tmp_path, org_path) != 0) {
300                 MS_SAFE_FREE(tmp_path);
301                 MS_SAFE_FREE(org_path);
302                 MS_DBG_ERR("symbolic link(directory)");
303                 return MS_MEDIA_ERR_INVALID_PATH;
304         }
305 #else
306         if (g_str_has_prefix(tmp_path, MEDIA_SHARE_PATH)) {
307                 ms_user_get_mediashared_path(uid, &mediashared);
308                 snprintf(replace, MS_FILE_PATH_LEN_MAX, "%s%s", mediashared, tmp_path + strlen(MEDIA_SHARE_PATH));
309                 MS_SAFE_FREE(mediashared);
310                 if (g_strcmp0(replace, org_path) != 0) {
311                         MS_SAFE_FREE(tmp_path);
312                         MS_SAFE_FREE(org_path);
313                         MS_DBG_ERR("symbolic link(directory)");
314                         return MS_MEDIA_ERR_INVALID_PATH;
315                 }
316         } else {
317                 if (g_strcmp0(tmp_path, org_path) != 0) {
318                         MS_SAFE_FREE(tmp_path);
319                         MS_SAFE_FREE(org_path);
320                         MS_DBG_ERR("symbolic link(directory)");
321                         return MS_MEDIA_ERR_INVALID_PATH;
322                 }
323         }
324 #endif
325         MS_SAFE_FREE(tmp_path);
326         MS_SAFE_FREE(org_path);
327
328         if (g_file_test(path, G_FILE_TEST_IS_DIR)) {
329                 memset(ignore_path, 0, sizeof(ignore_path));
330                 snprintf(ignore_path, sizeof(ignore_path), "%s/%s", path, ignore_file);
331
332                 if (g_file_test(ignore_path, G_FILE_TEST_EXISTS)) {
333                         MS_DBG_WARN("scan ignore file exist [%s]", ignore_path);
334                         return MS_MEDIA_ERR_INVALID_PATH;
335                 }
336         } else {
337                 MS_DBG_ERR("g_file_test fails[%s]", path);
338                 ret = MS_MEDIA_ERR_INVALID_PATH;
339
340                 if (!MS_STRING_VALID(MEDIA_ROOT_PATH_USB)) {
341                         MS_DBG_ERR("Fail to get USB path");
342                         return ret;
343                 }
344
345                 if (strstr(path, MEDIA_ROOT_PATH_USB) != NULL) {
346                         /*if the directory does not exist, check the device is unmounted*/
347                         if (!ms_storage_mount_status(path)) {
348                                 MS_DBG_ERR("Device is unmounted[%s]", path);
349                                 return MS_MEDIA_ERR_USB_UNMOUNTED;
350                         }
351                 }
352         }
353
354         return ret;
355 }
356
357 bool ms_storage_mount_status(const char* start_path)
358 {
359         bool ret = false;
360 #ifndef _USE_DEVICED_DBUS
361         int count = 0;
362         int err = 0;
363         usb_device_list_h list;
364         usb_device_h device;
365         char *mount_path = NULL;
366
367         char *storage_path = NULL;
368         char *remain_path = NULL;
369         int remain_len = 0;
370
371         remain_path = strstr(start_path+strlen(MEDIA_ROOT_PATH_USB) +1, "/");
372         if (remain_path != NULL)
373                 remain_len = strlen(remain_path);
374
375         storage_path = strndup(start_path, strlen(start_path) - remain_len);
376
377         MS_DBG_WARN("storage_path [%s]", storage_path);
378
379         err = usb_device_get_device_list(USB_MASS_STORAGE, &list);
380         if (err == 0) {
381                 count = usb_device_list_get_count(list);
382                 if (count > 0) {
383                         err = usb_device_list_get_first(list, &device);
384                         if (err != USB_ERROR_LIST_FAILED_TO_GET && device != NULL) {
385                                 mount_path = usb_device_get_mountpath(device);
386                                 if (mount_path != NULL) {
387                                         MS_DBG_WARN("mount_path [%s]", mount_path);
388                                         if (strlen(mount_path) == strlen(storage_path)) {
389                                                 if (strncmp(mount_path, storage_path, strlen(mount_path)) == 0) {
390                                                         MS_DBG_WARN("start path is mounted [%s]", start_path);
391                                                         ret = true;
392                                                 }
393                                         }
394                                 }
395                         }
396
397                         if (ret != true) {
398                                 while (usb_device_list_get_next(list, &device) == 0) {
399                                         if (device != NULL) {
400                                                 mount_path = usb_device_get_mountpath(device);
401                                                 if (mount_path != NULL) {
402                                                         MS_DBG_WARN("mount_path [%s]", mount_path);
403                                                         if (strlen(mount_path) == strlen(storage_path)) {
404                                                                 if (strncmp(mount_path, storage_path, strlen(mount_path)) == 0) {
405                                                                         MS_DBG_WARN("start path is mounted [%s]", start_path);
406                                                                         ret = true;
407                                                                         break;
408                                                                 }
409                                                         }
410                                                 }
411                                         }
412                                 }
413                         }
414                 }
415
416                 usb_device_free_device_list(list);
417         } else {
418                 MS_DBG_ERR("usb_device_get_device_list falied [%d]", err);
419         }
420
421         MS_SAFE_FREE(storage_path);
422 #endif
423         return ret;
424 }
425
426 int ms_set_db_status(ms_db_status_type_t status, ms_user_storage_type_e storage_type)
427 {
428         int res = MS_MEDIA_ERR_NONE;
429         int err = 0;
430
431         if (status == MS_DB_UPDATING) {
432                 if (!ms_config_set_int(VCONFKEY_FILEMANAGER_DB_STATUS, VCONFKEY_FILEMANAGER_DB_UPDATING)) {
433                         res = MS_MEDIA_ERR_VCONF_SET_FAIL;
434                         MS_DBG_ERR("ms_config_set_int failed");
435                 }
436
437                 if (storage_type == MS_USER_STORAGE_EXTERNAL) {
438                         if (!ms_config_set_int(VCONFKEY_FILEMANAGER_MMC_STATUS, VCONFKEY_FILEMANAGER_MMC_LOADING)) {
439                                 res = MS_MEDIA_ERR_VCONF_SET_FAIL;
440                                 MS_DBG_ERR("ms_config_set_int failed");
441                         }
442                 }
443         } else {
444                 if (!ms_config_set_int(VCONFKEY_FILEMANAGER_DB_STATUS, VCONFKEY_FILEMANAGER_DB_UPDATED)) {
445                         res = MS_MEDIA_ERR_VCONF_SET_FAIL;
446                         MS_DBG_ERR("ms_config_set_int failed");
447                 }
448
449                 if (storage_type == MS_USER_STORAGE_EXTERNAL) {
450                         if (!ms_config_set_int(VCONFKEY_FILEMANAGER_MMC_STATUS, VCONFKEY_FILEMANAGER_MMC_LOADED)) {
451                                 res = MS_MEDIA_ERR_VCONF_SET_FAIL;
452                                 MS_DBG_ERR("ms_config_set_int failed");
453                         }
454                 }
455         }
456
457         err = ms_set_power_mode(status);
458         if (err != MS_MEDIA_ERR_NONE) {
459                 MS_DBG_ERR("ms_set_power_mode fail");
460                 res = err;
461         }
462
463         return res;
464 }
465
466 int ms_set_power_mode(ms_db_status_type_t status)
467 {
468         int res = MS_MEDIA_ERR_NONE;
469         int err;
470
471         switch (status) {
472         case MS_DB_UPDATING:
473                 err = device_power_request_lock(POWER_LOCK_CPU, 0);
474                 if (err != 0)
475                         res = MS_MEDIA_ERR_INTERNAL;
476                 break;
477         case MS_DB_UPDATED:
478                 err = device_power_release_lock(POWER_LOCK_CPU);
479                 if (err != 0)
480                         res = MS_MEDIA_ERR_INTERNAL;
481                 break;
482         default:
483                 MS_DBG_ERR("Unacceptable type : %d", status);
484                 break;
485         }
486
487         return res;
488 }
489
490 void ms_trim_dir_path(char *dir_path)
491 {
492         /* need implementation */
493         /* if dir_path is not NULL terminated, this function will occure crash */
494         int len = strlen(dir_path);
495
496         if (dir_path[len -1] == '/')
497                 dir_path[len -1] = '\0';
498 }
499
500 int ms_check_size_mediadb(uid_t uid, double *db_size)
501 {
502         int ret = MS_MEDIA_ERR_NONE;
503         char *db_path = NULL;
504         struct stat buf;
505
506         ret = ms_user_get_media_db_path(uid, &db_path);
507
508         if (stat(db_path, &buf) == 0) {
509                 *db_size = buf.st_size;
510         } else {
511                 MS_DBG_STRERROR("stat failed");
512                 ret = MS_MEDIA_ERR_INTERNAL;
513         }
514
515         MS_SAFE_FREE(db_path);
516
517         return ret;
518 }
519
520 #ifdef _SET_VIP_PROCESS
521 #define PROC_OOM_SCORE_ADJ_PATH         "/proc/%d/oom_score_adj"
522 #define VIP_OOM_SCORE_ADJ                       (-1000)
523 #define PROC_NAME_MAX 1024
524 #define PROC_BUF_MAX 64
525
526 static int ms_get_cmdline_from_proc(pid_t pid, char *cmdline)
527 {
528         char buf[PROC_BUF_MAX];
529         char cmdline_buf[PROC_NAME_MAX];
530         char *filename;
531         FILE *fp;
532
533         snprintf(buf, sizeof(buf), "/proc/%d/cmdline", pid);
534         fp = fopen(buf, "r");
535         if (fp == NULL)
536                 return MS_MEDIA_ERR_INTERNAL;
537
538         if (fgets(cmdline_buf, PROC_NAME_MAX-1, fp) == NULL) {
539                 fclose(fp);
540                 return MS_MEDIA_ERR_INTERNAL;
541         }
542         fclose(fp);
543
544         filename = strrchr(cmdline_buf, '/');
545         if (filename == NULL)
546                 filename = cmdline_buf;
547         else
548                 filename = filename + 1;
549
550         SAFE_STRLCPY(cmdline, filename, PROC_NAME_MAX);
551
552         return MS_MEDIA_ERR_NONE;
553 }
554
555 int ms_set_vip_process(void)
556 {
557         char buf[100] = {0};
558         int id = 0;
559         static pid_t pid = 0;
560         static char process_name[PROC_NAME_MAX] = {0};
561         static char *appid = NULL;
562
563         /* Get Pid */
564         pid = getpid();
565         if (ms_get_cmdline_from_proc(pid, process_name)) {
566                 MS_DBG_ERR("%s: Read process name failed pid[%d]", __func__, pid);
567                 return MS_MEDIA_ERR_INTERNAL;
568         }
569         appid = process_name;
570
571         MS_DBG("Process name[%s]:Pid[%d]", appid, pid);
572
573         if (prctl(PR_GET_DUMPABLE) == 0)
574                 prctl(PR_SET_DUMPABLE, 1);
575
576         snprintf(buf, sizeof(buf), PROC_OOM_SCORE_ADJ_PATH, pid);
577         id = open(buf, O_WRONLY, 0777);
578         if (id < 0) {
579                 MS_DBG_ERR("fopen %s failed errno:%d", buf, errno);
580                 return MS_MEDIA_ERR_INTERNAL;
581         }
582         snprintf(buf, sizeof(buf), "%d", VIP_OOM_SCORE_ADJ);
583         if (write(id, buf, strlen(buf)) < 0) {
584                 MS_DBG_ERR("write() failed errno=%d", errno);
585                 close(id);
586                 return MS_MEDIA_ERR_INTERNAL;
587         }
588         close(id);
589         return MS_MEDIA_ERR_NONE;
590 }
591 #endif