Remove out of memory related code by using glib APIs
[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 = g_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(void)
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_PARAMETER, "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_PARAMETER;
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_PARAMETER;
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                 g_free(dir_path);
208                 return MS_MEDIA_ERR_INVALID_PARAMETER;
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                 g_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_PARAMETER;
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_PARAMETER;
246                         break;
247                 }
248         }
249
250         g_free(dir_path);
251         g_free(usr_path);
252
253         return ret;
254 }
255
256 static 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         SAFE_STRLCPY(buf, input_path, sizeof(buf));
263
264         while ((pos = strstr(buf, "//")) != NULL) {
265                 memset(tmp, 0, sizeof(tmp));
266                 SAFE_STRLCPY(tmp, buf, pos - buf + 1);
267                 SAFE_STRLCAT(tmp, pos + 1, sizeof(tmp));
268
269                 memset(buf, 0, sizeof(buf));
270                 SAFE_STRLCPY(buf, tmp, sizeof(buf));
271         }
272
273         if (g_str_has_suffix(buf, "/"))
274                 *output_path = g_strndup(buf, strlen(buf) - 1);
275         else
276                 *output_path = g_strdup(buf);
277 }
278
279 int ms_check_scan_ignore(char * path, uid_t uid)
280 {
281         int ret = MS_MEDIA_ERR_NONE;
282         const char *ignore_file = ".scan_ignore";
283         char *tmp_path = NULL;
284         char *org_path = NULL;
285         char ignore_path[MS_FILE_PATH_LEN_MAX] = {0, };
286
287 #ifndef _USE_TVPD_MODE
288         char replace[MS_FILE_PATH_LEN_MAX] = {0, };
289         char *mediashared = NULL;
290 #endif
291
292         /* Check for symbolic link */
293         tmp_path = realpath(path, NULL);
294         /* Get trimmed path */
295         __ms_trim_path(path, &org_path);
296
297 #ifdef _USE_TVPD_MODE
298         if (g_strcmp0(tmp_path, org_path) != 0) {
299                 MS_SAFE_FREE(tmp_path);
300                 g_free(org_path);
301                 MS_DBG_ERR("symbolic link(directory)");
302                 return MS_MEDIA_ERR_INVALID_PARAMETER;
303         }
304 #else
305         if (g_str_has_prefix(tmp_path, MEDIA_SHARE_PATH)) {
306                 ms_user_get_mediashared_path(uid, &mediashared);
307                 snprintf(replace, MS_FILE_PATH_LEN_MAX, "%s%s", mediashared, tmp_path + strlen(MEDIA_SHARE_PATH));
308                 MS_SAFE_FREE(mediashared);
309                 if (g_strcmp0(replace, org_path) != 0) {
310                         MS_SAFE_FREE(tmp_path);
311                         g_free(org_path);
312                         MS_DBG_ERR("symbolic link(directory)");
313                         return MS_MEDIA_ERR_INVALID_PARAMETER;
314                 }
315         } else {
316                 if (g_strcmp0(tmp_path, org_path) != 0) {
317                         MS_SAFE_FREE(tmp_path);
318                         g_free(org_path);
319                         MS_DBG_ERR("symbolic link(directory)");
320                         return MS_MEDIA_ERR_INVALID_PARAMETER;
321                 }
322         }
323 #endif
324         MS_SAFE_FREE(tmp_path);
325         g_free(org_path);
326
327         if (g_file_test(path, G_FILE_TEST_IS_DIR)) {
328                 snprintf(ignore_path, sizeof(ignore_path), "%s/%s", path, ignore_file);
329
330                 if (g_file_test(ignore_path, G_FILE_TEST_EXISTS)) {
331                         MS_DBG_WARN("scan ignore file exist [%s]", ignore_path);
332                         return MS_MEDIA_ERR_INVALID_PARAMETER;
333                 }
334         } else {
335                 MS_DBG_ERR("g_file_test fails[%s]", path);
336                 ret = MS_MEDIA_ERR_INVALID_PARAMETER;
337
338                 if (!MS_STRING_VALID(MEDIA_ROOT_PATH_USB)) {
339                         MS_DBG_ERR("Fail to get USB path");
340                         return ret;
341                 }
342
343                 if (strstr(path, MEDIA_ROOT_PATH_USB) != NULL) {
344                         /*if the directory does not exist, check the device is unmounted*/
345                         if (!ms_storage_mount_status(path)) {
346                                 MS_DBG_ERR("Device is unmounted[%s]", path);
347                                 return MS_MEDIA_ERR_USB_UNMOUNTED;
348                         }
349                 }
350         }
351
352         return ret;
353 }
354
355 bool ms_storage_mount_status(const char* start_path)
356 {
357         bool ret = false;
358 #ifndef _USE_DEVICED_DBUS
359         int count = 0;
360         int err = 0;
361         usb_device_list_h list;
362         usb_device_h device;
363         char *mount_path = NULL;
364
365         char *storage_path = NULL;
366         char *remain_path = NULL;
367         int remain_len = 0;
368
369         remain_path = strstr(start_path+strlen(MEDIA_ROOT_PATH_USB) +1, "/");
370         if (remain_path != NULL)
371                 remain_len = strlen(remain_path);
372
373         storage_path = g_strndup(start_path, strlen(start_path) - remain_len);
374
375         MS_DBG_SWARN("storage_path [%s]", storage_path);
376
377         err = usb_device_get_device_list(USB_MASS_STORAGE, &list);
378         if (err == 0) {
379                 count = usb_device_list_get_count(list);
380                 if (count > 0) {
381                         err = usb_device_list_get_first(list, &device);
382                         if (err != USB_ERROR_LIST_FAILED_TO_GET && device != NULL) {
383                                 mount_path = usb_device_get_mountpath(device);
384                                 if (mount_path != NULL) {
385                                         MS_DBG_SWARN("mount_path [%s]", mount_path);
386                                         if (strlen(mount_path) == strlen(storage_path)) {
387                                                 if (strncmp(mount_path, storage_path, strlen(mount_path)) == 0) {
388                                                         MS_DBG_SWARN("start path is mounted [%s]", start_path);
389                                                         ret = true;
390                                                 }
391                                         }
392                                 }
393                         }
394
395                         if (ret != true) {
396                                 while (usb_device_list_get_next(list, &device) == 0) {
397                                         if (device != NULL) {
398                                                 mount_path = usb_device_get_mountpath(device);
399                                                 if (mount_path != NULL) {
400                                                         MS_DBG_SWARN("mount_path [%s]", mount_path);
401                                                         if (strlen(mount_path) == strlen(storage_path)) {
402                                                                 if (strncmp(mount_path, storage_path, strlen(mount_path)) == 0) {
403                                                                         MS_DBG_SWARN("start path is mounted [%s]", start_path);
404                                                                         ret = true;
405                                                                         break;
406                                                                 }
407                                                         }
408                                                 }
409                                         }
410                                 }
411                         }
412                 }
413
414                 usb_device_free_device_list(list);
415         } else {
416                 MS_DBG_ERR("usb_device_get_device_list falied [%d]", err);
417         }
418
419         g_free(storage_path);
420 #endif
421         return ret;
422 }
423
424 int ms_set_db_status(ms_db_status_type_t status, ms_user_storage_type_e storage_type)
425 {
426         int ret = MS_MEDIA_ERR_NONE;
427
428         if (status == MS_DB_UPDATING) {
429                 if (!ms_config_set_int(VCONFKEY_FILEMANAGER_DB_STATUS, VCONFKEY_FILEMANAGER_DB_UPDATING))
430                                 goto ERROR;
431
432                 if (storage_type == MS_USER_STORAGE_EXTERNAL) {
433                         if (!ms_config_set_int(VCONFKEY_FILEMANAGER_MMC_STATUS, VCONFKEY_FILEMANAGER_MMC_LOADING))
434                                 goto ERROR;
435                 }
436         } else {
437                 if (!ms_config_set_int(VCONFKEY_FILEMANAGER_DB_STATUS, VCONFKEY_FILEMANAGER_DB_UPDATED))
438                                 goto ERROR;
439
440                 if (storage_type == MS_USER_STORAGE_EXTERNAL) {
441                         if (!ms_config_set_int(VCONFKEY_FILEMANAGER_MMC_STATUS, VCONFKEY_FILEMANAGER_MMC_LOADED))
442                                 goto ERROR;
443                 }
444         }
445
446         ret = ms_set_power_mode(status);
447         if (ret != MS_MEDIA_ERR_NONE)
448                 MS_DBG_ERR("ms_set_power_mode fail");
449
450         return ret;
451 ERROR:
452         MS_DBG_ERR("ms_config_set_int failed");
453         return MS_MEDIA_ERR_INTERNAL;
454 }
455
456 int ms_set_power_mode(ms_db_status_type_t status)
457 {
458         int res = MS_MEDIA_ERR_NONE;
459         int err;
460
461         switch (status) {
462         case MS_DB_UPDATING:
463                 err = device_power_request_lock(POWER_LOCK_CPU, 0);
464                 if (err != 0)
465                         res = MS_MEDIA_ERR_INTERNAL;
466                 break;
467         case MS_DB_UPDATED:
468                 err = device_power_release_lock(POWER_LOCK_CPU);
469                 if (err != 0)
470                         res = MS_MEDIA_ERR_INTERNAL;
471                 break;
472         default:
473                 MS_DBG_ERR("Unacceptable type : %d", status);
474                 break;
475         }
476
477         return res;
478 }
479
480 void ms_trim_dir_path(char *dir_path)
481 {
482         /* need implementation */
483         /* if dir_path is not NULL terminated, this function will occure crash */
484         int len = strlen(dir_path);
485
486         if (dir_path[len -1] == '/')
487                 dir_path[len -1] = '\0';
488 }
489
490 int ms_check_size_mediadb(uid_t uid, double *db_size)
491 {
492         int ret = MS_MEDIA_ERR_NONE;
493         char *db_path = NULL;
494         struct stat buf;
495
496         ret = ms_user_get_media_db_path(uid, &db_path);
497
498         if (stat(db_path, &buf) == 0) {
499                 *db_size = buf.st_size;
500         } else {
501                 MS_DBG_STRERROR("stat failed");
502                 ret = MS_MEDIA_ERR_INTERNAL;
503         }
504
505         g_free(db_path);
506
507         return ret;
508 }
509
510 #ifdef _SET_VIP_PROCESS
511 #define PROC_OOM_SCORE_ADJ_PATH         "/proc/%d/oom_score_adj"
512 #define VIP_OOM_SCORE_ADJ                       (-1000)
513 #define PROC_NAME_MAX 1024
514 #define PROC_BUF_MAX 64
515
516 static int ms_get_cmdline_from_proc(pid_t pid, char *cmdline)
517 {
518         char buf[PROC_BUF_MAX];
519         char cmdline_buf[PROC_NAME_MAX];
520         char *filename;
521         FILE *fp;
522
523         snprintf(buf, sizeof(buf), "/proc/%d/cmdline", pid);
524         fp = fopen(buf, "r");
525         if (fp == NULL)
526                 return MS_MEDIA_ERR_INTERNAL;
527
528         if (fgets(cmdline_buf, PROC_NAME_MAX-1, fp) == NULL) {
529                 fclose(fp);
530                 return MS_MEDIA_ERR_INTERNAL;
531         }
532         fclose(fp);
533
534         filename = strrchr(cmdline_buf, '/');
535         if (filename == NULL)
536                 filename = cmdline_buf;
537         else
538                 filename = filename + 1;
539
540         SAFE_STRLCPY(cmdline, filename, PROC_NAME_MAX);
541
542         return MS_MEDIA_ERR_NONE;
543 }
544
545 int ms_set_vip_process(void)
546 {
547         char buf[100] = {0};
548         int id = 0;
549         static pid_t pid = 0;
550         static char process_name[PROC_NAME_MAX] = {0};
551         static char *appid = NULL;
552
553         /* Get Pid */
554         pid = getpid();
555         if (ms_get_cmdline_from_proc(pid, process_name)) {
556                 MS_DBG_ERR("%s: Read process name failed pid[%d]", __func__, pid);
557                 return MS_MEDIA_ERR_INTERNAL;
558         }
559         appid = process_name;
560
561         MS_DBG("Process name[%s]:Pid[%d]", appid, pid);
562
563         if (prctl(PR_GET_DUMPABLE) == 0)
564                 prctl(PR_SET_DUMPABLE, 1);
565
566         snprintf(buf, sizeof(buf), PROC_OOM_SCORE_ADJ_PATH, pid);
567         id = open(buf, O_WRONLY, 0777);
568         if (id < 0) {
569                 MS_DBG_ERR("fopen %s failed errno:%d", buf, errno);
570                 return MS_MEDIA_ERR_INTERNAL;
571         }
572         snprintf(buf, sizeof(buf), "%d", VIP_OOM_SCORE_ADJ);
573         if (write(id, buf, strlen(buf)) < 0) {
574                 MS_DBG_ERR("write() failed errno=%d", errno);
575                 close(id);
576                 return MS_MEDIA_ERR_INTERNAL;
577         }
578         close(id);
579         return MS_MEDIA_ERR_NONE;
580 }
581 #endif