block: Add a mutex for pipe
[platform/core/system/storaged.git] / src / block / block.c
1 /*
2  * storaged
3  *
4  * Copyright (c) 2012 - 2015 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #define _GNU_SOURCE
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include <sys/mount.h>
28 #include <sys/statvfs.h>
29 #include <fnmatch.h>
30 #include <errno.h>
31 #include <dirent.h>
32 #include <sys/statfs.h>
33 #include <stdbool.h>
34 #include <pthread.h>
35 #include <time.h>
36 #include <assert.h>
37 #include <vconf.h>
38 #include <ctype.h>
39 #include <tzplatform_config.h>
40 #include <app2ext_interface.h>
41 #include <libmount.h>
42 #include <blkid/blkid.h>
43
44 #include "log.h"
45 #include "config-parser.h"
46 #include "module-intf.h"
47 #include "udev.h"
48 #include "list.h"
49 #include "block.h"
50 #include "dbus.h"
51 #include "fd_handler.h"
52 #include "utils.h"
53 #include "apps.h"
54
55 /**
56  * TODO  Assume root device is always mmcblk0*.
57  */
58 #define MMC_PATH            "*/mmcblk[0-9]*"
59 #define MMC_PARTITION_PATH  "mmcblk[0-9]p[0-9]"
60 /* Emulator send devlink for sdcard as \*\/sdcard\/\* */
61 #define MMC_LINK_PATH       "*/sdcard/*"
62 #define SCSI_PATH           "*/sd[a-z]*"
63 #define SCSI_PARTITION_PATH "sd[a-z][0-9]"
64 #define SCSI_PARTITION_LENGTH 9
65
66 #define FILESYSTEM          "filesystem"
67
68 #define DEV_PREFIX          "/dev/"
69 #define ROOT_DIR            "/"
70
71 #define UNMOUNT_RETRY   5
72 #define TIMEOUT_MAKE_OBJECT 500 /* milliseconds */
73
74 #define SIGNAL_POWEROFF_STATE   "ChangeState"
75
76 #define BLOCK_DEVICE_ADDED      "DeviceAdded"
77 #define BLOCK_DEVICE_REMOVED    "DeviceRemoved"
78 #define BLOCK_DEVICE_BLOCKED    "DeviceBlocked"
79 #define BLOCK_DEVICE_CHANGED    "DeviceChanged"
80 #define BLOCK_DEVICE_CHANGED_2  "DeviceChanged2"
81
82 #define BLOCK_TYPE_MMC          "mmc"
83 #define BLOCK_TYPE_SCSI         "scsi"
84 #define BLOCK_TYPE_ALL          "all"
85
86 #define BLOCK_MMC_NODE_PREFIX   "SDCard"
87 #define BLOCK_SCSI_NODE_PREFIX  "USBDrive"
88
89 #define BLOCK_CONF_FILE         "/etc/storaged/block.conf"
90
91 #define EXTERNAL_STORAGE_PATH   "/run/external-storage"
92 #define EXTENDED_INTERNAL_PATH  "/run/extended-internal-sd"
93 #define PATH_LEN                55
94
95 #define EXTENDED_SD_PATH        "/opt/extendedsd"
96 #define EXTENDED_SD_STRING      "ExtendedInternalSD"
97
98 #define EXT4_NAME               "ext4"
99 #define LUKS_NAME               "crypto_LUKS"
100
101 /* Minimum value of block id */
102 #define BLOCK_ID_MIN 10
103 /* For 2.4 Backward Compatibility */
104 #define EXT_PRIMARY_SD_FIXID    1
105
106 /* Maximum number of thread */
107 #define THREAD_MAX 5
108
109 #define PKGDIR_BUS_NAME         "org.tizen.pkgdir_tool"
110 #define PKGDIR_PATH             "/org/tizen/pkgdir_tool"
111 #define PKGDIR_INTERFACE        "org.tizen.pkgdir_tool"
112
113 #define ARRAY_SIZE(name) (sizeof(name)/sizeof(name[0]))
114
115 enum block_dev_operation {
116         BLOCK_DEV_MOUNT,
117         BLOCK_DEV_UNMOUNT,
118         BLOCK_DEV_FORMAT,
119         BLOCK_DEV_INSERT,
120         BLOCK_DEV_REMOVE,
121 };
122
123 enum private_operation_state {
124         REQ_NORMAL,
125         REQ_PRIVATE,
126         REQ_PRIVATE_FORMAT,
127 };
128
129 struct operation_queue {
130         enum block_dev_operation op;
131         dbus_method_reply_handle_h reply_handle;
132         void *data;
133         bool done;
134 };
135
136 struct block_device {
137         struct block_data *data;
138         dd_list *op_queue;
139         int thread_id;          /* Current thread ID */
140         bool removed;           /* True when device is physically removed but operation is not precessed yet */
141         enum private_operation_state on_private_op;
142         bool mount_point_updated;
143         pid_t private_pid;
144 };
145
146 struct format_data {
147         struct block_device *bdev;
148         char *fs_type;
149         enum unmount_operation option;
150 };
151
152 struct pipe_data {
153         enum block_dev_operation op;
154         struct block_device *bdev;
155         int result;
156 };
157
158 static struct block_conf {
159         bool multimount;
160         bool extendedinternal;
161 } block_conf[BLOCK_MMC_EXTENDED_INTERNAL_DEV + 1];
162
163 static struct manage_thread {
164         dd_list *th_node_list;  /* List of devnode which thread dealt with. Only main thread access */
165         dd_list *block_dev_list; /* Use thread mutex */
166         pthread_t th;
167         pthread_mutex_t mutex;
168         pthread_cond_t cond;
169         int num_dev;            /* Number of devices which thread holds. Only main thread access */
170         int op_len;             /* Number of operation of thread. Use thread mutex */
171         int thread_id;          /* Never changed */
172         bool start_th;
173 } th_manager[THREAD_MAX];
174
175 static dd_list *fs_head;
176 static dd_list *block_ops_list;
177 static bool smack;
178 static int pfds[2];
179 static fd_handler_h phandler;
180 static bool block_control = false;
181 static bool block_boot = false;
182 static pthread_mutex_t pipe_mutex = PTHREAD_MUTEX_INITIALIZER;
183
184 /* Assume there is only one physical internal storage */
185 static int dev_internal = -1;
186 static char dev_internal_scsi = '\0';
187 static char dev_internal_emul = '\0';
188
189 static int add_operation(struct block_device *bdev,
190                 enum block_dev_operation operation,
191                 dbus_method_reply_handle_h reply_handle, void *data);
192 static void remove_operation(struct block_device *bdev);
193 static void check_removed(struct block_device *bdev, dd_list **queue, struct operation_queue **op);
194 static bool check_unmount(struct block_device *bdev, dd_list **queue, struct operation_queue **op);
195 static int change_mount_point(struct block_device *bdev, const char *mount_point);
196
197 static void uevent_block_handler(struct udev_device *dev);
198 static struct uevent_handler uh = {
199         .subsystem = BLOCK_SUBSYSTEM,
200         .uevent_func = uevent_block_handler,
201 };
202
203 static void __CONSTRUCTOR__ smack_check(void)
204 {
205         FILE *fp;
206         char buf[128];
207
208         fp = fopen("/proc/filesystems", "r");
209         if (!fp)
210                 return;
211
212         while (fgets(buf, sizeof(buf), fp) != NULL) {
213                 if (strstr(buf, "smackfs")) {
214                         smack = true;
215                         break;
216                 }
217         }
218
219         fclose(fp);
220 }
221
222 void add_fs(const struct block_fs_ops *fs)
223 {
224         DD_LIST_APPEND(fs_head, (void *)fs);
225 }
226
227 void remove_fs(const struct block_fs_ops *fs)
228 {
229         DD_LIST_REMOVE(fs_head, (void *)fs);
230 }
231
232 const struct block_fs_ops *find_fs(enum block_fs_type type)
233 {
234         struct block_fs_ops *fs;
235         dd_list *elem;
236
237         DD_LIST_FOREACH(fs_head, elem, fs) {
238                 if (fs->type == type)
239                         return fs;
240         }
241         return NULL;
242 }
243
244 void add_block_dev(const struct block_dev_ops *ops)
245 {
246         DD_LIST_APPEND(block_ops_list, (void *)ops);
247 }
248
249 void remove_block_dev(const struct block_dev_ops *ops)
250 {
251         DD_LIST_REMOVE(block_ops_list, (void *)ops);
252 }
253
254 static void broadcast_block_info(enum block_dev_operation op,
255                 struct block_data *data, int result)
256 {
257         struct block_dev_ops *ops;
258         dd_list *elem;
259
260         if (data->primary != true)
261                 return;
262
263         DD_LIST_FOREACH(block_ops_list, elem, ops) {
264                 if (ops->block_type != data->block_type)
265                         continue;
266                 // TODO What happend on extended internal storage case?
267                 if (op == BLOCK_DEV_MOUNT) {
268                         if (data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
269                                 ops->mounted(data, result, true);
270                         else
271                                 ops->mounted(data, result, false);
272                 } else if (op == BLOCK_DEV_UNMOUNT) {
273                         if (data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
274                                 ops->unmounted(data, result, true);
275                         else
276                                 ops->unmounted(data, result, false);
277                 } else if (op == BLOCK_DEV_FORMAT) {
278                         if (data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
279                                 ops->formatted(data, result, true);
280                         else
281                                 ops->formatted(data, result, false);
282                 } else if (op == BLOCK_DEV_INSERT)
283                         ops->inserted(data);
284                 else if (op == BLOCK_DEV_REMOVE)
285                         ops->removed(data);
286         }
287 }
288
289 // Called by MainThread - Insert
290 static int block_get_new_id(void)
291 {
292         static int id = BLOCK_ID_MIN;
293         struct block_device *bdev;
294         dd_list *elem;
295         bool found;
296         int i, j;
297
298         for (i = 0 ; i < INT_MAX ; i++) {
299                 found = false;
300                 for (j = 0; j < THREAD_MAX; j++) {
301                         pthread_mutex_lock(&(th_manager[j].mutex));
302                         DD_LIST_FOREACH(th_manager[j].block_dev_list, elem, bdev) {
303                                 if (bdev->data->id == id) {
304                                         found = true;
305                                         break;
306                                 }
307                         }
308                         pthread_mutex_unlock(&(th_manager[j].mutex));
309                         if (found)
310                                 break;
311                 }
312
313                 if (!found)
314                         return id++;
315
316                 if (++id == INT_MAX)
317                         id = BLOCK_ID_MIN;
318         }
319
320         return -ENOENT;
321 }
322
323 static void remove_file(int id, bool extendedsd)
324 {
325         char file_name[PATH_LEN];
326         int ret;
327
328         if (id < 0)
329                 return;
330
331         if (extendedsd)
332                 snprintf(file_name, PATH_LEN, EXTENDED_INTERNAL_PATH"/%d", id);
333         else
334                 snprintf(file_name, sizeof(file_name), EXTERNAL_STORAGE_PATH"/%d", id);
335
336         ret = remove(file_name);
337         if (ret < 0)
338                 _E("Fail to remove %s. errno: %d", file_name, errno);
339 }
340
341 static void create_file(int id, char *mount_point, bool extendedsd)
342 {
343         FILE *fp;
344         char file_name[PATH_LEN];
345
346         if (id < 0)
347                 return;
348
349         if (extendedsd)
350                 snprintf(file_name, PATH_LEN, EXTENDED_INTERNAL_PATH"/%d", id);
351         else
352                 snprintf(file_name, PATH_LEN, EXTERNAL_STORAGE_PATH"/%d", id);
353
354         fp = fopen(file_name, "w+");
355         if (fp) {
356                 fprintf(fp, "%s", mount_point);
357                 fclose(fp);
358         } else
359                 _E("Fail to open %s", file_name);
360 }
361
362 static void signal_device_blocked(struct block_device *bdev)
363 {
364         struct block_data *data;
365         char *arr[13];
366         char str_block_type[32];
367         char str_readonly[32];
368         char str_state[32];
369         char str_primary[32];
370         char str_flags[32];
371         char str_id[32];
372         char *str_null = "";
373         int flags;
374
375         if (!bdev || !bdev->data)
376                 return;
377
378         data = bdev->data;
379         flags = 0;
380
381         /* Broadcast outside with BlockManager iface */
382         snprintf(str_block_type, sizeof(str_block_type),
383                         "%d", data->block_type);
384         arr[0] = str_block_type;
385         arr[1] = (data->devnode ? data->devnode : str_null);
386         arr[2] = (data->syspath ? data->syspath : str_null);
387         arr[3] = (data->fs_usage ? data->fs_usage : str_null);
388         arr[4] = (data->fs_type ? data->fs_type : str_null);
389         arr[5] = (data->fs_version ? data->fs_version : str_null);
390         arr[6] = (data->fs_uuid_enc ? data->fs_uuid_enc : str_null);
391         snprintf(str_readonly, sizeof(str_readonly),
392                         "%d", data->readonly);
393         arr[7] = str_readonly;
394         arr[8] = (data->mount_point ? data->mount_point : str_null);
395         snprintf(str_state, sizeof(str_state),
396                         "%d", data->state);
397         arr[9] = str_state;
398         snprintf(str_primary, sizeof(str_primary),
399                         "%d", data->primary);
400         arr[10] = str_primary;
401         snprintf(str_flags, sizeof(str_flags), "%d", flags);
402         arr[11] = str_flags;
403         snprintf(str_id, sizeof(str_id), "%d", data->id);
404         arr[12] = str_id;
405
406         broadcast_dbus_signal(STORAGED_PATH_BLOCK_MANAGER,
407                         STORAGED_INTERFACE_BLOCK_MANAGER,
408                         BLOCK_DEVICE_BLOCKED,
409                         "issssssisibii", arr);
410 }
411
412 static void signal_device_changed(struct block_device *bdev,
413                 enum block_dev_operation op)
414 {
415         struct block_data *data;
416         char *arr[13];
417         char str_block_type[32];
418         char str_readonly[32];
419         char str_state[32];
420         char str_primary[32];
421         char str_flags[32];
422         char str_id[32];
423         char *str_null = "";
424         int flags;
425
426         if (!bdev || !bdev->data)
427                 return;
428
429         data = bdev->data;
430
431         switch (op) {
432         case BLOCK_DEV_MOUNT:
433                 BLOCK_GET_MOUNT_FLAGS(data, flags);
434                 break;
435         case BLOCK_DEV_UNMOUNT:
436                 BLOCK_GET_UNMOUNT_FLAGS(data, flags);
437                 break;
438         case BLOCK_DEV_FORMAT:
439                 BLOCK_GET_FORMAT_FLAGS(data, flags);
440                 break;
441         default:
442                 flags = 0;
443                 break;
444         }
445
446         /* Broadcast outside with BlockManager iface */
447         snprintf(str_block_type, sizeof(str_block_type),
448                         "%d", data->block_type);
449         arr[0] = str_block_type;
450         arr[1] = (data->devnode ? data->devnode : str_null);
451         arr[2] = (data->syspath ? data->syspath : str_null);
452         arr[3] = (data->fs_usage ? data->fs_usage : str_null);
453         arr[4] = (data->fs_type ? data->fs_type : str_null);
454         arr[5] = (data->fs_version ? data->fs_version : str_null);
455         arr[6] = (data->fs_uuid_enc ? data->fs_uuid_enc : str_null);
456         snprintf(str_readonly, sizeof(str_readonly),
457                         "%d", data->readonly);
458         arr[7] = str_readonly;
459         arr[8] = (data->mount_point ? data->mount_point : str_null);
460         snprintf(str_state, sizeof(str_state),
461                         "%d", data->state);
462         arr[9] = str_state;
463         snprintf(str_primary, sizeof(str_primary),
464                         "%d", data->primary);
465         arr[10] = str_primary;
466         snprintf(str_flags, sizeof(str_flags), "%d", flags);
467         arr[11] = str_flags;
468         snprintf(str_id, sizeof(str_id), "%d", data->id);
469         arr[12] = str_id;
470
471         if (op == BLOCK_DEV_INSERT)
472                 broadcast_dbus_signal(STORAGED_PATH_BLOCK_MANAGER,
473                                 STORAGED_INTERFACE_BLOCK_MANAGER,
474                                 BLOCK_DEVICE_ADDED,
475                                 "issssssisibii", arr);
476         else if (op == BLOCK_DEV_REMOVE)
477                 broadcast_dbus_signal(STORAGED_PATH_BLOCK_MANAGER,
478                                 STORAGED_INTERFACE_BLOCK_MANAGER,
479                                 BLOCK_DEVICE_REMOVED,
480                                 "issssssisibii", arr);
481         else {
482                 broadcast_dbus_signal(STORAGED_PATH_BLOCK_MANAGER,
483                                 STORAGED_INTERFACE_BLOCK_MANAGER,
484                                 BLOCK_DEVICE_CHANGED,
485                                 "issssssisibii", arr);
486                 broadcast_dbus_signal(STORAGED_PATH_BLOCK_MANAGER,
487                                 STORAGED_INTERFACE_BLOCK_MANAGER,
488                                 BLOCK_DEVICE_CHANGED_2,
489                                 "issssssisibi", arr);
490         }
491 }
492
493 static int get_mmc_mount_node(char *devnode, char *node, size_t len)
494 {
495         char *name = devnode;
496         int dev = -1, part = -1;
497         char emul[32] = { 0, };
498         int i;
499
500         if (!name)
501                 return -EINVAL;
502
503         /* Check Target */
504         sscanf(name, "mmcblk%dp%d", &dev, &part);
505         if (dev >= 0) {
506                 if (part < 0)
507                         snprintf(node, len, "%s%c", BLOCK_MMC_NODE_PREFIX, dev + 'A' - 1);
508                 else
509                         snprintf(node, len, "%s%c%d", BLOCK_MMC_NODE_PREFIX, dev + 'A' - 1, part);
510                 return 0;
511         }
512
513         /* Check Emulator */
514         sscanf(name, "vd%31s", emul);
515         if (emul[0] == '\0')
516                 return -EINVAL;
517         for (i = 0 ; i < strlen(emul) ; i++)
518                 emul[i] = toupper(emul[i]);
519         snprintf(node, len, "%s%s", BLOCK_MMC_NODE_PREFIX, emul);
520         return 0;
521 }
522
523 static int get_scsi_mount_node(char *devnode, char *node, size_t len)
524 {
525         char dev[64], *name;
526         int i;
527
528         if (!devnode)
529                 return -EINVAL;
530
531         snprintf(dev, sizeof(dev), "%s", devnode);
532
533         if (!strstr(dev, "sd"))
534                 return -EINVAL;
535
536         name = dev;
537         name += strlen("sd");
538
539         for (i = 0 ; i < strlen(name) ; i++)
540                 name[i] = toupper(name[i]);
541         snprintf(node, len, "%s%s", BLOCK_SCSI_NODE_PREFIX, name);
542
543         return 0;
544 }
545
546 static char *generate_mount_path(struct block_data *data)
547 {
548         const char *str;
549         char *name, node[64];
550         int ret;
551
552         if (!data || !data->devnode)
553                 return NULL;
554
555         name = strrchr(data->devnode, '/');
556         if (!name)
557                 goto out;
558         name++;
559
560         switch (data->block_type) {
561         case BLOCK_MMC_DEV:
562                 ret = get_mmc_mount_node(name, node, sizeof(node));
563                 break;
564         case BLOCK_SCSI_DEV:
565                 ret = get_scsi_mount_node(name, node, sizeof(node));
566                 break;
567         case BLOCK_MMC_EXTENDED_INTERNAL_DEV:
568                 return strdup(EXTENDED_SD_PATH);
569         default:
570                 _E("Invalid block type (%d)", data->block_type);
571                 return NULL;
572         }
573         if (ret < 0)
574                 goto out;
575
576         str = tzplatform_mkpath(TZ_SYS_MEDIA, node);
577         if (!str)
578                 return NULL;
579         return strdup(str);
580
581 out:
582         _E("Invalid devnode (%s)", data->devnode ? data->devnode : "NULL");
583         return NULL;
584 }
585
586 static bool check_primary_partition(const char *devnode)
587 {
588         struct block_fs_ops *fs;
589         blkid_probe probe;
590         dd_list *elem;
591         const char *filesystem = NULL;
592         char *temp;
593         char str[PATH_MAX];
594         char str2[PATH_MAX];
595         size_t fs_len;
596         int len;
597         int ret;
598         int i;
599         bool found = false;
600
601         if (fnmatch(MMC_LINK_PATH, devnode, 0) &&
602                 fnmatch(MMC_PATH, devnode, 0) &&
603                 fnmatch(SCSI_PATH, devnode, 0))
604                 return false;
605
606         temp = strrchr(devnode, '/');
607         if (!temp)
608                 return false;
609         if (fnmatch("/"SCSI_PARTITION_PATH, temp, 0) &&
610                 fnmatch("/"MMC_PARTITION_PATH, temp, 0))
611                 return true;
612
613         /* Emulator support only one partition */
614         if (is_emulator())
615                 return true;
616
617         snprintf(str, sizeof(str), "%s", devnode);
618
619         len = strlen(str);
620         str[len - 1] = '\0';
621
622         for (i = 1; i <= 9; ++i) {
623                 snprintf(str2, sizeof(str2), "%s%d", str, i);
624                 if (access(str2, R_OK) != 0)
625                         continue;
626
627                 probe = blkid_new_probe_from_filename(str2);
628                 if (!probe)
629                         continue;
630                 if (blkid_do_probe(probe) != 0)
631                         continue;
632
633                 ret = blkid_probe_lookup_value(probe, "TYPE", &filesystem, &fs_len);
634                 if (ret < 0) {
635                         blkid_free_probe(probe);
636                         continue;
637                 }
638                 DD_LIST_FOREACH(fs_head, elem, fs) {
639                         if (!strncmp(fs->name, filesystem, fs_len)) {
640                                 found = true;
641                                 break;
642                         }
643                 }
644                 blkid_free_probe(probe);
645                 if (!found)
646                         continue;
647                 break;
648         }
649
650         if (found && !strncmp(devnode, str2, strlen(str2) + 1))
651                 return true;
652
653         return false;
654 }
655
656 /* Whole data in struct block_data should be freed. */
657 static struct block_data *make_block_data(const char *devnode,
658                 const char *syspath,
659                 const char *fs_usage,
660                 const char *fs_type,
661                 const char *fs_version,
662                 const char *fs_uuid_enc,
663                 const char *readonly)
664 {
665         struct block_data *data;
666
667         /* devnode is unique value so it should exist. */
668         if (!devnode)
669                 return NULL;
670
671         if (!fs_type)
672                 _E("Not support extended partition");
673
674         data = calloc(1, sizeof(struct block_data));
675         if (!data) {
676                 _E("calloc() failed");
677                 return NULL;
678         }
679
680         data->devnode = strdup(devnode);
681         if (syspath)
682                 data->syspath = strdup(syspath);
683         if (fs_usage)
684                 data->fs_usage = strdup(fs_usage);
685         if (fs_type)
686                 data->fs_type = strdup(fs_type);
687         if (fs_version)
688                 data->fs_version = strdup(fs_version);
689         if (fs_uuid_enc)
690                 data->fs_uuid_enc = strdup(fs_uuid_enc);
691         if (readonly)
692                 data->readonly = atoi(readonly);
693         data->primary = check_primary_partition(devnode);
694
695         /* TODO should we know block dev type? */
696         if (!fnmatch(MMC_LINK_PATH, devnode, 0))
697                 data->block_type = BLOCK_MMC_DEV;
698         else if (!fnmatch(MMC_PATH, devnode, 0))
699                 data->block_type = BLOCK_MMC_DEV;
700         else if (!fnmatch(SCSI_PATH, devnode, 0))
701                 data->block_type = BLOCK_SCSI_DEV;
702         else
703                 data->block_type = -1;
704
705         data->mount_point = generate_mount_path(data);
706         BLOCK_FLAG_CLEAR_ALL(data);
707
708         /* for 2.4 backward compatibility */
709         // What if storage id 1 is existed? (multi sdcard case)
710         if (data->primary == true && data->block_type == BLOCK_MMC_DEV)
711                 data->id = EXT_PRIMARY_SD_FIXID;
712         else
713                 data->id = block_get_new_id();
714
715         return data;
716 }
717
718 static void free_block_data(struct block_data *data)
719 {
720         if (!data)
721                 return;
722         free(data->devnode);
723         free(data->syspath);
724         free(data->fs_usage);
725         free(data->fs_type);
726         free(data->fs_version);
727         free(data->fs_uuid_enc);
728         free(data->mount_point);
729         free(data);
730 }
731
732 static int update_block_data(struct block_data *data,
733                 const char *fs_usage,
734                 const char *fs_type,
735                 const char *fs_version,
736                 const char *fs_uuid_enc,
737                 const char *readonly,
738                 bool mount_point_updated)
739 {
740         if (!data)
741                 return -EINVAL;
742
743         free(data->fs_usage);
744         data->fs_usage = NULL;
745         if (fs_usage)
746                 data->fs_usage = strdup(fs_usage);
747
748         free(data->fs_type);
749         data->fs_type = NULL;
750         if (fs_type)
751                 data->fs_type = strdup(fs_type);
752
753         free(data->fs_version);
754         data->fs_version = NULL;
755         if (fs_version)
756                 data->fs_version = strdup(fs_version);
757
758         free(data->fs_uuid_enc);
759         data->fs_uuid_enc = NULL;
760         if (fs_uuid_enc)
761                 data->fs_uuid_enc = strdup(fs_uuid_enc);
762
763         /* generate_mount_path function should be invoked
764          * after fs_uuid_enc is updated */
765         if (!mount_point_updated) {
766                 free(data->mount_point);
767                 data->mount_point = generate_mount_path(data);
768         }
769
770         data->readonly = false;
771         if (readonly)
772                 data->readonly = atoi(readonly);
773
774         BLOCK_FLAG_MOUNT_CLEAR(data);
775
776         return 0;
777 }
778
779 static struct block_device *make_block_device(struct block_data *data)
780 {
781         struct block_device *bdev;
782
783         if (!data)
784                 return NULL;
785
786         bdev = calloc(1, sizeof(struct block_device));
787         if (!bdev)
788                 return NULL;
789
790         bdev->data = data;
791         bdev->thread_id = -1;
792         bdev->removed = false;
793         bdev->on_private_op = REQ_NORMAL;
794         bdev->private_pid = 0;
795         bdev->mount_point_updated = false;
796
797         return bdev;
798 }
799
800 // Called by MainThread - Remove DevNode
801 static void free_block_device(struct block_device *bdev)
802 {
803         dd_list *l, *next;
804         struct operation_queue *op;
805         int thread_id;
806
807         if (!bdev)
808                 return;
809
810         thread_id = bdev->thread_id;
811         if (thread_id < 0 || thread_id >= THREAD_MAX)
812                 return;
813
814         pthread_mutex_lock(&(th_manager[thread_id].mutex));
815
816         th_manager[thread_id].num_dev--;
817         DD_LIST_REMOVE(th_manager[thread_id].block_dev_list, bdev);
818         free_block_data(bdev->data);
819
820         DD_LIST_FOREACH_SAFE(bdev->op_queue, l, next, op) {
821                 if (!op->done)
822                         th_manager[thread_id].op_len--;
823                 DD_LIST_REMOVE(bdev->op_queue, op);
824                 free(op);
825         }
826         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
827
828         free(bdev);
829 }
830
831 // Called By MainThread - Remove Device
832 static struct block_device *find_block_device(const char *devnode)
833 {
834         struct block_device *bdev;
835         dd_list *elem;
836         int len;
837         int i;
838
839         len = strlen(devnode) + 1;
840         for (i = 0; i < THREAD_MAX; i++) {
841                 pthread_mutex_lock(&(th_manager[i].mutex));
842                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
843                         if (bdev->data && !bdev->removed &&
844                             !strncmp(bdev->data->devnode, devnode, len)) {
845                                 pthread_mutex_unlock(&(th_manager[i].mutex));
846                                 return bdev;
847                         }
848                 }
849                 pthread_mutex_unlock(&(th_manager[i].mutex));
850         }
851
852         return NULL;
853 }
854
855 // Called By MainThread - Mount,Unmount,Format,GetInfo
856 static struct block_device *find_block_device_by_id(int id)
857 {
858         struct block_device *bdev;
859         dd_list *elem;
860         int i;
861
862         for (i = 0; i < THREAD_MAX; i++) {
863                 pthread_mutex_lock(&(th_manager[i].mutex));
864                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
865                         if (!bdev->data)
866                                 continue;
867                         if (bdev->removed)
868                                 continue;
869                         if (bdev->data->id == id) {
870                                 pthread_mutex_unlock(&(th_manager[i].mutex));
871                                 return bdev;
872                         }
873                 }
874                 pthread_mutex_unlock(&(th_manager[i].mutex));
875         }
876
877         return NULL;
878 }
879
880 static char *get_operation_char(enum block_dev_operation op,
881                 char *name, unsigned int len)
882 {
883         char *str = "unknown";
884
885         if (!name)
886                 return NULL;
887
888         switch (op) {
889         case BLOCK_DEV_MOUNT:
890                 str = "MOUNT";
891                 break;
892         case BLOCK_DEV_UNMOUNT:
893                 str = "UNMOUNT";
894                 break;
895         case BLOCK_DEV_FORMAT:
896                 str = "FORMAT";
897                 break;
898         case BLOCK_DEV_INSERT:
899                 str = "INSERT";
900                 break;
901         case BLOCK_DEV_REMOVE:
902                 str = "REMOVE";
903                 break;
904         default:
905                 _E("invalid operation (%d)", op);
906                 break;
907         }
908
909         snprintf(name, len, "%s", str);
910         return name;
911 }
912
913 static void create_external_apps_directory(void)
914 {
915         int ret;
916
917         ret = call_dbus_method_async(PKGDIR_BUS_NAME, PKGDIR_PATH,
918                         PKGDIR_INTERFACE, "CreateExternalDirsForAllPkgs",
919                         NULL, NULL, NULL, DBUS_TIMEOUT_USE_DEFAULT, NULL);
920         if (ret)
921                 _E("Fail to create external directory");
922 }
923
924 static int pipe_trigger(enum block_dev_operation op,
925                 struct block_device *bdev, int result)
926 {
927         struct pipe_data pdata = { op, bdev, result };
928         int n;
929         char name[16];
930
931         _D("op : %s, bdev : %p, result : %d",
932                         get_operation_char(pdata.op, name, sizeof(name)),
933                         pdata.bdev, pdata.result);
934
935         // Multi thread should not write at the same time
936         pthread_mutex_lock(&pipe_mutex);
937         n = write(pfds[1], &pdata, sizeof(struct pipe_data));
938         pthread_mutex_unlock(&pipe_mutex);
939
940         return (n != sizeof(struct pipe_data)) ? -EPERM : 0;
941 }
942
943 static bool pipe_cb(int fd, void *data)
944 {
945         struct pipe_data pdata = {0,};
946         int n;
947         int thread_id;
948         int ret;
949         char name[16];
950
951         n = read(fd, &pdata, sizeof(pdata));
952         if (n != sizeof(pdata) || !pdata.bdev) {
953                 _E("fail to read struct pipe data");
954                 goto out;
955         }
956
957         _I("op : %s, bdev : %p, result : %d",
958                         get_operation_char(pdata.op, name, sizeof(name)),
959                         pdata.bdev, pdata.result);
960
961         if (pdata.op == BLOCK_DEV_MOUNT && pdata.result < 0) {
962                 if (pdata.bdev->data->state == BLOCK_UNMOUNT) {
963                         ret = change_mount_point(pdata.bdev, "");
964                         /* Modify /run/external-storage/id file */
965                         if (ret == 0) {
966                                 if (pdata.bdev->data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
967                                         create_file(pdata.bdev->data->id, pdata.bdev->data->mount_point, true);
968                                 else
969                                         create_file(pdata.bdev->data->id, pdata.bdev->data->mount_point, false);
970                         }
971                 }
972                 goto out;
973         }
974         if (pdata.op == BLOCK_DEV_MOUNT &&
975                 pdata.bdev->data->state == BLOCK_MOUNT &&
976                 pdata.bdev->data->block_type == BLOCK_MMC_DEV &&
977                 pdata.bdev->data->primary)
978                 create_external_apps_directory();
979         if (pdata.op == BLOCK_DEV_UNMOUNT) {
980                 /* Remove file for block device /run/xxxxxx/id */
981                 if (pdata.bdev->data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
982                         remove_file(pdata.bdev->data->id, true);
983                 else
984                         remove_file(pdata.bdev->data->id, false);
985         }
986
987         /* Broadcast to mmc and usb storage module */
988         broadcast_block_info(pdata.op, pdata.bdev->data, pdata.result);
989
990         /* Broadcast outside with Block iface */
991         if (pdata.bdev->on_private_op == REQ_NORMAL)
992                 signal_device_changed(pdata.bdev, pdata.op);
993         else if (pdata.bdev->on_private_op == REQ_PRIVATE) {
994                 if (pdata.op == BLOCK_DEV_UNMOUNT) {
995                         pdata.bdev->on_private_op = REQ_NORMAL;
996                         _D("Private operation state: %d", pdata.bdev->on_private_op);
997                 }
998         } else {
999                 if (pdata.op == BLOCK_DEV_MOUNT) {
1000                         pdata.bdev->on_private_op = REQ_PRIVATE;
1001                         _D("Private operation state: %d", pdata.bdev->on_private_op);
1002                 }
1003         }
1004
1005         if (pdata.op == BLOCK_DEV_REMOVE) {
1006                 thread_id = pdata.bdev->thread_id;
1007                 if (thread_id < 0 || thread_id >= THREAD_MAX)
1008                         return true;
1009                 free_block_device(pdata.bdev);
1010         }
1011
1012 out:
1013         return true;
1014 }
1015
1016 static int pipe_init(void)
1017 {
1018         int ret;
1019
1020         ret = pipe2(pfds, O_CLOEXEC);
1021         if (ret == -1)
1022                 return -errno;
1023
1024         ret = add_fd_read_handler(pfds[0], pipe_cb,
1025                         NULL, NULL, &phandler);
1026         if (ret < 0) {
1027                 _E("Failed to add pipe handler (%d)", ret);
1028                 return ret;
1029         }
1030
1031         return 0;
1032 }
1033
1034 static void pipe_exit(void)
1035 {
1036         if (phandler) {
1037                 remove_fd_read_handler(&phandler);
1038                 phandler = NULL;
1039         }
1040
1041         if (pfds[0])
1042                 close(pfds[0]);
1043         if (pfds[1])
1044                 close(pfds[1]);
1045 }
1046
1047 static int mmc_check_and_unmount(const char *path)
1048 {
1049         int ret = 0;
1050         int retry = 0;
1051
1052         if (!path)
1053                 return 0;
1054
1055         while (mount_check(path)) {
1056                 ret = umount(path);
1057                 if (ret < 0) {
1058                         retry++;
1059                         if (retry > UNMOUNT_RETRY)
1060                                 return -errno;
1061                 }
1062         }
1063         return ret;
1064 }
1065
1066 static bool check_rw_mount(const char *szPath)
1067 {
1068         struct statvfs mount_stat;
1069
1070         if (!statvfs(szPath, &mount_stat)) {
1071                 if ((mount_stat.f_flag & ST_RDONLY) == ST_RDONLY)
1072                         return false;
1073         }
1074         return true;
1075 }
1076
1077 static int retrieve_udev_device(struct block_data *data, bool mount_point_updated)
1078 {
1079         struct udev *udev;
1080         struct udev_device *dev;
1081         int r;
1082
1083         if (!data)
1084                 return -EINVAL;
1085
1086         udev = udev_new();
1087         if (!udev) {
1088                 _E("fail to create udev library context");
1089                 return -EPERM;
1090         }
1091
1092         dev = udev_device_new_from_syspath(udev, data->syspath);
1093         if (!dev) {
1094                 _E("fail to create new udev device");
1095                 udev_unref(udev);
1096                 return -EPERM;
1097         }
1098
1099         r = update_block_data(data,
1100                         udev_device_get_property_value(dev, "ID_FS_USAGE"),
1101                         udev_device_get_property_value(dev, "ID_FS_TYPE"),
1102                         udev_device_get_property_value(dev, "ID_FS_VERSION"),
1103                         udev_device_get_property_value(dev, "ID_FS_UUID_ENC"),
1104                         udev_device_get_sysattr_value(dev, "ro"),
1105                         mount_point_updated);
1106         if (r < 0)
1107                 _E("fail to update block data for %s", data->devnode);
1108
1109         udev_device_unref(dev);
1110         udev_unref(udev);
1111         return r;
1112 }
1113
1114 static int block_mount(struct block_data *data)
1115 {
1116         struct block_fs_ops *fs;
1117         dd_list *elem;
1118         int r;
1119         int len;
1120
1121         if (!data || !data->devnode || !data->mount_point)
1122                 return -EINVAL;
1123
1124         /* check existing mounted */
1125         if (mount_check(data->mount_point))
1126                 return -EEXIST;
1127
1128         /* create mount point */
1129         if (access(data->mount_point, R_OK) != 0) {
1130                 if (mkdir(data->mount_point, 0755) < 0)
1131                         return -errno;
1132         }
1133
1134         /* check matched file system */
1135         if (!data->fs_usage ||
1136             strncmp(data->fs_usage, FILESYSTEM,
1137                     sizeof(FILESYSTEM)) != 0) {
1138                 r = -ENODEV;
1139                 goto out;
1140         }
1141
1142         if (!data->fs_type) {
1143                 _E("There is no file system");
1144                 BLOCK_FLAG_SET(data, FS_EMPTY);
1145                 r = -ENODATA;
1146                 goto out;
1147         }
1148
1149         fs = NULL;
1150         len = strlen(data->fs_type) + 1;
1151         DD_LIST_FOREACH(fs_head, elem, fs) {
1152                 if (!strncmp(fs->name, data->fs_type, len))
1153                         break;
1154         }
1155
1156         if (!fs) {
1157                 _E("Not supported file system (%s)", data->fs_type);
1158                 BLOCK_FLAG_SET(data, FS_NOT_SUPPORTED);
1159                 r = -ENOTSUP;
1160                 goto out;
1161         }
1162
1163         if (data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
1164                 r = fs->mount(false, data->devnode, data->mount_point);
1165         else
1166                 r = fs->mount(smack, data->devnode, data->mount_point);
1167
1168         if (r == -EIO)
1169                 BLOCK_FLAG_SET(data, FS_BROKEN);
1170
1171         if (r < 0)
1172                 goto out;
1173
1174         r = check_rw_mount(data->mount_point);
1175         if (!r)
1176                 return -EROFS;
1177
1178         return 0;
1179
1180 out:
1181         rmdir(data->mount_point);
1182         return r;
1183 }
1184
1185 static int mount_start(struct block_device *bdev)
1186 {
1187         struct block_data *data;
1188         int ret;
1189         int r;
1190
1191         assert(bdev);
1192         assert(bdev->data);
1193
1194         data = bdev->data;
1195         _I("Mount Start : (%s -> %s)",
1196                         data->devnode, data->mount_point);
1197
1198         /* mount operation */
1199         r = block_mount(data);
1200         if (r != -EROFS && r < 0) {
1201                 _E("fail to mount %s device : %d", data->devnode, r);
1202                 goto out;
1203         }
1204
1205         if (r == -EROFS) {
1206                 data->readonly = true;
1207                 BLOCK_FLAG_SET(data, MOUNT_READONLY);
1208         }
1209
1210         data->state = BLOCK_MOUNT;
1211
1212         if (data->block_type == BLOCK_MMC_DEV) {
1213                 /* app2ext_migrate_legacy_all has dbus method call to deviced */
1214                 ret = app2ext_migrate_legacy_all();
1215                 if (ret < 0)
1216                         _E("app2ext failed");
1217         }
1218
1219 out:
1220         if (r < 0 && r != -EROFS)
1221                 data->state = BLOCK_UNMOUNT;
1222
1223         _I("%s result : %s, %d", __func__, data->devnode, r);
1224
1225         if (pipe_trigger(BLOCK_DEV_MOUNT, bdev, r) < 0)
1226                 _E("fail to trigger pipe");
1227
1228         return r;
1229 }
1230
1231 static int change_mount_point(struct block_device *bdev,
1232                 const char *mount_point)
1233 {
1234         struct block_data *data;
1235
1236         if (!bdev)
1237                 return -EINVAL;
1238
1239         data = bdev->data;
1240         free(data->mount_point);
1241
1242         /* If the mount path already exists, the path cannot be used */
1243         if (mount_point &&
1244                 access(mount_point, F_OK) != 0) {
1245                 data->mount_point = strdup(mount_point);
1246                 bdev->mount_point_updated = true;
1247         } else {
1248                 data->mount_point = generate_mount_path(data);
1249                 bdev->mount_point_updated = false;
1250         }
1251
1252         return 0;
1253 }
1254
1255 static int mount_block_device(struct block_device *bdev)
1256 {
1257         struct block_data *data;
1258         int r;
1259
1260         if (!bdev || !bdev->data)
1261                 return -EINVAL;
1262
1263         data = bdev->data;
1264         if (data->state == BLOCK_MOUNT) {
1265                 _I("%s is already mounted", data->devnode);
1266                 return 0;
1267         }
1268
1269         if (!block_conf[data->block_type].multimount &&
1270             !data->primary) {
1271                 _I("Not support multi mount by config info");
1272                 return 0;
1273         }
1274
1275         r = mount_start(bdev);
1276         if (r < 0) {
1277                 _E("Failed to mount (%s)", data->devnode);
1278                 return r;
1279         }
1280
1281         return 0;
1282 }
1283
1284 static int block_unmount(struct block_device *bdev,
1285                 enum unmount_operation option)
1286 {
1287         struct block_data *data;
1288         int r, retry = 0;
1289         struct timespec time = {0,};
1290
1291         if (!bdev || !bdev->data || !bdev->data->mount_point)
1292                 return -EINVAL;
1293
1294         data = bdev->data;
1295
1296         if (bdev->on_private_op == REQ_NORMAL)
1297                 signal_device_blocked(bdev);
1298
1299         /* it must called before unmounting mmc */
1300         r = mmc_check_and_unmount(data->mount_point);
1301         if (!r)
1302                 goto out;
1303         if (option == UNMOUNT_NORMAL) {
1304                 _I("Failed to unmount with normal option : %d", r);
1305                 return r;
1306         }
1307
1308         _I("Execute force unmount!");
1309         /* Force Unmount Scenario */
1310         while (1) {
1311                 switch (retry++) {
1312                 case 0:
1313                         /* Mobile specific:
1314                          * should unmount the below vconf key. */
1315                         if ((data->block_type == BLOCK_MMC_DEV ||
1316                                 data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV) &&
1317                                 data->primary) {
1318                                 /* At first, notify to other app
1319                                  * who already access sdcard */
1320                                 _I("Notify to other app who already access sdcard");
1321                                 vconf_set_int(VCONFKEY_SYSMAN_MMC_STATUS,
1322                                                 VCONFKEY_SYSMAN_MMC_INSERTED_NOT_MOUNTED);
1323                         }
1324                         break;
1325                 case 1:
1326                         /* Second, kill app with SIGTERM */
1327                         _I("Kill app with SIGTERM");
1328                         terminate_process(data->mount_point, false);
1329                         break;
1330                 case 2:
1331                         /* Last time, kill app with SIGKILL */
1332                         _I("Kill app with SIGKILL");
1333                         terminate_process(data->mount_point, true);
1334                         break;
1335                 default:
1336                         if (umount2(data->mount_point, MNT_DETACH) != 0) {
1337                                 _I("Failed to unmount with lazy option : %d",
1338                                                 errno);
1339                                 return -errno;
1340                         }
1341                         goto out;
1342                 }
1343
1344                 /* it takes some seconds til other app completely clean up */
1345                 time.tv_nsec = 500 * NANO_SECOND_MULTIPLIER;
1346                 nanosleep(&time, NULL);
1347
1348                 print_open_files(data->mount_point);
1349
1350                 r = mmc_check_and_unmount(data->mount_point);
1351                 if (!r) {
1352                         _D("Success to unmount (%s)", data->mount_point);
1353                         break;
1354                 }
1355         }
1356
1357 out:
1358         data->state = BLOCK_UNMOUNT;
1359
1360         if (rmdir(data->mount_point) < 0)
1361                 _E("fail to remove %s directory", data->mount_point);
1362
1363         return r;
1364 }
1365
1366 static int unmount_block_device(struct block_device *bdev,
1367                 enum unmount_operation option)
1368 {
1369         struct block_data *data;
1370         int r;
1371
1372         if (!bdev || !bdev->data)
1373                 return -EINVAL;
1374
1375         data = bdev->data;
1376         if (data->state == BLOCK_UNMOUNT) {
1377                 _I("%s is already unmounted", data->devnode);
1378                 r = mmc_check_and_unmount(data->mount_point);
1379                 if (r < 0)
1380                         _E("The path was existed, but could not delete it(%s)",
1381                                         data->mount_point);
1382                 return 0;
1383         }
1384
1385         _I("Unmount Start : (%s -> %s)",
1386                         data->devnode, data->mount_point);
1387
1388         r = block_unmount(bdev, option);
1389         if (r < 0) {
1390                 _E("fail to unmount %s device : %d", data->devnode, r);
1391                 goto out;
1392         }
1393
1394         BLOCK_FLAG_MOUNT_CLEAR(data);
1395
1396 out:
1397         _I("%s result : %s, %d", __func__, data->devnode, r);
1398
1399         if (pipe_trigger(BLOCK_DEV_UNMOUNT, bdev, r) < 0)
1400                 _E("fail to trigger pipe");
1401
1402         return r;
1403 }
1404
1405 static int block_format(struct block_data *data,
1406                 const char *fs_type, bool mount_point_updated)
1407 {
1408         const struct block_fs_ops *fs;
1409         dd_list *elem;
1410         const char *fstype;
1411         int len;
1412         int r;
1413
1414         if (!data || !data->devnode || !data->mount_point)
1415                 return -EINVAL;
1416
1417         if (data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
1418                 fstype = EXT4_NAME;
1419         else {
1420                 if (!fs_type) {
1421                         if (!data->fs_type)
1422                                 return -ENOTSUP;
1423                         fstype = data->fs_type;
1424                 } else
1425                         fstype = fs_type;
1426         }
1427
1428         fs = NULL;
1429         len = strlen(fstype);
1430         DD_LIST_FOREACH(fs_head, elem, fs) {
1431                 if (!strncmp(fs->name, fstype, len))
1432                         break;
1433         }
1434
1435         if (!fs) {
1436                 BLOCK_FLAG_SET(data, FS_NOT_SUPPORTED);
1437                 _E("not supported file system(%s)", fstype);
1438                 return -ENOTSUP;
1439         }
1440
1441         _I("format path : %s", data->devnode);
1442         fs->check(data->devnode);
1443         r = fs->format(data->devnode);
1444         if (r < 0) {
1445                 _E("fail to format block data for %s", data->devnode);
1446                 goto out;
1447         }
1448
1449         /* it takes some seconds til kernel set udev property */
1450         sleep(2);
1451
1452         /* need to update the partition data.
1453          * It can be changed in doing format. */
1454         retrieve_udev_device(data, mount_point_updated);
1455
1456 out:
1457         return r;
1458 }
1459
1460 static int format_block_device(struct block_device *bdev,
1461                 const char *fs_type,
1462                 enum unmount_operation option)
1463 {
1464         struct block_data *data;
1465         int r;
1466
1467         assert(bdev);
1468         assert(bdev->data);
1469
1470         data = bdev->data;
1471
1472         _I("Format Start : (%s -> %s)",
1473                         data->devnode, data->mount_point);
1474
1475         if (data->state == BLOCK_MOUNT) {
1476                 r = block_unmount(bdev, option);
1477                 if (r < 0) {
1478                         _E("fail to unmount %s device : %d", data->devnode, r);
1479                         goto out;
1480                 }
1481         }
1482
1483         r = block_format(data, fs_type, bdev->mount_point_updated);
1484         if (r < 0)
1485                 _E("fail to format %s device : %d", data->devnode, r);
1486
1487 out:
1488         _I("%s result : %s, %d", __func__, data->devnode, r);
1489
1490         r = pipe_trigger(BLOCK_DEV_FORMAT, bdev, r);
1491         if (r < 0)
1492                 _E("fail to trigger pipe");
1493
1494         return r;
1495 }
1496
1497 static struct format_data *get_format_data(
1498                 const char *fs_type, enum unmount_operation option)
1499 {
1500         struct format_data *fdata;
1501
1502         fdata = (struct format_data *)malloc(sizeof(struct format_data));
1503         if (!fdata) {
1504                 _E("fail to allocate format data");
1505                 return NULL;
1506         }
1507
1508         if (fs_type)
1509                 fdata->fs_type = strdup(fs_type);
1510         else
1511                 fdata->fs_type = NULL;
1512         fdata->option = option;
1513
1514         return fdata;
1515 }
1516
1517 static void release_format_data(struct format_data *data)
1518 {
1519         if (data) {
1520                 if (data->fs_type)
1521                         free(data->fs_type);
1522                 free(data);
1523         }
1524 }
1525
1526 // Called by BlockThread - Real Mount Op
1527 static int block_mount_device(struct block_device *bdev, void *data)
1528 {
1529         dd_list *l;
1530         int ret;
1531         int thread_id;
1532
1533         if (!bdev)
1534                 return -EINVAL;
1535
1536         thread_id = bdev->thread_id;
1537         if (thread_id < 0 || thread_id >= THREAD_MAX)
1538                 return -EINVAL;
1539         pthread_mutex_lock(&(th_manager[thread_id].mutex));
1540         l = DD_LIST_FIND(th_manager[thread_id].block_dev_list, bdev);
1541         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1542         if (!l) {
1543                 _E("(%d) does not exist in the device list", bdev->data->devnode);
1544                 return -ENOENT;
1545         }
1546
1547         /* mount automatically */
1548         ret = mount_block_device(bdev);
1549         if (ret < 0)
1550                 _E("fail to mount block device for %s", bdev->data->devnode);
1551
1552         return ret;
1553 }
1554
1555 // Called by BlockThread - Real Format Op
1556 static int block_format_device(struct block_device *bdev, void *data)
1557 {
1558         dd_list *l;
1559         int ret;
1560         int thread_id;
1561         struct format_data *fdata = (struct format_data *)data;
1562
1563         if (!bdev || !fdata) {
1564                 ret = -EINVAL;
1565                 goto out;
1566         }
1567
1568         thread_id = bdev->thread_id;
1569         if (thread_id < 0 || thread_id >= THREAD_MAX)
1570                 return -EINVAL;
1571         pthread_mutex_lock(&(th_manager[thread_id].mutex));
1572         l = DD_LIST_FIND(th_manager[thread_id].block_dev_list, bdev);
1573         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1574         if (!l) {
1575                 _E("(%d) does not exist in the device list", bdev->data->devnode);
1576                 ret = -ENOENT;
1577                 goto out;
1578         }
1579
1580         ret = format_block_device(bdev, fdata->fs_type, fdata->option);
1581         if (ret < 0)
1582                 _E("fail to mount block device for %s", bdev->data->devnode);
1583
1584 out:
1585         release_format_data(fdata);
1586
1587         return ret;
1588 }
1589
1590 // Called by BlockThread - Real Unmount Op
1591 static int block_unmount_device(struct block_device *bdev, void *data)
1592 {
1593         int ret;
1594         long option = (long)data;
1595
1596         if (!bdev)
1597                 return -EINVAL;
1598
1599         ret = unmount_block_device(bdev, option);
1600         if (ret < 0) {
1601                 _E("Failed to unmount block device (%s)", bdev->data->devnode);
1602                 return ret;
1603         }
1604
1605         return 0;
1606 }
1607
1608 /* Called by BlockThread - Remove Operation
1609    Direct Call at BlockThread
1610    Previously this function was called by MainThread. However, it will increase complexity.
1611    Need thread lock before to call remove_operation
1612 */
1613 static void remove_operation(struct block_device *bdev)
1614 {
1615         struct operation_queue *op;
1616         dd_list *l, *next;
1617         char name[16];
1618         int thread_id;
1619
1620         assert(bdev);
1621
1622         thread_id = bdev->thread_id;
1623         if (thread_id < 0 || thread_id >= THREAD_MAX)
1624                 return;
1625
1626         DD_LIST_FOREACH_SAFE(bdev->op_queue, l, next, op) {
1627                 if (op->done) {
1628                         _D("Remove operation (%s, %s)",
1629                                         get_operation_char(op->op, name, sizeof(name)),
1630                                         bdev->data->devnode);
1631
1632                         DD_LIST_REMOVE(bdev->op_queue, op);
1633                         free(op);
1634                 }
1635         }
1636 }
1637
1638 static void block_send_dbus_reply(dbus_method_reply_handle_h reply_handle, int result)
1639 {
1640         DBusMessage *rep;
1641
1642         if (!reply_handle)
1643                 return;
1644
1645         rep = make_dbus_reply_message_simple(reply_handle, result);
1646         reply_dbus_method_result(reply_handle, rep);
1647 }
1648
1649 // Called by BlockThread
1650 static void check_removed(struct block_device *bdev, dd_list **queue, struct operation_queue **op)
1651 {
1652         struct operation_queue *temp;
1653         dd_list *l;
1654         int thread_id;
1655
1656         if (!bdev)
1657                 return;
1658
1659         if (!queue)
1660                 return;
1661
1662         if (!op)
1663                 return;
1664
1665         thread_id = bdev->thread_id;
1666         if (thread_id < 0 || thread_id >= THREAD_MAX)
1667                 return;
1668
1669         pthread_mutex_lock(&(th_manager[thread_id].mutex));
1670
1671         DD_LIST_FOREACH(*queue, l, temp) {
1672                 if (temp->op == BLOCK_DEV_REMOVE) {
1673                         *op = temp;
1674                         break;
1675                 }
1676                 temp->done = true;
1677                 th_manager[thread_id].op_len--;
1678                 block_send_dbus_reply((*op)->reply_handle, 0);
1679         }
1680
1681         remove_operation(bdev);
1682         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1683 }
1684
1685 // Called by BlockThread
1686 static bool check_unmount(struct block_device *bdev, dd_list **queue, struct operation_queue **op)
1687 {
1688         struct operation_queue *temp;
1689         dd_list *l;
1690         int thread_id;
1691         bool unmounted = false;
1692
1693         if (!bdev)
1694                 return false;
1695
1696         if (!queue)
1697                 return false;
1698
1699         if (!op)
1700                 return false;
1701
1702         thread_id = bdev->thread_id;
1703         if (thread_id < 0 || thread_id >= THREAD_MAX)
1704                 return false;
1705
1706         pthread_mutex_lock(&(th_manager[thread_id].mutex));
1707         DD_LIST_FOREACH(*queue, l, temp) {
1708                 if (temp->op == BLOCK_DEV_UNMOUNT) {
1709                         unmounted = true;
1710                         _D("Operation queue has unmount operation");
1711                         break;
1712                 }
1713         }
1714         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1715
1716         if (!unmounted)
1717                 return unmounted;
1718
1719         pthread_mutex_lock(&(th_manager[thread_id].mutex));
1720
1721         DD_LIST_FOREACH(*queue, l, temp) {
1722                 if (temp->op == BLOCK_DEV_UNMOUNT) {
1723                         *op = temp;
1724                         break;
1725                 }
1726                 temp->done = true;
1727                 th_manager[thread_id].op_len--;
1728                 block_send_dbus_reply((*op)->reply_handle, 0);
1729         }
1730
1731         remove_operation(bdev);
1732         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1733
1734         return unmounted;
1735 }
1736
1737 // Called by BlockThread
1738 static void trigger_operation(struct block_device *bdev, dd_list *queue, struct operation_queue *op)
1739 {
1740         int ret = 0;
1741         int thread_id;
1742         char devnode[PATH_MAX];
1743         char name[16];
1744         enum block_dev_operation operation;
1745         bool unmounted = false;
1746
1747         assert(bdev);
1748
1749         if (!queue)
1750                 return;
1751
1752         thread_id = bdev->thread_id;
1753         if (thread_id < 0 || thread_id >= THREAD_MAX)
1754                 return;
1755
1756         snprintf(devnode, sizeof(devnode), "%s", bdev->data->devnode);
1757
1758         do {
1759                 if (!op)
1760                         return;
1761                 if (op->done)
1762                         return;
1763
1764                 operation = op->op;
1765
1766                 _D("Thread id %d Trigger operation (%s, %s)", thread_id,
1767                         get_operation_char(operation, name, sizeof(name)), devnode);
1768
1769                 unmounted = false;
1770                 if (operation == BLOCK_DEV_INSERT && bdev->removed) {
1771                         check_removed(bdev, &queue, &op);
1772                         operation = op->op;
1773                         _D("Trigger operation again (%s, %s)",
1774                                 get_operation_char(operation, name, sizeof(name)), devnode);
1775                 }
1776                 if (operation == BLOCK_DEV_MOUNT) {
1777                         unmounted = check_unmount(bdev, &queue, &op);
1778                         if (unmounted) {
1779                                 operation = op->op;
1780                                 _D("Trigger operation again (%s, %s)",
1781                                         get_operation_char(operation, name, sizeof(name)), devnode);
1782                         }
1783                 }
1784
1785                 switch (operation) {
1786                 case BLOCK_DEV_INSERT:
1787                         break;
1788                 case BLOCK_DEV_MOUNT:
1789                         ret = block_mount_device(bdev, op->data);
1790                         _D("Mount (%s) result:(%d)", devnode, ret);
1791                         break;
1792                 case BLOCK_DEV_FORMAT:
1793                         ret = block_format_device(bdev, op->data);
1794                         _D("Format (%s) result:(%d)", devnode, ret);
1795                         break;
1796                 case BLOCK_DEV_UNMOUNT:
1797                         ret = block_unmount_device(bdev, op->data);
1798                         _D("Unmount (%s) result:(%d)", devnode, ret);
1799                         break;
1800                 case BLOCK_DEV_REMOVE:
1801                         /* Do nothing */
1802                         break;
1803                 default:
1804                         _E("Operation type is invalid (%d)", op->op);
1805                         ret = -EINVAL;
1806                         break;
1807                 }
1808
1809                 /* LOCK
1810                  * during checking the queue length */
1811                 pthread_mutex_lock(&(th_manager[thread_id].mutex));
1812
1813                 op->done = true;
1814                 th_manager[thread_id].op_len--;
1815
1816                 block_send_dbus_reply(op->reply_handle, ret);
1817
1818                 queue = bdev->op_queue;
1819                 if (queue != NULL) {
1820                         queue = DD_LIST_NEXT(queue);
1821                         if (queue != NULL)
1822                                 op = DD_LIST_NTH(queue, 0);
1823                         else
1824                                 op = NULL;
1825                 } else
1826                         op = NULL;
1827
1828                 remove_operation(bdev);
1829
1830                 pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1831                 /* UNLOCK */
1832
1833
1834                 if (operation == BLOCK_DEV_INSERT || operation == BLOCK_DEV_REMOVE) {
1835                         if (pipe_trigger(operation, bdev, 0) < 0)
1836                                 _E("fail to trigger pipe");
1837                 }
1838
1839         } while (true);
1840
1841 }
1842
1843 // Called by BlockThread
1844 static void *block_th_start(void *arg)
1845 {
1846         struct block_device *temp;
1847         struct manage_thread *th = (struct manage_thread *)arg;
1848         struct operation_queue *op = NULL;
1849         dd_list *elem;
1850         dd_list *queue = NULL;
1851         int thread_id;
1852
1853         assert(th);
1854
1855         thread_id = th->thread_id;
1856         if (thread_id < 0 || thread_id >= THREAD_MAX) {
1857                 _E("Thread Number: %d", th->thread_id);
1858                 return NULL;
1859         }
1860
1861         do {
1862                 pthread_mutex_lock(&(th_manager[thread_id].mutex));
1863                 if (th_manager[thread_id].op_len == 0) {
1864                         _D("Operation queue of thread is empty");
1865                         pthread_cond_wait(&(th_manager[thread_id].cond), &(th_manager[thread_id].mutex));
1866                         _D("Wake up %d", thread_id);
1867                 }
1868
1869                 DD_LIST_FOREACH(th_manager[thread_id].block_dev_list, elem, temp) {
1870                         queue = temp->op_queue;
1871                         do {
1872                                 op = DD_LIST_NTH(queue, 0);
1873                                 if (!op) {
1874                                         _D("Operation queue for device %s is Empty", temp->data->devnode);
1875                                         break;
1876                                 }
1877                                 if (op->done) {
1878                                         queue = DD_LIST_NEXT(queue);
1879                                         continue;
1880                                 }
1881                                 break;
1882                         } while (true);
1883                         if (op)
1884                                 break;
1885                 }
1886                 pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1887
1888                 if (op && !op->done)
1889                         trigger_operation(temp, queue, op);
1890
1891         } while (true);
1892 }
1893
1894 // This function will be refactored later
1895 // Especially, we don't need to keep th_node_list.
1896 static int find_thread(char *devnode)
1897 {
1898         dd_list *elem;
1899         char str[PATH_MAX];
1900         char *th_node;
1901         char *temp;
1902         char dev_scsi;
1903         int i, len, min, min_num;
1904         int dev_mmc = -1, part = -1, num;
1905
1906         len = 0;
1907         if (!fnmatch("*/"MMC_PARTITION_PATH, devnode, 0)) {
1908                 sscanf(devnode, "/dev/mmcblk%dp%d", &dev_mmc, &part);
1909                 num = dev_mmc;
1910                 while (num > 0) {
1911                         num = num / 10;
1912                         len++;
1913                 }
1914                 len = len + 12;
1915                 snprintf(str, len, "/dev/mmcblk%d", dev_mmc);
1916                 th_node = strdup(str);
1917         } else if (!fnmatch("*/"SCSI_PARTITION_PATH, devnode, 0)) {
1918                 sscanf(devnode, "/dev/sd%c%d", &dev_scsi, &part);
1919                 snprintf(str, SCSI_PARTITION_LENGTH, "/dev/sd%c", dev_scsi);
1920                 th_node = strdup(str);
1921         } else
1922                 th_node = devnode;
1923
1924         len = strlen(th_node) + 1;
1925         min_num = 1000;
1926         min = -1;
1927         for (i = 0; i < THREAD_MAX; i++) {
1928                 DD_LIST_FOREACH(th_manager[i].th_node_list, elem, temp) {
1929                         if (!strncmp(temp, th_node, len))
1930                                 return i;
1931                 }
1932                 if (th_manager[i].num_dev < min_num) {
1933                         min_num = th_manager[i].num_dev;
1934                         min = i;
1935                 }
1936         }
1937
1938         if (min >= 0 && min < THREAD_MAX) {
1939                 DD_LIST_APPEND(th_manager[min].th_node_list, th_node);
1940                 return min;
1941         }
1942
1943         _E("Finding thread is failed");
1944         DD_LIST_APPEND(th_manager[0].th_node_list, th_node);
1945         return 0;
1946 }
1947
1948 /* Only Main thread is permmited */
1949 // Called by MainThread
1950 static int add_operation(struct block_device *bdev,
1951                 enum block_dev_operation operation,
1952                 dbus_method_reply_handle_h reply_handle, void *data)
1953 {
1954         struct operation_queue *op;
1955         int ret;
1956         int thread_id;
1957         bool start_th;
1958         char name[16];
1959
1960         if (!bdev)
1961                 return -EINVAL;
1962
1963
1964         _I("Add operation (%s, %s)",
1965                         get_operation_char(operation, name, sizeof(name)),
1966                         bdev->data->devnode);
1967
1968         thread_id = bdev->thread_id;
1969         if (thread_id < 0 || thread_id >= THREAD_MAX) {
1970                 _E("Fail to find thread to add");
1971                 return -EPERM;
1972         }
1973
1974         op = (struct operation_queue *)malloc(sizeof(struct operation_queue));
1975         if (!op) {
1976                 _E("malloc failed");
1977                 return -ENOMEM;
1978         }
1979
1980         op->op = operation;
1981         op->data = data;
1982         op->reply_handle = reply_handle;
1983
1984         /* LOCK
1985          * during adding queue and checking the queue length */
1986         pthread_mutex_lock(&(th_manager[thread_id].mutex));
1987
1988         /* Only modified between lock and unlock of mutex */
1989         op->done = false;
1990
1991         start_th = th_manager[thread_id].start_th;
1992         DD_LIST_APPEND(bdev->op_queue, op);
1993         th_manager[thread_id].op_len++;
1994
1995         if (th_manager[thread_id].op_len == 1 && !start_th)
1996                 pthread_cond_signal(&(th_manager[thread_id].cond));
1997
1998         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
1999         /* UNLOCK */
2000
2001         /* Need to disble app2ext whenever unmounting mmc */
2002         if (op->op == BLOCK_DEV_UNMOUNT &&
2003                 bdev->data->state == BLOCK_MOUNT &&
2004                 bdev->data->block_type == BLOCK_MMC_DEV &&
2005                 bdev->data->primary)
2006                 if (app2ext_disable_all_external_pkgs() < 0)
2007                         _E("app2ext_disable_all_external_pkgs() failed");
2008
2009
2010         if (start_th) {
2011                 _D("Start New thread for block device");
2012                 th_manager[thread_id].start_th = false;
2013                 ret = pthread_create(&(th_manager[thread_id].th), NULL, block_th_start, &th_manager[thread_id]);
2014                 if (ret != 0) {
2015                         _E("fail to create thread for %s", bdev->data->devnode);
2016                         return -EPERM;
2017                 }
2018
2019                 pthread_detach(th_manager[thread_id].th);
2020         }
2021
2022         return 0;
2023 }
2024
2025 static bool disk_is_partitioned_by_kernel(struct udev_device *dev)
2026 {
2027         DIR *dp;
2028         struct dirent entry;
2029         struct dirent *dir;
2030         const char *syspath;
2031         bool ret = false;
2032
2033         syspath = udev_device_get_syspath(dev);
2034         if (!syspath)
2035                 goto out;
2036
2037         dp = opendir(syspath);
2038         if (!dp) {
2039                 _E("fail to open %s", syspath);
2040                 goto out;
2041         }
2042
2043         /* TODO compare devname and d_name */
2044         while (readdir_r(dp, &entry, &dir) == 0 && dir != NULL) {
2045                 if (!fnmatch(MMC_PARTITION_PATH, dir->d_name, 0) ||
2046                     !fnmatch(SCSI_PARTITION_PATH, dir->d_name, 0)) {
2047                         ret = true;
2048                         break;
2049                 }
2050         }
2051
2052         closedir(dp);
2053
2054 out:
2055         return ret;
2056 }
2057
2058 static bool check_partition(struct udev_device *dev)
2059 {
2060         const char *devtype;
2061         const char *part_table_type;
2062         const char *fs_usage;
2063         bool ret = false;
2064
2065         /* only consider disk type, never partitions */
2066         devtype = udev_device_get_devtype(dev);
2067         if (!devtype)
2068                 goto out;
2069
2070         if (strncmp(devtype, BLOCK_DEVTYPE_DISK,
2071                                 sizeof(BLOCK_DEVTYPE_DISK)) != 0)
2072                 goto out;
2073
2074         part_table_type = udev_device_get_property_value(dev,
2075                         "ID_PART_TABLE_TYPE");
2076         if (part_table_type) {
2077                 fs_usage = udev_device_get_property_value(dev,
2078                                 "ID_FS_USAGE");
2079                 if (fs_usage &&
2080                     strncmp(fs_usage, FILESYSTEM, sizeof(FILESYSTEM)) == 0) {
2081                         if (!disk_is_partitioned_by_kernel(dev))
2082                                         goto out;
2083                 }
2084                 ret = true;
2085                 goto out;
2086         }
2087
2088         if (disk_is_partitioned_by_kernel(dev)) {
2089                 ret = true;
2090                 goto out;
2091         }
2092
2093 out:
2094         return ret;
2095 }
2096
2097 // Called by MainThread
2098 static int add_block_device(struct udev_device *dev, const char *devnode, bool init)
2099 {
2100         struct block_data *data;
2101         struct block_device *bdev;
2102         char id_string[PATH_LEN];
2103         bool partition;
2104         int ret;
2105         int thread_id;
2106
2107         partition = check_partition(dev);
2108         if (partition) {
2109                 /* if there is a partition, skip this request */
2110                 _I("%s device has partitions, skip this time", devnode);
2111                 return 0;
2112         }
2113
2114         data = make_block_data(devnode,
2115                         udev_device_get_syspath(dev),
2116                         udev_device_get_property_value(dev, "ID_FS_USAGE"),
2117                         udev_device_get_property_value(dev, "ID_FS_TYPE"),
2118                         udev_device_get_property_value(dev, "ID_FS_VERSION"),
2119                         udev_device_get_property_value(dev, "ID_FS_UUID_ENC"),
2120                         udev_device_get_sysattr_value(dev, "ro"));
2121         if (!data) {
2122                 _E("fail to make block data for %s", devnode);
2123                 return -EPERM;
2124         }
2125
2126         if (!block_conf[data->block_type].multimount && !data->primary) {
2127                 _D("Not support multi mount by config info");
2128                 return -EPERM;
2129         }
2130
2131         bdev = make_block_device(data);
2132         if (!bdev) {
2133                 _E("fail to make block device for %s", devnode);
2134                 free_block_data(data);
2135                 return -EPERM;
2136         }
2137
2138         thread_id = find_thread(bdev->data->devnode);
2139         if (thread_id < 0 || thread_id >= THREAD_MAX) {
2140                 _E("Fail to find thread to add");
2141                 free_block_device(bdev);
2142                 return -EPERM;
2143         }
2144         bdev->thread_id = thread_id;
2145
2146         pthread_mutex_lock(&(th_manager[thread_id].mutex));
2147         th_manager[thread_id].num_dev++;
2148         DD_LIST_APPEND(th_manager[thread_id].block_dev_list, bdev);
2149
2150         pthread_mutex_unlock(&(th_manager[thread_id].mutex));
2151
2152         ret = add_operation(bdev, BLOCK_DEV_INSERT, NULL, (void *)data);
2153         if (ret < 0) {
2154                 _E("Failed to add operation (insert %s)", devnode);
2155                 free_block_device(bdev);
2156                 return ret;
2157         }
2158
2159         /* Check this sdcard is already formatted for extended internal sdcard */
2160         if (block_conf[bdev->data->block_type].extendedinternal &&
2161                 bdev->data->block_type == BLOCK_MMC_DEV &&
2162                 bdev->data->primary) {
2163                 _I("Check whether sdcard will be used as extended internal storage");
2164
2165                 if (!init) { // after booting is done
2166                         snprintf(id_string, PATH_LEN, "%d", bdev->data->id);
2167                         ret = launch_system_app(POPUP_DEFAULT, 4, POPUP_KEY_CONTENT, "sdcardsetup", POPUP_SDCARD_ID, id_string);
2168                         if (ret < 0)
2169                                 _E("Failed to launch popup");
2170                         return 0;
2171                 } else { // at booting time
2172                         if (!bdev->data->fs_type) {
2173                                 _E("Unformatted Storage");
2174                                 free_block_device(bdev);
2175                                 return -EPERM;
2176                         }
2177
2178                         if (!strncmp(bdev->data->fs_type, LUKS_NAME, strlen(LUKS_NAME))) {
2179                                 bdev->data->block_type = BLOCK_MMC_EXTENDED_INTERNAL_DEV;
2180                                 ret = change_mount_point(bdev, EXTENDED_SD_PATH);
2181                                 if (ret < 0) {
2182                                         ret = -EPERM;
2183                                         return ret;
2184                                 }
2185
2186                         }
2187                 }
2188         } else {
2189                 if (!bdev->data->fs_type) {
2190                         _E("Unformatted Storage");
2191                         free_block_device(bdev);
2192                         return -EPERM;
2193                 }
2194         }
2195
2196         /* Create file for block device /run/external-storage/id */
2197         if (bdev->data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV)
2198                 create_file(bdev->data->id, bdev->data->mount_point, true);
2199         else
2200                 create_file(bdev->data->id, bdev->data->mount_point, false);
2201         ret = add_operation(bdev, BLOCK_DEV_MOUNT, NULL, NULL);
2202         if (ret < 0) {
2203                 _E("Failed to add operation (mount %s)", devnode);
2204                 return ret;
2205         }
2206         return 0;
2207 }
2208
2209 static int remove_block_device(struct udev_device *dev, const char *devnode)
2210 {
2211         struct block_device *bdev;
2212         int ret;
2213
2214         bdev = find_block_device(devnode);
2215         if (!bdev) {
2216                 _E("fail to find block data for %s", devnode);
2217                 return -ENODEV;
2218         }
2219
2220         BLOCK_FLAG_SET(bdev->data, UNMOUNT_UNSAFE);
2221
2222         bdev->removed = true;
2223         if (bdev->on_private_op != REQ_NORMAL) {
2224                 bdev->on_private_op = REQ_NORMAL;
2225                 _D("Private operation state: %d", bdev->on_private_op);
2226         }
2227
2228         ret = add_operation(bdev, BLOCK_DEV_UNMOUNT, NULL, (void *)UNMOUNT_FORCE);
2229         if (ret < 0) {
2230                 _E("Failed to add operation (unmount %s)", devnode);
2231                 return ret;
2232         }
2233
2234         ret = add_operation(bdev, BLOCK_DEV_REMOVE, NULL, NULL);
2235         if (ret < 0) {
2236                 _E("Failed to add operation (remove %s)", devnode);
2237                 return ret;
2238         }
2239
2240         return 0;
2241 }
2242
2243 static int get_internal_storage_number(void)
2244 {
2245         struct libmnt_table *t = NULL;
2246         struct libmnt_fs *fs;
2247         const char *temp;
2248         char *name;
2249         int r = 0, dev_temp;
2250
2251         if ((!is_emulator() && (dev_internal >= 0 || dev_internal_scsi != '\0')) ||
2252                 (is_emulator() && dev_internal_emul != '\0'))
2253                 return 0;
2254
2255         t = mnt_new_table();
2256         if (!t)
2257                 return -EPERM;
2258
2259         r = mnt_table_parse_mtab(t, NULL);
2260         if (r < 0) {
2261                 mnt_free_table(t);
2262                 return -EPERM;
2263         }
2264
2265         fs = mnt_table_find_target(t, ROOT_DIR, MNT_ITER_BACKWARD);
2266
2267         if (!fs) {
2268                 mnt_free_table(t);
2269                 return -EPERM;
2270         }
2271         temp = mnt_fs_get_srcpath(fs);
2272         if (!temp)
2273                 return -EPERM;
2274
2275         name = strrchr(temp, '/');
2276         if (!name)
2277                 return -EPERM;
2278         name++;
2279         /* Boot from USB is not handled */
2280         if (!is_emulator()) {
2281                 if (!fnmatch(MMC_PATH, temp, 0))
2282                         sscanf(name, "mmcblk%d", &dev_internal);
2283                 else if (!fnmatch(SCSI_PATH, temp, 0))
2284                         sscanf(name, "sd%c", &dev_internal_scsi);
2285         } else {
2286                 if (!fnmatch(MMC_LINK_PATH, temp, 0))
2287                         sscanf(name, "vd%c%d", &dev_internal_emul, &dev_temp);
2288                 else
2289                         dev_internal_emul = '\0';
2290         }
2291
2292         mnt_free_table(t);
2293
2294         return 0;
2295 }
2296
2297 static int check_external_storage(const char* devnode)
2298 {
2299         char dev_scsi = '\0';
2300         char *name;
2301         char emul = '\0';
2302         int dev_num = -1, dev_temp;
2303
2304         if (!devnode)
2305                 return -EPERM;
2306
2307         name = strrchr(devnode, '/');
2308         if (!name)
2309                 return -EPERM;
2310         name++;
2311         if (!is_emulator()) {
2312                 if (!fnmatch(MMC_PATH, devnode, 0)) {
2313                         sscanf(name, "mmcblk%d", &dev_num);
2314                         if (dev_internal == dev_num) {
2315                                 _D("%s is internal storage", devnode);
2316                                 return 0;
2317                         }
2318                 } else if (!fnmatch(SCSI_PATH, devnode, 0)) {
2319                         sscanf(name, "sd%c", &dev_scsi);
2320                         if (dev_internal_scsi == dev_scsi) {
2321                                 _D("%s is internal storage", devnode);
2322                                 return 0;
2323                         }
2324                 }
2325         } else {
2326                 if (!fnmatch(MMC_LINK_PATH, devnode, 0)) {
2327                         sscanf(name, "vd%c%d", &emul, &dev_temp);
2328                         if (dev_internal_emul == emul) {
2329                                 _D("%s is internal storage", devnode);
2330                                 return 0;
2331                         }
2332                 }
2333         }
2334
2335         return 1;
2336 }
2337
2338 static int check_already_handled(const char* devnode)
2339 {
2340         struct block_device *bdev;
2341         struct block_data *data;
2342         dd_list *elem;
2343         int i;
2344
2345         for (i = 0; i < THREAD_MAX; i++) {
2346                 pthread_mutex_lock(&(th_manager[i].mutex));
2347                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
2348                         data = bdev->data;
2349                         if (!data)
2350                                 continue;
2351                         if (bdev->removed)
2352                                 continue;
2353                         if (!strncmp(data->devnode, devnode, strlen(devnode) + 1)) {
2354                                 pthread_mutex_unlock(&(th_manager[i].mutex));
2355                                 return -1;
2356                         }
2357                 }
2358                 pthread_mutex_unlock(&(th_manager[i].mutex));
2359         }
2360
2361         return 0;
2362 }
2363
2364 static int block_init_from_udev_enumerate(void)
2365 {
2366         struct udev *udev;
2367         struct udev_enumerate *enumerate;
2368         struct udev_list_entry *list_entry, *list_sub_entry;
2369         struct udev_device *dev;
2370         const char *syspath;
2371         const char *devnode;
2372         int r = 0;
2373
2374         udev = udev_new();
2375         if (!udev) {
2376                 _E("fail to create udev library context");
2377                 return -EPERM;
2378         }
2379
2380         /* create a list of the devices in the 'usb' subsystem */
2381         enumerate = udev_enumerate_new(udev);
2382         if (!enumerate) {
2383                 _E("fail to create an enumeration context");
2384                 return -EPERM;
2385         }
2386
2387         if ((dev_internal < 0 && !is_emulator() && dev_internal_scsi == '\0') ||
2388                 (is_emulator() && dev_internal_emul == '\0')) {
2389                 r = get_internal_storage_number();
2390                 if (r < 0)
2391                         return -EPERM;
2392         }
2393
2394         udev_enumerate_add_match_subsystem(enumerate, BLOCK_SUBSYSTEM);
2395         udev_enumerate_add_match_property(enumerate,
2396                         UDEV_DEVTYPE, BLOCK_DEVTYPE_DISK);
2397         udev_enumerate_add_match_property(enumerate,
2398                         UDEV_DEVTYPE, BLOCK_DEVTYPE_PARTITION);
2399         udev_enumerate_scan_devices(enumerate);
2400
2401         udev_list_entry_foreach(list_entry,
2402                         udev_enumerate_get_list_entry(enumerate)) {
2403                 syspath = udev_list_entry_get_name(list_entry);
2404                 if (!syspath)
2405                         continue;
2406
2407                 dev = udev_device_new_from_syspath(
2408                                 udev_enumerate_get_udev(enumerate),
2409                                 syspath);
2410                 if (!dev)
2411                         continue;
2412
2413                 devnode = NULL;
2414                 udev_list_entry_foreach(list_sub_entry,
2415                                 udev_device_get_devlinks_list_entry(dev)) {
2416                         const char *devlink = udev_list_entry_get_name(list_sub_entry);
2417                         if (!fnmatch(MMC_LINK_PATH, devlink, 0)) {
2418                                 devnode = devlink;
2419                                 break;
2420                         }
2421                 }
2422
2423                 if (!devnode) {
2424                         devnode = udev_device_get_devnode(dev);
2425                         if (!devnode)
2426                                 continue;
2427
2428                         if (fnmatch(MMC_PATH, devnode, 0) &&
2429                             fnmatch(SCSI_PATH, devnode, 0))
2430                                 continue;
2431                 }
2432
2433                 r = check_external_storage(devnode);
2434                 if (r <= 0)
2435                         continue;
2436
2437                 r = check_already_handled(devnode);
2438                 if (r < 0) {
2439                         _I("%s is already handled", devnode);
2440                         continue;
2441                 }
2442
2443                 _I("%s device add", devnode);
2444                 add_block_device(dev, devnode, true);
2445
2446                 udev_device_unref(dev);
2447         }
2448
2449         udev_enumerate_unref(enumerate);
2450         udev_unref(udev);
2451         return 0;
2452 }
2453
2454 // Called by MainThread
2455 static void show_block_device_list(void)
2456 {
2457         struct block_device *bdev;
2458         struct block_data *data;
2459         dd_list *elem;
2460         int i;
2461
2462         for (i = 0; i < THREAD_MAX; i++) {
2463                 pthread_mutex_lock(&(th_manager[i].mutex));
2464                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
2465                         data = bdev->data;
2466                         if (!data)
2467                                 continue;
2468                         if (bdev->removed)
2469                                 continue;
2470                         _D("%s:", data->devnode);
2471                         _D("\tSyspath: %s", data->syspath);
2472                         _D("\tBlock type: %d", data->block_type);
2473                         _D("\tFs type: %s", data->fs_type);
2474                         _D("\tFs usage: %s", data->fs_usage);
2475                         _D("\tFs version: %s", data->fs_version);
2476                         _D("\tFs uuid enc: %s", data->fs_uuid_enc);
2477                         _D("\tReadonly: %s",
2478                                         (data->readonly ? "true" : "false"));
2479                         _D("\tMount point: %s", data->mount_point);
2480                         _D("\tMount state: %s",
2481                                         (data->state == BLOCK_MOUNT ?
2482                                          "mount" : "unmount"));
2483                         _D("\tPrimary: %s",
2484                                         (data->primary ? "true" : "false"));
2485                         _D("\tID: %d", data->id);
2486                 }
2487                 pthread_mutex_unlock(&(th_manager[i].mutex));
2488         }
2489 }
2490
2491 // Called by MainThread
2492 static void remove_whole_block_device(void)
2493 {
2494         struct block_device *bdev;
2495         dd_list *elem;
2496         dd_list *next;
2497         int r;
2498         int i;
2499
2500         for (i = 0; i < THREAD_MAX; i++) {
2501                 do {
2502                         pthread_mutex_lock(&(th_manager[i].mutex));
2503                         DD_LIST_FOREACH_SAFE(th_manager[i].block_dev_list, elem, next, bdev) {
2504                                 if (bdev->removed == false)
2505                                         break;
2506                         }
2507                         pthread_mutex_unlock(&(th_manager[i].mutex));
2508
2509                         if (bdev && bdev->removed == false) {
2510                                 bdev->removed = true;
2511                                 r = add_operation(bdev, BLOCK_DEV_UNMOUNT, NULL, (void *)UNMOUNT_NORMAL);
2512                                 if (r < 0)
2513                                         _E("Failed to add operation (unmount %s)", bdev->data->devnode);
2514
2515                                 r = add_operation(bdev, BLOCK_DEV_REMOVE, NULL, NULL);
2516                                 if (r < 0)
2517                                         _E("Failed to add operation (remove %s)", bdev->data->devnode);
2518                         } else
2519                                 break;
2520                 } while (true);
2521         }
2522 }
2523
2524 static void booting_done(const char *sender_name,
2525                 const char *object_path, const char *interface_name,
2526                 const char *signal_name, DBusMessage *msg,
2527                 void *data)
2528 {
2529         static int done = 0;
2530         if (done > 0)
2531                 return;
2532         done = 1;
2533         _I("Booting done");
2534         /* if there is the attached device, try to mount */
2535         block_init_from_udev_enumerate();
2536         block_control = true;
2537         block_boot = true;
2538 }
2539
2540 static void block_poweroff(const char *sender_name,
2541                 const char *object_path, const char *interface_name,
2542                 const char *signal_name, DBusMessage *msg,
2543                 void *data)
2544 {
2545         static int status = 0;
2546         if (status > 0)
2547                 return;
2548         status = 1;
2549         _I("Power off");
2550         /* unregister mmc uevent control routine */
2551         unregister_udev_uevent_control(&uh);
2552         remove_whole_block_device();
2553 }
2554
2555 static void uevent_block_handler(struct udev_device *dev)
2556 {
2557         const char *devnode = NULL;
2558         const char *action;
2559         struct udev_list_entry *list_entry;
2560         int r;
2561
2562         udev_list_entry_foreach(list_entry, udev_device_get_devlinks_list_entry(dev)) {
2563                 const char *devlink = udev_list_entry_get_name(list_entry);
2564                 if (!fnmatch(MMC_LINK_PATH, devlink, 0)) {
2565                         devnode = devlink;
2566                         break;
2567                 }
2568         }
2569
2570         if (!devnode) {
2571                 devnode = udev_device_get_devnode(dev);
2572                 if (!devnode)
2573                         return;
2574
2575                 if (fnmatch(MMC_PATH, devnode, 0) &&
2576                     fnmatch(SCSI_PATH, devnode, 0))
2577                         return;
2578         }
2579
2580         r = check_external_storage(devnode);
2581         if (r <= 0)
2582                 return;
2583
2584         action = udev_device_get_action(dev);
2585         if (!action)
2586                 return;
2587
2588         _I("%s device %s", devnode, action);
2589         if (!strncmp(action, UDEV_ADD, sizeof(UDEV_ADD))) {
2590                 r = check_already_handled(devnode);
2591                 if (r < 0) {
2592                         _I("%s is already handled", devnode);
2593                         return;
2594                 }
2595
2596                 add_block_device(dev, devnode, false);
2597         } else if (!strncmp(action, UDEV_REMOVE, sizeof(UDEV_REMOVE)))
2598                 remove_block_device(dev, devnode);
2599 }
2600
2601 static DBusMessage *request_mount_block(dbus_method_reply_handle_h reply_handle,
2602                 DBusMessage *msg, bool onprivate)
2603 {
2604         struct block_device *bdev;
2605         char *mount_point;
2606         int id;
2607         int ret = -EBADMSG;
2608
2609         if (!reply_handle || !msg)
2610                 goto out;
2611
2612         ret = dbus_message_get_args(msg, NULL,
2613                         DBUS_TYPE_INT32, &id,
2614                         DBUS_TYPE_STRING, &mount_point,
2615                         DBUS_TYPE_INVALID);
2616         if (!ret)
2617                 goto out;
2618
2619         bdev = find_block_device_by_id(id);
2620         if (!bdev) {
2621                 _E("Failed to find (%d) in the device list", id);
2622                 ret = -ENOENT;
2623                 goto out;
2624         }
2625         if (bdev->on_private_op != REQ_NORMAL) {
2626                 ret = -EPERM;
2627                 goto out;
2628         }
2629
2630         if (bdev->data->state == BLOCK_MOUNT) {
2631                 _I("%s is already mounted", bdev->data->devnode);
2632                 ret = -EALREADY;
2633                 goto out;
2634         }
2635
2636         if (onprivate) {
2637                 bdev->on_private_op = REQ_PRIVATE;
2638                 bdev->private_pid = get_dbus_method_sender_pid(reply_handle);
2639                 _D("Private operation state: %d", bdev->on_private_op);
2640         } else {
2641                 if (bdev->on_private_op != REQ_NORMAL) {
2642                         _E("Failed to process mount operation");
2643                         ret = -EPERM;
2644                         goto out;
2645                 }
2646         }
2647
2648         /* if requester want to use a specific mount point */
2649         if (mount_point &&
2650                 !strncmp(mount_point, EXTENDED_SD_STRING, strlen(EXTENDED_SD_STRING) + 1) != 0) {
2651                 if (!block_conf[bdev->data->block_type].extendedinternal ||
2652                         !bdev->data->primary) {
2653                         _E("Not support extended internal storage");
2654                         ret = -EPERM;
2655                         goto out;
2656                 } else {
2657                         bdev->data->block_type = BLOCK_MMC_EXTENDED_INTERNAL_DEV;
2658                         ret = change_mount_point(bdev, EXTENDED_SD_PATH);
2659                         if (ret < 0) {
2660                                 ret = -EPERM;
2661                                 goto out;
2662                         }
2663
2664                         create_file(bdev->data->id, bdev->data->mount_point, true);
2665                 }
2666         } else if (mount_point && strncmp(mount_point, "", 1) != 0) {
2667                 ret = change_mount_point(bdev, mount_point);
2668                 if (ret < 0) {
2669                         ret = -EPERM;
2670                         goto out;
2671                 }
2672
2673                 /* Create /run/external-storage/id file */
2674                 create_file(bdev->data->id, bdev->data->mount_point, false);
2675         } else {
2676                 /* Create file for block device /run/external-storage/id */
2677                 create_file(bdev->data->id, bdev->data->mount_point, false);
2678         }
2679
2680         ret = add_operation(bdev, BLOCK_DEV_MOUNT, reply_handle, NULL);
2681         if (ret < 0) {
2682                 _E("Failed to add operation (mount %s)", bdev->data->devnode);
2683                 goto out;
2684         }
2685
2686         return NULL;
2687
2688 out:
2689         return make_dbus_reply_message_simple(reply_handle, ret);
2690 }
2691
2692 static DBusMessage *request_public_mount_block(dbus_method_reply_handle_h reply_handle,
2693                 DBusMessage *msg)
2694 {
2695         return request_mount_block(reply_handle, msg, false);
2696 }
2697
2698 static DBusMessage *request_private_mount_block(dbus_method_reply_handle_h reply_handle,
2699                 DBusMessage *msg)
2700 {
2701         return request_mount_block(reply_handle, msg, true);
2702 }
2703
2704 static DBusMessage *request_unmount_block(dbus_method_reply_handle_h reply_handle,
2705                 DBusMessage *msg, bool onprivate)
2706 {
2707         struct block_device *bdev;
2708         pid_t pid;
2709         long option;
2710         int id;
2711         int ret = -EBADMSG;
2712
2713         if (!reply_handle || !msg)
2714                 goto out;
2715
2716         ret = dbus_message_get_args(msg, NULL,
2717                         DBUS_TYPE_INT32, &id,
2718                         DBUS_TYPE_INT32, &option,
2719                         DBUS_TYPE_INVALID);
2720         if (!ret)
2721                 goto out;
2722
2723         bdev = find_block_device_by_id(id);
2724         if (!bdev) {
2725                 _E("Failed to find (%d) in the device list", id);
2726                 ret = -ENOENT;
2727                 goto out;
2728         }
2729         if (bdev->data->block_type == BLOCK_MMC_EXTENDED_INTERNAL_DEV) {
2730                 _I("Impossible to request unmount extended internal sdcard");
2731                 ret = -EPERM;
2732                 goto out;
2733         }
2734
2735         if (onprivate) {
2736                 pid = get_dbus_method_sender_pid(reply_handle);
2737                 if (bdev->on_private_op == REQ_NORMAL || (bdev->on_private_op != REQ_NORMAL && pid != bdev->private_pid)) {
2738                         _E("Failed to process private unmount operation");
2739                         ret = -EPERM;
2740                         goto out;
2741                 }
2742         } else {
2743                 if (bdev->on_private_op != REQ_NORMAL) {
2744                         _E("Failed to process unmount operation");
2745                         ret = -EPERM;
2746                         goto out;
2747                 }
2748         }
2749
2750         ret = add_operation(bdev, BLOCK_DEV_UNMOUNT, reply_handle, (void *)option);
2751         if (ret < 0) {
2752                 _E("Failed to add operation (unmount %s)", bdev->data->devnode);
2753                 goto out;
2754         }
2755
2756         return NULL;
2757
2758 out:
2759         return make_dbus_reply_message_simple(reply_handle, ret);
2760 }
2761
2762 static DBusMessage *request_public_unmount_block(dbus_method_reply_handle_h reply_handle,
2763                 DBusMessage *msg)
2764 {
2765         return request_unmount_block(reply_handle, msg, false);
2766 }
2767
2768 static DBusMessage *request_private_unmount_block(dbus_method_reply_handle_h reply_handle,
2769                 DBusMessage *msg)
2770 {
2771         return request_unmount_block(reply_handle, msg, true);
2772 }
2773
2774 static DBusMessage *request_format_block(dbus_method_reply_handle_h reply_handle,
2775                 DBusMessage *msg)
2776 {
2777         struct block_device *bdev;
2778         struct format_data *fdata;
2779         pid_t pid;
2780         int id;
2781         int option;
2782         int ret = -EBADMSG;
2783         int prev_state;
2784
2785         if (!reply_handle || !msg)
2786                 goto out;
2787
2788         ret = dbus_message_get_args(msg, NULL,
2789                         DBUS_TYPE_INT32, &id,
2790                         DBUS_TYPE_INT32, &option,
2791                         DBUS_TYPE_INVALID);
2792         if (!ret)
2793                 goto out;
2794
2795         bdev = find_block_device_by_id(id);
2796         if (!bdev) {
2797                 _E("Failed to find (%d) in the device list", id);
2798                 goto out;
2799         }
2800
2801         pid = get_dbus_method_sender_pid(reply_handle);
2802         if (bdev->on_private_op != REQ_NORMAL && pid != bdev->private_pid) {
2803                 _E("Failed to format on private state");
2804                 ret = -EPERM;
2805                 goto out;
2806         }
2807
2808         fdata = get_format_data(NULL, option);
2809         if (!fdata) {
2810                 _E("Failed to get format data");
2811                 goto out;
2812         }
2813
2814         prev_state = bdev->data->state;
2815         if (prev_state == BLOCK_MOUNT) {
2816                 if (bdev->on_private_op == REQ_PRIVATE) {
2817                         bdev->on_private_op = REQ_PRIVATE_FORMAT;
2818                         _D("Private operation state: %d", bdev->on_private_op);
2819                 }
2820                 ret = add_operation(bdev, BLOCK_DEV_UNMOUNT, NULL, (void *)UNMOUNT_FORCE);
2821                 if (ret < 0) {
2822                         _E("Failed to add operation (unmount %s)", bdev->data->devnode);
2823                         release_format_data(fdata);
2824                         goto out;
2825                 }
2826         }
2827
2828         ret = add_operation(bdev, BLOCK_DEV_FORMAT, reply_handle, (void *)fdata);
2829         if (ret < 0) {
2830                 _E("Failed to add operation (format %s)", bdev->data->devnode);
2831                 release_format_data(fdata);
2832         }
2833
2834         /* Maintain previous state of mount/unmount */
2835         if (prev_state == BLOCK_MOUNT) {
2836                 if (add_operation(bdev, BLOCK_DEV_MOUNT, NULL, NULL) < 0) {
2837                         _E("Failed to add operation (mount %s)", bdev->data->devnode);
2838                         goto out;
2839                 }
2840         }
2841
2842         return NULL;
2843
2844 out:
2845         return make_dbus_reply_message_simple(reply_handle, ret);
2846 }
2847
2848 static DBusMessage *request_format_block_type(dbus_method_reply_handle_h reply_handle,
2849                 DBusMessage *msg)
2850 {
2851         struct block_device *bdev;
2852         struct format_data *fdata;
2853         char *type;
2854         pid_t pid;
2855         int id;
2856         int option;
2857         int ret = -EBADMSG;
2858         int prev_state;
2859
2860         if (!reply_handle || !msg)
2861                 goto out;
2862
2863         ret = dbus_message_get_args(msg, NULL,
2864                         DBUS_TYPE_INT32, &id,
2865                         DBUS_TYPE_INT32, &option,
2866                         DBUS_TYPE_STRING, &type,
2867                         DBUS_TYPE_INVALID);
2868         if (!ret)
2869                 goto out;
2870
2871         bdev = find_block_device_by_id(id);
2872         if (!bdev) {
2873                 _E("Failed to find (%d) in the device list", id);
2874                 goto out;
2875         }
2876
2877         pid = get_dbus_method_sender_pid(reply_handle);
2878         if (bdev->on_private_op != REQ_NORMAL && pid != bdev->private_pid) {
2879                 _E("Failed to format on private state");
2880                 ret = -EPERM;
2881                 goto out;
2882         }
2883
2884         fdata = get_format_data(type, option);
2885         if (!fdata) {
2886                 _E("Failed to get format data");
2887                 goto out;
2888         }
2889
2890         prev_state = bdev->data->state;
2891         if (prev_state == BLOCK_MOUNT) {
2892                 if (bdev->on_private_op == REQ_PRIVATE) {
2893                         bdev->on_private_op = REQ_PRIVATE_FORMAT;
2894                         _D("Private operation state: %d", bdev->on_private_op);
2895                 }
2896                 ret = add_operation(bdev, BLOCK_DEV_UNMOUNT, NULL, (void *)UNMOUNT_FORCE);
2897                 if (ret < 0) {
2898                         _E("Failed to add operation (unmount %s)", bdev->data->devnode);
2899                         release_format_data(fdata);
2900                         goto out;
2901                 }
2902         }
2903
2904         ret = add_operation(bdev, BLOCK_DEV_FORMAT, reply_handle, (void *)fdata);
2905         if (ret < 0) {
2906                 _E("Failed to add operation (format %s)", bdev->data->devnode);
2907                 release_format_data(fdata);
2908         }
2909
2910         /* Maintain previous state of mount/unmount */
2911         if (prev_state == BLOCK_MOUNT) {
2912                 if (add_operation(bdev, BLOCK_DEV_MOUNT, NULL, NULL) < 0) {
2913                         _E("Failed to add operation (mount %s)", bdev->data->devnode);
2914                         goto out;
2915                 }
2916         }
2917
2918         return NULL;
2919
2920 out:
2921         return make_dbus_reply_message_simple(reply_handle, ret);
2922 }
2923
2924 static int add_device_to_iter(struct block_data *data, DBusMessageIter *piter)
2925 {
2926         char *str_null = "";
2927
2928         if (!data || !piter)
2929                 return -EINVAL;
2930
2931         dbus_message_iter_append_basic(piter, DBUS_TYPE_INT32,
2932                         &(data->block_type));
2933         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2934                         data->devnode ? &(data->devnode) : &str_null);
2935         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2936                         data->syspath ? &(data->syspath) : &str_null);
2937         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2938                         data->fs_usage ? &(data->fs_usage) : &str_null);
2939         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2940                         data->fs_type ? &(data->fs_type) : &str_null);
2941         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2942                         data->fs_version ? &(data->fs_version) : &str_null);
2943         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2944                         data->fs_uuid_enc ? &(data->fs_uuid_enc) : &str_null);
2945         dbus_message_iter_append_basic(piter, DBUS_TYPE_INT32,
2946                         &(data->readonly));
2947         dbus_message_iter_append_basic(piter, DBUS_TYPE_STRING,
2948                         data->mount_point ? &(data->mount_point) : &str_null);
2949         dbus_message_iter_append_basic(piter, DBUS_TYPE_INT32,
2950                         &(data->state));
2951         dbus_message_iter_append_basic(piter, DBUS_TYPE_BOOLEAN,
2952                         &(data->primary));
2953         dbus_message_iter_append_basic(piter, DBUS_TYPE_INT32,
2954                         &(data->flags));
2955         dbus_message_iter_append_basic(piter, DBUS_TYPE_INT32,
2956                         &(data->id));
2957
2958         return 0;
2959 }
2960
2961
2962 static int add_device_to_struct_iter(struct block_data *data, DBusMessageIter *iter)
2963 {
2964         DBusMessageIter piter;
2965
2966         if (!data || !iter)
2967                 return -EINVAL;
2968
2969         dbus_message_iter_open_container(iter, DBUS_TYPE_STRUCT, NULL, &piter);
2970         add_device_to_iter(data, &piter);
2971         dbus_message_iter_close_container(iter, &piter);
2972
2973         return 0;
2974 }
2975
2976 static int add_device_to_iter_2(struct block_data *data, DBusMessageIter *iter)
2977 {
2978         DBusMessageIter piter;
2979         char *str_null = "";
2980
2981         if (!data || !iter)
2982                 return -EINVAL;
2983
2984         dbus_message_iter_open_container(iter, DBUS_TYPE_STRUCT, NULL, &piter);
2985         dbus_message_iter_append_basic(&piter, DBUS_TYPE_INT32,
2986                         &(data->block_type));
2987         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
2988                         data->devnode ? &(data->devnode) : &str_null);
2989         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
2990                         data->syspath ? &(data->syspath) : &str_null);
2991         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
2992                         data->fs_usage ? &(data->fs_usage) : &str_null);
2993         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
2994                         data->fs_type ? &(data->fs_type) : &str_null);
2995         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
2996                         data->fs_version ? &(data->fs_version) : &str_null);
2997         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
2998                         data->fs_uuid_enc ? &(data->fs_uuid_enc) : &str_null);
2999         dbus_message_iter_append_basic(&piter, DBUS_TYPE_INT32,
3000                         &(data->readonly));
3001         dbus_message_iter_append_basic(&piter, DBUS_TYPE_STRING,
3002                         data->mount_point ? &(data->mount_point) : &str_null);
3003         dbus_message_iter_append_basic(&piter, DBUS_TYPE_INT32,
3004                         &(data->state));
3005         dbus_message_iter_append_basic(&piter, DBUS_TYPE_BOOLEAN,
3006                         &(data->primary));
3007         dbus_message_iter_append_basic(&piter, DBUS_TYPE_INT32,
3008                         &(data->flags));
3009         dbus_message_iter_close_container(iter, &piter);
3010
3011         return 0;
3012 }
3013
3014 static DBusMessage *request_get_device_info(dbus_method_reply_handle_h reply_handle,
3015                 DBusMessage *msg)
3016 {
3017         DBusMessageIter iter;
3018         DBusMessage *reply;
3019         struct block_device *bdev;
3020         struct block_data *data;
3021         int ret, id;
3022
3023         if (!reply_handle || !msg)
3024                 return NULL;
3025
3026         reply = make_dbus_reply_message(reply_handle);
3027         if (!reply)
3028                 goto out;
3029
3030         ret = dbus_message_get_args(msg, NULL,
3031                         DBUS_TYPE_INT32, &id,
3032                         DBUS_TYPE_INVALID);
3033         if (!ret)
3034                 goto out;
3035
3036         bdev = find_block_device_by_id(id);
3037         if (!bdev)
3038                 goto out;
3039         data = bdev->data;
3040         if (!data)
3041                 goto out;
3042
3043         dbus_message_iter_init_append(reply, &iter);
3044         add_device_to_iter(data, &iter);
3045
3046 out:
3047         return reply;
3048 }
3049
3050 static DBusMessage *request_show_device_list(dbus_method_reply_handle_h reply_handle,
3051                 DBusMessage *msg)
3052 {
3053         show_block_device_list();
3054         return make_dbus_reply_message(reply_handle);
3055 }
3056
3057 // Called by MainThread
3058 static DBusMessage *request_get_device_list(dbus_method_reply_handle_h reply_handle,
3059                 DBusMessage *msg)
3060 {
3061         DBusMessageIter iter;
3062         DBusMessageIter aiter;
3063         DBusMessage *reply;
3064         struct block_device *bdev;
3065         struct block_data *data;
3066         dd_list *elem;
3067         char *type = NULL;
3068         int ret = -EBADMSG;
3069         int block_type;
3070         int i;
3071
3072         reply = make_dbus_reply_message(reply_handle);
3073
3074         ret = dbus_message_get_args(msg, NULL,
3075                         DBUS_TYPE_STRING, &type,
3076                         DBUS_TYPE_INVALID);
3077         if (!ret) {
3078                 _E("Failed to get args");
3079                 goto out;
3080         }
3081
3082         if (!type) {
3083                 _E("Delivered type is NULL");
3084                 goto out;
3085         }
3086
3087         _D("Block (%s) device list is requested", type);
3088
3089         if (!strncmp(type, BLOCK_TYPE_SCSI, sizeof(BLOCK_TYPE_SCSI)))
3090                 block_type = BLOCK_SCSI_DEV;
3091         else if (!strncmp(type, BLOCK_TYPE_MMC, sizeof(BLOCK_TYPE_MMC)))
3092                 block_type = BLOCK_MMC_DEV;
3093         else if (!strncmp(type, BLOCK_TYPE_ALL, sizeof(BLOCK_TYPE_ALL)))
3094                 block_type = -1;
3095         else {
3096                 _E("Invalid type (%s) is requested", type);
3097                 goto out;
3098         }
3099
3100         dbus_message_iter_init_append(reply, &iter);
3101         dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "(issssssisibii)", &aiter);
3102
3103         for (i = 0; i < THREAD_MAX; i++) {
3104                 pthread_mutex_lock(&(th_manager[i].mutex));
3105                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
3106                         data = bdev->data;
3107                         if (!data)
3108                                 continue;
3109                         if (bdev->removed)
3110                                 continue;
3111
3112                         switch (block_type) {
3113                         case BLOCK_SCSI_DEV:
3114                         case BLOCK_MMC_DEV:
3115                                 if (data->block_type != block_type)
3116                                         continue;
3117                                 break;
3118                         default:
3119                                 break;
3120                         }
3121                         add_device_to_struct_iter(data, &aiter);
3122                 }
3123                 pthread_mutex_unlock(&(th_manager[i].mutex));
3124         }
3125         dbus_message_iter_close_container(&iter, &aiter);
3126
3127 out:
3128         return reply;
3129 }
3130
3131 // Called by MainThread
3132 static DBusMessage *request_get_device_list_2(dbus_method_reply_handle_h reply_handle,
3133                 DBusMessage *msg)
3134 {
3135         DBusMessageIter iter;
3136         DBusMessageIter aiter;
3137         DBusMessage *reply;
3138         struct block_device *bdev;
3139         struct block_data *data;
3140         dd_list *elem;
3141         char *type = NULL;
3142         int ret = -EBADMSG;
3143         int block_type;
3144         int i;
3145
3146         reply = make_dbus_reply_message(reply_handle);
3147
3148         ret = dbus_message_get_args(msg, NULL,
3149                         DBUS_TYPE_STRING, &type,
3150                         DBUS_TYPE_INVALID);
3151         if (!ret) {
3152                 _E("Failed to get args");
3153                 goto out;
3154         }
3155
3156         if (!type) {
3157                 _E("Delivered type is NULL");
3158                 goto out;
3159         }
3160
3161         _D("Block (%s) device list is requested", type);
3162
3163         if (!strncmp(type, BLOCK_TYPE_SCSI, sizeof(BLOCK_TYPE_SCSI)))
3164                 block_type = BLOCK_SCSI_DEV;
3165         else if (!strncmp(type, BLOCK_TYPE_MMC, sizeof(BLOCK_TYPE_MMC)))
3166                 block_type = BLOCK_MMC_DEV;
3167         else if (!strncmp(type, BLOCK_TYPE_ALL, sizeof(BLOCK_TYPE_ALL)))
3168                 block_type = -1;
3169         else {
3170                 _E("Invalid type (%s) is requested", type);
3171                 goto out;
3172         }
3173
3174         dbus_message_iter_init_append(reply, &iter);
3175         dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "(issssssisibi)", &aiter);
3176
3177         for (i = 0; i < THREAD_MAX; i++) {
3178                 pthread_mutex_lock(&(th_manager[i].mutex));
3179                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
3180                         data = bdev->data;
3181                         if (!data)
3182                                 continue;
3183                         if (bdev->removed)
3184                                 continue;
3185
3186                         switch (block_type) {
3187                         case BLOCK_SCSI_DEV:
3188                         case BLOCK_MMC_DEV:
3189                                 if (data->block_type != block_type)
3190                                         continue;
3191                                 break;
3192                         default:
3193                                 break;
3194                         }
3195
3196                         add_device_to_iter_2(data, &aiter);
3197                 }
3198                 pthread_mutex_unlock(&(th_manager[i].mutex));
3199         }
3200         dbus_message_iter_close_container(&iter, &aiter);
3201
3202 out:
3203         return reply;
3204 }
3205
3206 static DBusMessage *request_get_mmc_primary(dbus_method_reply_handle_h reply_handle,
3207                 DBusMessage *msg)
3208 {
3209         DBusMessageIter iter;
3210         DBusMessage *reply;
3211         struct block_device *bdev;
3212         struct block_data *data, nodata = {0,};
3213         dd_list *elem;
3214         bool found;
3215         int i;
3216
3217         if (!reply_handle || !msg)
3218                 return NULL;
3219
3220         reply = make_dbus_reply_message(reply_handle);
3221         if (!reply)
3222                 goto out;
3223
3224         found = false;
3225         for (i = 0; i < THREAD_MAX; i++) {
3226                 pthread_mutex_lock(&(th_manager[i].mutex));
3227                 DD_LIST_FOREACH(th_manager[i].block_dev_list, elem, bdev) {
3228                         data = bdev->data;
3229                         if (!data)
3230                                 continue;
3231                         if (bdev->removed)
3232                                 continue;
3233                         if (data->block_type != BLOCK_MMC_DEV)
3234                                 continue;
3235                         if (!data->primary)
3236                                 continue;
3237                         found = true;
3238                         break;
3239                 }
3240                 pthread_mutex_unlock(&(th_manager[i].mutex));
3241                 if (found)
3242                         break;
3243         }
3244
3245         dbus_message_iter_init_append(reply, &iter);
3246         if (found)
3247                 add_device_to_iter(data, &iter);
3248         else {
3249                 nodata.id = -ENODEV;
3250                 add_device_to_iter(&nodata, &iter);
3251         }
3252
3253 out:
3254         return reply;
3255 }
3256
3257 /*
3258   Method name      Method call format string  Reply format string
3259 { "ShowDeviceList",                      NULL,               NULL, request_show_device_list },
3260 { "GetDeviceList",                        "s", "a(issssssisibii)", request_get_device_list },
3261 { "GetDeviceList2",                       "s",  "a(issssssisibi)", request_get_device_list_2 },
3262 { "Mount",                               "is",                "i", request_public_mount_block },
3263 { "Unmoun,                               "ii",                "i", request_public_unmount_block },
3264 { "Format",                              "ii",                "i", request_format_block },
3265 { "GetDeviceInfo",                        "i",  "(issssssisibii)", request_get_device_info },
3266 { "GetMmcPrimary",                       NULL, "(issssssisibii)" , request_get_mmc_primary },
3267 { "PrivateMount",                        "is",                "i", request_private_mount_block },
3268 { "PrivateUnmount",                      "ii",                "i", request_private_unmount_block },
3269 */
3270
3271 static const dbus_method_s manager_methods[] = {
3272         { "ShowDeviceList",         NULL, request_show_device_list },
3273         { "GetDeviceList" ,         "s", request_get_device_list },
3274         { "GetDeviceList2",         "s", request_get_device_list_2 },
3275         { "Mount",                  "is", request_public_mount_block },
3276         { "Unmount",                "ii", request_public_unmount_block },
3277         { "Format",                 "ii", request_format_block },
3278         { "FormatwithType",        "iis", request_format_block_type },
3279         { "GetDeviceInfo",          "i", request_get_device_info },
3280         { "GetMmcPrimary" ,         NULL, request_get_mmc_primary },
3281         { "PrivateMount",           "is", request_private_mount_block },
3282         { "PrivateUnmount",         "ii", request_private_unmount_block },
3283 };
3284
3285 static dbus_interface_s block_interface = {
3286         .name = STORAGED_INTERFACE_BLOCK_MANAGER,
3287         .methods = manager_methods,
3288         .nr_methods = ARRAY_SIZE(manager_methods),
3289 };
3290
3291 static int load_config(struct parse_result *result, void *user_data)
3292 {
3293         int index;
3294
3295         if (MATCH(result->section, "Block"))
3296                 return 0;
3297
3298         if (MATCH(result->section, "SCSI"))
3299                 index = BLOCK_SCSI_DEV;
3300         else if (MATCH(result->section, "MMC"))
3301                 index = BLOCK_MMC_DEV;
3302         else
3303                 return -EINVAL;
3304
3305         if (MATCH(result->name, "Multimount"))
3306                 block_conf[index].multimount =
3307                         (MATCH(result->value, "yes") ? true : false);
3308         if (MATCH(result->name, "ExtendedInternalStorage"))
3309                 block_conf[index].extendedinternal =
3310                         (MATCH(result->value, "yes") ? true : false);
3311
3312         if (index == BLOCK_MMC_DEV) {
3313                 block_conf[index + 1].multimount = block_conf[index].multimount;
3314                 block_conf[index + 1].extendedinternal = block_conf[index].extendedinternal;
3315         }
3316
3317         return 0;
3318 }
3319
3320 #ifdef BLOCK_TMPFS
3321 static int mount_root_path_tmpfs(void)
3322 {
3323         int ret;
3324         const char *root;
3325
3326         root = tzplatform_getenv(TZ_SYS_MEDIA);
3327         if (!root)
3328                 return -ENOTSUP;
3329
3330         if (access(root, F_OK) != 0)
3331                 return -ENODEV;
3332
3333         if (mount_check(root))
3334                 return 0;
3335
3336         ret = mount("tmpfs", root, "tmpfs", 0, "smackfsroot=System::Shared");
3337         if (ret < 0) {
3338                 ret = -errno;
3339                 _E("tmpfs mount failed (%d)", ret);
3340                 return ret;
3341         }
3342
3343         return 0;
3344 }
3345 #else
3346 #define mount_root_path_tmpfs() 0
3347 #endif
3348
3349 static void block_init(void *data)
3350 {
3351         struct stat buf;
3352         int ret;
3353         int i;
3354         dbus_handle_h handle;
3355
3356         udev_init(NULL);
3357
3358         /* load config */
3359         ret = config_parse(BLOCK_CONF_FILE, load_config, NULL);
3360         if (ret < 0)
3361                 _E("fail to load %s, Use default value", BLOCK_CONF_FILE);
3362
3363         ret = mount_root_path_tmpfs();
3364         if (ret < 0)
3365                 _E("Failed to mount tmpfs to root mount path (%d)", ret);
3366
3367         ret = dbus_get_connection(&handle);
3368         if (ret < 0)
3369                 _E("Failed to get dbus connection(%d)", ret);
3370
3371         /* register block manager object and interface */
3372         ret = register_dbus_methods(handle,
3373                         STORAGED_PATH_BLOCK_MANAGER, &block_interface,
3374                         NULL, NULL);
3375         if (ret < 0)
3376                 _E("Failed to register block interface and methods (%d)", ret);
3377
3378         /* init pipe */
3379         ret = pipe_init();
3380         if (ret < 0)
3381                 _E("fail to init pipe");
3382
3383         /* register mmc uevent control routine */
3384         ret = register_udev_uevent_control(&uh);
3385         if (ret < 0)
3386                 _E("fail to register block uevent : %d", ret);
3387
3388         /* System Session is loaded completely */
3389         register_dbus_signal(SYSTEMD_DBUS_PATH,
3390                     SYSTEMD_DBUS_IFACE_MANAGER,
3391                     SYSTEMD_DBUS_SIGNAL_SYSTEM_STARTUP_FINISHED,
3392                     booting_done, NULL, NULL);
3393
3394         register_dbus_signal(DEVICED_PATH_POWEROFF,
3395                         DEVICED_INTERFACE_POWEROFF,
3396                         SIGNAL_POWEROFF_STATE,
3397                         block_poweroff, NULL, NULL);
3398
3399         for (i = 0; i < THREAD_MAX; i++) {
3400                 th_manager[i].num_dev = 0;
3401                 th_manager[i].op_len = 0;
3402                 th_manager[i].start_th = true;
3403                 th_manager[i].thread_id = i;
3404                 pthread_mutex_init(&(th_manager[i].mutex), NULL);
3405                 pthread_cond_init(&(th_manager[i].cond), NULL);
3406         }
3407
3408         ret = stat(EXTERNAL_STORAGE_PATH, &buf);
3409         if (ret < 0) {
3410                 ret = mkdir(EXTERNAL_STORAGE_PATH, 0755);
3411                 if (ret < 0)
3412                         _E("Failed to make directory: %d", errno);
3413         } else if (!S_ISDIR(buf.st_mode)) {
3414                 ret = remove(EXTERNAL_STORAGE_PATH);
3415                 if (ret < 0)
3416                         _E("Fail to remove %s. errno: %d", EXTERNAL_STORAGE_PATH, errno);
3417                 ret = mkdir(EXTERNAL_STORAGE_PATH, 0755);
3418                 if (ret < 0)
3419                         _E("Failed to make directory: %d", errno);
3420         } else {
3421                 ret = chmod(EXTERNAL_STORAGE_PATH, 0644);
3422                 if (ret < 0)
3423                         _E("Fail to change permissions of a file");
3424         }
3425
3426         ret = stat(EXTENDED_INTERNAL_PATH, &buf);
3427         if (ret < 0) {
3428                 ret = mkdir(EXTENDED_INTERNAL_PATH, 0755);
3429                 if (ret < 0)
3430                         _E("Failed to make directory: %d", errno);
3431         } else if (!S_ISDIR(buf.st_mode)) {
3432                 ret = remove(EXTENDED_INTERNAL_PATH);
3433                 if (ret < 0)
3434                         _E("Fail to remove %s. errno: %d", EXTENDED_INTERNAL_PATH, errno);
3435                 ret = mkdir(EXTENDED_INTERNAL_PATH, 0755);
3436                 if (ret < 0)
3437                         _E("Failed to make directory: %d", errno);
3438         } else {
3439                 ret = chmod(EXTENDED_INTERNAL_PATH, 0644);
3440                 if (ret < 0)
3441                         _E("Fail to change permissions of a file");
3442         }
3443 }
3444
3445 static void block_exit(void *data)
3446 {
3447         int ret, i;
3448
3449         udev_exit(NULL);
3450
3451         /* unregister notifier for below each event */
3452         unregister_dbus_signal(SYSTEMD_DBUS_PATH,
3453                     SYSTEMD_DBUS_IFACE_MANAGER,
3454                     SYSTEMD_DBUS_SIGNAL_SYSTEM_STARTUP_FINISHED,
3455                     booting_done);
3456
3457         unregister_dbus_signal(DEVICED_PATH_POWEROFF,
3458                         DEVICED_INTERFACE_POWEROFF,
3459                         SIGNAL_POWEROFF_STATE, block_poweroff);
3460
3461         /* exit pipe */
3462         pipe_exit();
3463
3464         /* unregister mmc uevent control routine */
3465         ret = unregister_udev_uevent_control(&uh);
3466         if (ret < 0)
3467                 _E("fail to unregister block uevent : %d", ret);
3468
3469         /* remove remaining blocks */
3470         remove_whole_block_device();
3471
3472         for (i = 0; i < THREAD_MAX; i++) {
3473                 if (!th_manager[i].start_th)
3474                         pthread_cancel(th_manager[i].th);
3475         }
3476
3477         block_control = false;
3478 }
3479
3480 static int block_start(void *data)
3481 {
3482         int ret;
3483
3484         if (!block_boot) {
3485                 _E("Cannot be started. Booting is not ready");
3486                 return -ENODEV;
3487         }
3488
3489         if (block_control) {
3490                 _I("Already started");
3491                 return 0;
3492         }
3493
3494         /* register mmc uevent control routine */
3495         ret = register_udev_uevent_control(&uh);
3496         if (ret < 0)
3497                 _E("fail to register block uevent : %d", ret);
3498
3499         block_init_from_udev_enumerate();
3500
3501         block_control = true;
3502
3503         _I("start");
3504         return 0;
3505 }
3506
3507 static int block_stop(void *data)
3508 {
3509         if (!block_boot) {
3510                 _E("Cannot be stopped. Booting is not ready");
3511                 return -ENODEV;
3512         }
3513
3514         if (!block_control) {
3515                 _I("Already stopped");
3516                 return 0;
3517         }
3518
3519         /* unregister mmc uevent control routine */
3520         unregister_udev_uevent_control(&uh);
3521
3522         /* remove the existing blocks */
3523         remove_whole_block_device();
3524
3525         block_control = false;
3526
3527         _I("stop");
3528         return 0;
3529 }
3530
3531 static storaged_module_interface block_module = {
3532         .name     = "block",
3533         .init     = block_init,
3534         .exit     = block_exit,
3535         .start    = block_start,
3536         .stop     = block_stop,
3537 };
3538
3539 __attribute__ ((visibility("default")))storaged_module_interface *
3540 storaged_get_module_interface(void)
3541 {
3542         return &block_module;
3543 }