2 * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
30 #include <sys/types.h>
32 #include <sys/mount.h>
34 #include <sys/sysmacros.h>
39 #include <libubox/avl-cmp.h>
40 #include <libubox/blobmsg_json.h>
41 #include <libubox/list.h>
42 #include <libubox/ulog.h>
43 #include <libubox/utils.h>
44 #include <libubox/vlist.h>
49 #define AUTOFS_MOUNT_PATH "/tmp/run/blockd/"
52 #include "libubi/libubi.h"
67 struct vlist_node node
;
84 static struct vlist_tree mounts
;
85 static struct blob_buf b
;
86 static LIST_HEAD(devices
);
87 static int anon_mount
, anon_swap
, auto_mount
, auto_swap
, check_fs
;
88 static unsigned int delay_root
;
100 static const struct blobmsg_policy config_policy
[__CFG_MAX
] = {
101 [CFG_ANON_SWAP
] = { .name
= "anon_swap", .type
= BLOBMSG_TYPE_INT32
},
102 [CFG_ANON_MOUNT
] = { .name
= "anon_mount", .type
= BLOBMSG_TYPE_INT32
},
103 [CFG_AUTO_SWAP
] = { .name
= "auto_swap", .type
= BLOBMSG_TYPE_INT32
},
104 [CFG_AUTO_MOUNT
] = { .name
= "auto_mount", .type
= BLOBMSG_TYPE_INT32
},
105 [CFG_DELAY_ROOT
] = { .name
= "delay_root", .type
= BLOBMSG_TYPE_INT32
},
106 [CFG_CHECK_FS
] = { .name
= "check_fs", .type
= BLOBMSG_TYPE_INT32
},
120 static const struct uci_blob_param_list config_attr_list
= {
121 .n_params
= __CFG_MAX
,
122 .params
= config_policy
,
125 static const struct blobmsg_policy mount_policy
[__MOUNT_MAX
] = {
126 [MOUNT_UUID
] = { .name
= "uuid", .type
= BLOBMSG_TYPE_STRING
},
127 [MOUNT_LABEL
] = { .name
= "label", .type
= BLOBMSG_TYPE_STRING
},
128 [MOUNT_DEVICE
] = { .name
= "device", .type
= BLOBMSG_TYPE_STRING
},
129 [MOUNT_TARGET
] = { .name
= "target", .type
= BLOBMSG_TYPE_STRING
},
130 [MOUNT_OPTIONS
] = { .name
= "options", .type
= BLOBMSG_TYPE_STRING
},
131 [MOUNT_ENABLE
] = { .name
= "enabled", .type
= BLOBMSG_TYPE_INT32
},
132 [MOUNT_AUTOFS
] = { .name
= "autofs", .type
= BLOBMSG_TYPE_INT32
},
135 static const struct uci_blob_param_list mount_attr_list
= {
136 .n_params
= __MOUNT_MAX
,
137 .params
= mount_policy
,
149 static const struct blobmsg_policy swap_policy
[__SWAP_MAX
] = {
150 [SWAP_ENABLE
] = { .name
= "enabled", .type
= BLOBMSG_TYPE_INT32
},
151 [SWAP_UUID
] = { .name
= "uuid", .type
= BLOBMSG_TYPE_STRING
},
152 [SWAP_LABEL
] = { .name
= "label", .type
= BLOBMSG_TYPE_STRING
},
153 [SWAP_DEVICE
] = { .name
= "device", .type
= BLOBMSG_TYPE_STRING
},
154 [SWAP_PRIO
] = { .name
= "priority", .type
= BLOBMSG_TYPE_INT32
},
157 static const struct uci_blob_param_list swap_attr_list
= {
158 .n_params
= __SWAP_MAX
,
159 .params
= swap_policy
,
167 static const struct mount_flag mount_flags
[] = {
168 { "sync", MS_SYNCHRONOUS
},
169 { "async", ~MS_SYNCHRONOUS
},
170 { "dirsync", MS_DIRSYNC
},
171 { "mand", MS_MANDLOCK
},
172 { "nomand", ~MS_MANDLOCK
},
173 { "atime", ~MS_NOATIME
},
174 { "noatime", MS_NOATIME
},
175 { "dev", ~MS_NODEV
},
176 { "nodev", MS_NODEV
},
177 { "diratime", ~MS_NODIRATIME
},
178 { "nodiratime", MS_NODIRATIME
},
179 { "exec", ~MS_NOEXEC
},
180 { "noexec", MS_NOEXEC
},
181 { "suid", ~MS_NOSUID
},
182 { "nosuid", MS_NOSUID
},
183 { "rw", ~MS_RDONLY
},
185 { "relatime", MS_RELATIME
},
186 { "norelatime", ~MS_RELATIME
},
187 { "strictatime", MS_STRICTATIME
},
188 { "acl", MS_POSIXACL
},
189 { "noacl", ~MS_POSIXACL
},
190 { "nouser_xattr", MS_NOUSER
},
191 { "user_xattr", ~MS_NOUSER
},
194 static char *blobmsg_get_strdup(struct blob_attr
*attr
)
199 return strdup(blobmsg_get_string(attr
));
202 static char *blobmsg_get_basename(struct blob_attr
*attr
)
207 return strdup(basename(blobmsg_get_string(attr
)));
210 static void parse_mount_options(struct mount
*m
, char *optstr
)
214 char *p
, *opts
, *last
;
219 if (!optstr
|| !*optstr
)
222 m
->options
= opts
= calloc(1, strlen(optstr
) + 1);
235 for (i
= 0, is_flag
= false; i
< ARRAY_SIZE(mount_flags
); i
++) {
236 if (!strcmp(last
, mount_flags
[i
].name
)) {
237 if (mount_flags
[i
].flag
< 0)
238 m
->flags
&= (uint32_t)mount_flags
[i
].flag
;
240 m
->flags
|= (uint32_t)mount_flags
[i
].flag
;
247 opts
+= sprintf(opts
, "%s%s", (opts
> m
->options
) ? "," : "", last
);
256 static int mount_add(struct uci_section
*s
)
258 struct blob_attr
*tb
[__MOUNT_MAX
] = { 0 };
261 blob_buf_init(&b
, 0);
262 uci_to_blob(&b
, s
, &mount_attr_list
);
263 blobmsg_parse(mount_policy
, __MOUNT_MAX
, tb
, blob_data(b
.head
), blob_len(b
.head
));
265 if (!tb
[MOUNT_LABEL
] && !tb
[MOUNT_UUID
] && !tb
[MOUNT_DEVICE
])
268 if (tb
[MOUNT_ENABLE
] && !blobmsg_get_u32(tb
[MOUNT_ENABLE
]))
271 m
= malloc(sizeof(struct mount
));
272 m
->type
= TYPE_MOUNT
;
273 m
->uuid
= blobmsg_get_strdup(tb
[MOUNT_UUID
]);
274 m
->label
= blobmsg_get_strdup(tb
[MOUNT_LABEL
]);
275 m
->target
= blobmsg_get_strdup(tb
[MOUNT_TARGET
]);
276 m
->device
= blobmsg_get_basename(tb
[MOUNT_DEVICE
]);
277 if (tb
[MOUNT_AUTOFS
])
278 m
->autofs
= blobmsg_get_u32(tb
[MOUNT_AUTOFS
]);
281 parse_mount_options(m
, blobmsg_get_strdup(tb
[MOUNT_OPTIONS
]));
283 m
->overlay
= m
->extroot
= 0;
284 if (m
->target
&& !strcmp(m
->target
, "/"))
286 if (m
->target
&& !strcmp(m
->target
, "/overlay"))
287 m
->extroot
= m
->overlay
= 1;
289 if (m
->target
&& *m
->target
!= '/') {
290 ULOG_WARN("ignoring mount section %s due to invalid target '%s'\n",
291 s
->e
.name
, m
->target
);
297 vlist_add(&mounts
, &m
->node
, m
->uuid
);
299 vlist_add(&mounts
, &m
->node
, m
->label
);
301 vlist_add(&mounts
, &m
->node
, m
->device
);
306 static int swap_add(struct uci_section
*s
)
308 struct blob_attr
*tb
[__SWAP_MAX
] = { 0 };
311 blob_buf_init(&b
, 0);
312 uci_to_blob(&b
, s
, &swap_attr_list
);
313 blobmsg_parse(swap_policy
, __SWAP_MAX
, tb
, blob_data(b
.head
), blob_len(b
.head
));
315 if (!tb
[SWAP_UUID
] && !tb
[SWAP_LABEL
] && !tb
[SWAP_DEVICE
])
318 m
= malloc(sizeof(struct mount
));
319 memset(m
, 0, sizeof(struct mount
));
321 m
->uuid
= blobmsg_get_strdup(tb
[SWAP_UUID
]);
322 m
->label
= blobmsg_get_strdup(tb
[SWAP_LABEL
]);
323 m
->device
= blobmsg_get_basename(tb
[SWAP_DEVICE
]);
325 m
->prio
= blobmsg_get_u32(tb
[SWAP_PRIO
]);
327 m
->prio
= ((m
->prio
<< SWAP_FLAG_PRIO_SHIFT
) & SWAP_FLAG_PRIO_MASK
) | SWAP_FLAG_PREFER
;
329 if ((!tb
[SWAP_ENABLE
]) || blobmsg_get_u32(tb
[SWAP_ENABLE
])) {
330 /* store complete swap path */
332 m
->target
= blobmsg_get_strdup(tb
[SWAP_DEVICE
]);
335 vlist_add(&mounts
, &m
->node
, m
->uuid
);
337 vlist_add(&mounts
, &m
->node
, m
->label
);
339 vlist_add(&mounts
, &m
->node
, m
->device
);
345 static int global_add(struct uci_section
*s
)
347 struct blob_attr
*tb
[__CFG_MAX
] = { 0 };
349 blob_buf_init(&b
, 0);
350 uci_to_blob(&b
, s
, &config_attr_list
);
351 blobmsg_parse(config_policy
, __CFG_MAX
, tb
, blob_data(b
.head
), blob_len(b
.head
));
353 if ((tb
[CFG_ANON_MOUNT
]) && blobmsg_get_u32(tb
[CFG_ANON_MOUNT
]))
355 if ((tb
[CFG_ANON_SWAP
]) && blobmsg_get_u32(tb
[CFG_ANON_SWAP
]))
358 if ((tb
[CFG_AUTO_MOUNT
]) && blobmsg_get_u32(tb
[CFG_AUTO_MOUNT
]))
360 if ((tb
[CFG_AUTO_SWAP
]) && blobmsg_get_u32(tb
[CFG_AUTO_SWAP
]))
363 if (tb
[CFG_DELAY_ROOT
])
364 delay_root
= blobmsg_get_u32(tb
[CFG_DELAY_ROOT
]);
366 if ((tb
[CFG_CHECK_FS
]) && blobmsg_get_u32(tb
[CFG_CHECK_FS
]))
372 static struct mount
* find_swap(const char *uuid
, const char *label
, const char *device
)
376 vlist_for_each_element(&mounts
, m
, node
) {
377 if (m
->type
!= TYPE_SWAP
)
379 if (uuid
&& m
->uuid
&& !strcasecmp(m
->uuid
, uuid
))
381 if (label
&& m
->label
&& !strcmp(m
->label
, label
))
383 if (device
&& m
->device
&& !strcmp(m
->device
, device
))
390 static struct mount
* find_block(const char *uuid
, const char *label
, const char *device
,
395 vlist_for_each_element(&mounts
, m
, node
) {
396 if (m
->type
!= TYPE_MOUNT
)
398 if (m
->uuid
&& uuid
&& !strcasecmp(m
->uuid
, uuid
))
400 if (m
->label
&& label
&& !strcmp(m
->label
, label
))
402 if (m
->target
&& target
&& !strcmp(m
->target
, target
))
404 if (m
->device
&& device
&& !strcmp(m
->device
, device
))
411 static void mounts_update(struct vlist_tree
*tree
, struct vlist_node
*node_new
,
412 struct vlist_node
*node_old
)
416 static struct uci_package
* config_try_load(struct uci_context
*ctx
, char *path
)
418 char *file
= basename(path
);
419 char *dir
= dirname(path
);
421 struct uci_package
*pkg
;
423 uci_set_confdir(ctx
, dir
);
424 ULOG_INFO("attempting to load %s/%s\n", dir
, file
);
426 if (uci_load(ctx
, file
, &pkg
)) {
427 uci_get_errorstr(ctx
, &err
, file
);
428 ULOG_ERR("unable to load configuration (%s)\n", err
);
437 static int config_load(char *cfg
)
439 struct uci_context
*ctx
= uci_alloc_context();
440 struct uci_package
*pkg
= NULL
;
441 struct uci_element
*e
;
444 vlist_init(&mounts
, avl_strcmp
, mounts_update
);
447 snprintf(path
, sizeof(path
), "%s/upper/etc/config/fstab", cfg
);
448 pkg
= config_try_load(ctx
, path
);
451 snprintf(path
, sizeof(path
), "%s/etc/config/fstab", cfg
);
452 pkg
= config_try_load(ctx
, path
);
457 snprintf(path
, sizeof(path
), "/etc/config/fstab");
458 pkg
= config_try_load(ctx
, path
);
462 ULOG_ERR("no usable configuration\n");
466 vlist_update(&mounts
);
467 uci_foreach_element(&pkg
->sections
, e
) {
468 struct uci_section
*s
= uci_to_section(e
);
470 if (!strcmp(s
->type
, "mount"))
472 if (!strcmp(s
->type
, "swap"))
474 if (!strcmp(s
->type
, "global"))
477 vlist_flush(&mounts
);
482 static bool mtdblock_is_nand(char *mtdnum
)
488 snprintf(tmppath
, sizeof(tmppath
) - 1, "/sys/class/mtd/mtd%s/type", mtdnum
);
489 fp
= fopen(tmppath
, "r");
493 if (!fgets(buf
, sizeof(buf
), fp
)) {
498 buf
[sizeof(buf
) - 1] = '\0'; /* make sure buf is 0-terminated */
499 buf
[strlen(buf
) - 1] = '\0'; /* strip final char (newline) */
501 if (strcmp(buf
, "nand"))
506 * Keep probing rootfs and rootfs_data in the meantime to not break
507 * devices using JFFS2 on NAND but only trigger the kernel warnings.
508 * Remove this once all devices using JFFS2 and squashfs directly on
509 * NAND have been converted to UBI.
511 snprintf(tmppath
, sizeof(tmppath
) - 1, "/sys/class/mtd/mtd%s/name", mtdnum
);
512 fp
= fopen(tmppath
, "r");
516 if (!fgets(buf
, sizeof(buf
), fp
)) {
521 buf
[sizeof(buf
) - 1] = '\0'; /* make sure buf is 0-terminated */
522 buf
[strlen(buf
) - 1] = '\0'; /* strip final char (newline) */
524 /* only return true if name differs from 'rootfs' and 'rootfs_data' */
525 if (strcmp(buf
, "rootfs") && strcmp(buf
, "rootfs_data"))
528 /* --- CUT HERE --- */
532 static struct probe_info
* _probe_path(char *path
)
534 struct probe_info
*pr
, *epr
;
537 if (!strncmp(path
, "/dev/mtdblock", 13) && mtdblock_is_nand(path
+ 13))
540 pr
= probe_path(path
);
544 if (path
[5] == 'u' && path
[6] == 'b' && path
[7] == 'i' &&
545 path
[8] >= '0' && path
[8] <= '9' ) {
546 /* skip ubi device if not UBIFS (as it requires ubiblock) */
547 if (strcmp("ubifs", pr
->type
))
550 /* skip ubi device if ubiblock device is present */
551 snprintf(tmppath
, sizeof(tmppath
), "/dev/ubiblock%s", path
+ 8);
552 list_for_each_entry(epr
, &devices
, list
)
553 if (!strcmp(epr
->dev
, tmppath
))
560 static int _cache_load(const char *path
)
562 int gl_flags
= GLOB_NOESCAPE
| GLOB_MARK
;
566 if (glob(path
, gl_flags
, NULL
, &gl
) < 0)
569 for (j
= 0; j
< gl
.gl_pathc
; j
++) {
570 struct probe_info
*pr
= _probe_path(gl
.gl_pathv
[j
]);
572 list_add_tail(&pr
->list
, &devices
);
580 static void cache_load(int mtd
)
583 _cache_load("/dev/mtdblock*");
584 _cache_load("/dev/ubiblock*");
585 _cache_load("/dev/ubi[0-9]*");
587 _cache_load("/dev/loop*");
588 _cache_load("/dev/mmcblk*");
589 _cache_load("/dev/sd*");
590 _cache_load("/dev/hd*");
591 _cache_load("/dev/md*");
592 _cache_load("/dev/nvme*");
593 _cache_load("/dev/vd*");
594 _cache_load("/dev/xvd*");
595 _cache_load("/dev/dm-*");
596 _cache_load("/dev/fit*");
600 static struct probe_info
* find_block_info(char *uuid
, char *label
, char *path
)
602 struct probe_info
*pr
= NULL
;
605 list_for_each_entry(pr
, &devices
, list
)
606 if (pr
->uuid
&& !strcasecmp(pr
->uuid
, uuid
))
610 list_for_each_entry(pr
, &devices
, list
)
611 if (pr
->label
&& !strcmp(pr
->label
, label
))
615 list_for_each_entry(pr
, &devices
, list
)
616 if (pr
->dev
&& !strcmp(basename(pr
->dev
), basename(path
)))
622 static char* find_mount_point(char *block
)
624 FILE *fp
= fopen("/proc/self/mountinfo", "r");
625 static char line
[256];
626 char *point
= NULL
, *pos
, *tmp
, *cpoint
, *devname
;
629 unsigned int minor
, major
;
634 rstat
= stat(block
, &s
);
636 while (fgets(line
, sizeof(line
), fp
)) {
637 pos
= strchr(line
, ' ');
641 pos
= strchr(pos
+ 1, ' ');
646 pos
= strchr(pos
, ':');
653 pos
= strchr(pos
, ' ');
659 pos
= strchr(pos
+ 1, ' ');
664 pos
= strchr(pos
, ' ');
670 pos
= strchr(pos
+ 1, ' ');
674 pos
= strchr(pos
+ 1, ' ');
678 pos
= strchr(pos
+ 1, ' ');
683 pos
= strchr(pos
, ' ');
689 if (!strcmp(block
, devname
)) {
690 point
= strdup(cpoint
);
697 if (!S_ISBLK(s
.st_mode
))
700 if (major
== major(s
.st_rdev
) &&
701 minor
== minor(s
.st_rdev
)) {
702 point
= strdup(cpoint
);
712 static int print_block_uci(struct probe_info
*pr
)
714 if (!strcmp(pr
->type
, "swap")) {
715 printf("config 'swap'\n");
717 char *mp
= find_mount_point(pr
->dev
);
719 printf("config 'mount'\n");
721 printf("\toption\ttarget\t'%s'\n", mp
);
724 printf("\toption\ttarget\t'/mnt/%s'\n", basename(pr
->dev
));
728 printf("\toption\tuuid\t'%s'\n", pr
->uuid
);
730 printf("\toption\tdevice\t'%s'\n", pr
->dev
);
731 printf("\toption\tenabled\t'0'\n\n");
736 static int print_block_info(struct probe_info
*pr
)
740 mp
= find_mount_point(pr
->dev
);
741 printf("%s:", pr
->dev
);
743 printf(" UUID=\"%s\"", pr
->uuid
);
746 printf(" LABEL=\"%s\"", pr
->label
);
749 printf(" VERSION=\"%s\"", pr
->version
);
752 printf(" MOUNT=\"%s\"", mp
);
756 printf(" TYPE=\"%s\"\n", pr
->type
);
761 static void check_filesystem(struct probe_info
*pr
)
765 const char *e2fsck
= "/usr/sbin/e2fsck";
766 const char *f2fsck
= "/usr/sbin/fsck.f2fs";
767 const char *fatfsck
= "/usr/sbin/fsck.fat";
768 const char *btrfsck
= "/usr/bin/btrfsck";
769 const char *ntfsck
= "/usr/bin/ntfsfix";
772 /* UBIFS does not need stuff like fsck */
773 if (!strncmp(pr
->type
, "ubifs", 5))
776 if (!strncmp(pr
->type
, "vfat", 4)) {
778 } else if (!strncmp(pr
->type
, "f2fs", 4)) {
780 } else if (!strncmp(pr
->type
, "ext", 3)) {
782 } else if (!strncmp(pr
->type
, "btrfs", 5)) {
784 } else if (!strncmp(pr
->type
, "ntfs", 4)) {
787 ULOG_ERR("check_filesystem: %s is not supported\n", pr
->type
);
791 if (stat(ckfs
, &statbuf
) < 0) {
792 ULOG_ERR("check_filesystem: %s not found\n", ckfs
);
798 if(!strncmp(pr
->type
, "f2fs", 4)) {
799 execl(ckfs
, ckfs
, "-f", pr
->dev
, NULL
);
801 } else if(!strncmp(pr
->type
, "btrfs", 5)) {
802 execl(ckfs
, ckfs
, "--repair", pr
->dev
, NULL
);
804 } else if(!strncmp(pr
->type
, "ntfs", 4)) {
805 execl(ckfs
, ckfs
, "-b", pr
->dev
, NULL
);
808 execl(ckfs
, ckfs
, "-p", pr
->dev
, NULL
);
811 } else if (pid
> 0) {
814 waitpid(pid
, &status
, 0);
815 if (WIFEXITED(status
) && WEXITSTATUS(status
))
816 ULOG_ERR("check_filesystem: %s returned %d\n", ckfs
, WEXITSTATUS(status
));
817 if (WIFSIGNALED(status
))
818 ULOG_ERR("check_filesystem: %s terminated by %s\n", ckfs
, strsignal(WTERMSIG(status
)));
822 static void handle_swapfiles(bool on
)
826 struct probe_info
*pr
;
828 vlist_for_each_element(&mounts
, m
, node
)
830 if (m
->type
!= TYPE_SWAP
|| !m
->target
)
833 if (stat(m
->target
, &s
) || !S_ISREG(s
.st_mode
))
836 pr
= _probe_path(m
->target
);
841 if (!strcmp(pr
->type
, "swap")) {
843 swapon(pr
->dev
, m
->prio
);
852 static void to_devnull(int fd
)
854 int devnull
= open("/dev/null", fd
? O_WRONLY
: O_RDONLY
);
859 if (devnull
> STDERR_FILENO
)
863 static int exec_mount(const char *source
, const char *target
,
864 const char *fstype
, const char *options
)
869 int err
, status
, pfds
[2];
870 char errmsg
[128], cmd
[sizeof("/sbin/mount.XXXXXXXXXXXXXXXX\0")];
872 snprintf(cmd
, sizeof(cmd
), "/sbin/mount.%s", fstype
);
874 if (stat(cmd
, &s
) < 0 || !S_ISREG(s
.st_mode
) || !(s
.st_mode
& S_IXUSR
)) {
875 ULOG_ERR("No \"mount.%s\" utility available\n", fstype
);
882 fcntl(pfds
[0], F_SETFD
, fcntl(pfds
[0], F_GETFD
) | FD_CLOEXEC
);
883 fcntl(pfds
[1], F_SETFD
, fcntl(pfds
[1], F_GETFD
) | FD_CLOEXEC
);
895 to_devnull(STDIN_FILENO
);
896 to_devnull(STDOUT_FILENO
);
898 dup2(pfds
[1], STDERR_FILENO
);
902 if (options
&& *options
)
903 execl(cmd
, cmd
, "-o", options
, source
, target
, NULL
);
905 execl(cmd
, cmd
, source
, target
, NULL
);
912 mount_fd
= fdopen(pfds
[0], "r");
914 while (fgets(errmsg
, sizeof(errmsg
), mount_fd
))
915 ULOG_ERR("mount.%s: %s", fstype
, errmsg
);
919 err
= waitpid(pid
, &status
, 0);
923 ULOG_ERR("mount.%s: failed with status %d\n", fstype
, status
);
938 static const char * const ntfs_fs
[] = { "ntfs3", "ntfs-3g", "antfs", "ntfs" };
940 static int handle_mount(const char *source
, const char *target
,
941 const char *fstype
, struct mount
*m
)
943 size_t mount_opts_len
;
944 char *mount_opts
= NULL
, *ptr
;
945 const char * const *filesystems
;
950 if (!strcmp(fstype
, "ntfs")) {
951 filesystems
= ntfs_fs
;
952 count
= ARRAY_SIZE(ntfs_fs
);
954 filesystems
= &fstype
;
958 for (i
= 0; i
< count
; i
++) {
959 const char *fs
= filesystems
[i
];
961 err
= mount(source
, target
, fs
, m
? m
->flags
: 0,
962 (m
&& m
->options
) ? m
->options
: "");
963 if (!err
|| errno
!= ENODEV
)
967 /* Requested file system type is not available in kernel,
968 attempt to call mount helper. */
969 if (err
== -1 && errno
== ENODEV
) {
971 /* Convert mount flags back into string representation,
972 first calculate needed length of string buffer... */
973 mount_opts_len
= 1 + (m
->options
? strlen(m
->options
) : 0);
975 for (i
= 0; i
< ARRAY_SIZE(mount_flags
); i
++)
976 if ((mount_flags
[i
].flag
> 0) &&
977 (mount_flags
[i
].flag
< INT_MAX
) &&
978 (m
->flags
& (uint32_t)mount_flags
[i
].flag
))
979 mount_opts_len
+= strlen(mount_flags
[i
].name
) + 1;
981 /* ... then now allocate and fill it ... */
982 ptr
= mount_opts
= calloc(1, mount_opts_len
);
990 ptr
+= sprintf(ptr
, "%s,", m
->options
);
992 for (i
= 0; i
< ARRAY_SIZE(mount_flags
); i
++)
993 if ((mount_flags
[i
].flag
> 0) &&
994 (mount_flags
[i
].flag
< INT_MAX
) &&
995 (m
->flags
& (uint32_t)mount_flags
[i
].flag
))
996 ptr
+= sprintf(ptr
, "%s,", mount_flags
[i
].name
);
998 mount_opts
[mount_opts_len
- 1] = 0;
1001 /* ... and now finally invoke the external mount program */
1002 for (i
= 0; i
< count
; i
++) {
1003 const char *fs
= filesystems
[i
];
1005 err
= exec_mount(source
, target
, fs
, mount_opts
);
1016 static int blockd_notify(const char *method
, char *device
, struct mount
*m
,
1017 struct probe_info
*pr
)
1019 struct ubus_context
*ctx
= ubus_connect(NULL
);
1026 if (!ubus_lookup_id(ctx
, "block", &id
)) {
1027 struct blob_buf buf
= { 0 };
1028 char *d
= strrchr(device
, '/');
1035 blob_buf_init(&buf
, 0);
1039 blobmsg_add_string(&buf
, "device", d
);
1041 blobmsg_add_string(&buf
, "uuid", m
->uuid
);
1043 blobmsg_add_string(&buf
, "label", m
->label
);
1045 blobmsg_add_string(&buf
, "target", m
->target
);
1047 blobmsg_add_string(&buf
, "options", m
->options
);
1049 blobmsg_add_u32(&buf
, "autofs", m
->autofs
);
1051 blobmsg_add_string(&buf
, "type", pr
->type
);
1053 blobmsg_add_string(&buf
, "version", pr
->version
);
1055 blobmsg_add_string(&buf
, "device", d
);
1057 blobmsg_add_string(&buf
, "uuid", pr
->uuid
);
1059 blobmsg_add_string(&buf
, "label", pr
->label
);
1061 blobmsg_add_string(&buf
, "type", pr
->type
);
1063 blobmsg_add_string(&buf
, "version", pr
->version
);
1064 blobmsg_add_u32(&buf
, "anon", 1);
1066 blobmsg_add_string(&buf
, "device", d
);
1067 blobmsg_add_u32(&buf
, "remove", 1);
1070 err
= ubus_invoke(ctx
, id
, method
, buf
.head
, NULL
, NULL
, 3000);
1080 static int mount_device(struct probe_info
*pr
, int type
)
1084 char *_target
= NULL
;
1093 device
= basename(pr
->dev
);
1095 if (!strcmp(pr
->type
, "swap")) {
1096 if ((type
== TYPE_HOTPLUG
) && !auto_swap
)
1098 m
= find_swap(pr
->uuid
, pr
->label
, device
);
1100 swapon(pr
->dev
, (m
) ? (m
->prio
) : (0));
1105 m
= find_block(pr
->uuid
, pr
->label
, device
, NULL
);
1106 if (m
&& m
->extroot
)
1109 mp
= find_mount_point(pr
->dev
);
1111 if (m
&& m
->type
== TYPE_MOUNT
&& m
->target
&& strcmp(m
->target
, mp
)) {
1112 ULOG_ERR("%s is already mounted on %s\n", pr
->dev
, mp
);
1120 if (type
== TYPE_HOTPLUG
)
1121 blockd_notify("hotplug", device
, m
, pr
);
1123 /* Check if device should be mounted & set the target directory */
1143 if (asprintf(&_target
, "/tmp/run/blockd/%s", device
) == -1)
1147 } else if (m
->target
) {
1150 if (asprintf(&_target
, "/mnt/%s", device
) == -1)
1155 } else if (anon_mount
) {
1156 if (asprintf(&_target
, "/mnt/%s", device
) == -1)
1161 /* No reason to mount this device */
1165 /* Mount the device */
1168 check_filesystem(pr
);
1170 mkdir_p(target
, 0755);
1171 if (!lstat(target
, &st
) && S_ISLNK(st
.st_mode
))
1174 err
= handle_mount(pr
->dev
, target
, pr
->type
, m
);
1176 ULOG_ERR("mounting %s (%s) as %s failed (%d) - %m\n",
1177 pr
->dev
, pr
->type
, target
, errno
);
1188 handle_swapfiles(true);
1190 if (type
!= TYPE_AUTOFS
)
1191 blockd_notify("mount", device
, NULL
, NULL
);
1196 static int umount_device(char *path
, int type
, bool all
)
1201 if (strlen(path
) > 5 && !strncmp("/dev/", path
, 5)) {
1202 mp
= find_mount_point(path
);
1204 devpath
= malloc(strlen(path
) + 6);
1205 strcpy(devpath
, "/dev/");
1206 strcat(devpath
, path
);
1207 mp
= find_mount_point(devpath
);
1213 if (!strcmp(mp
, "/") && !all
) {
1217 if (type
!= TYPE_AUTOFS
)
1218 blockd_notify("umount", basename(path
), NULL
, NULL
);
1220 err
= umount2(mp
, MNT_DETACH
);
1222 ULOG_ERR("unmounting %s (%s) failed (%d) - %m\n", path
, mp
,
1225 ULOG_INFO("unmounted %s (%s)\n", path
, mp
);
1233 static int mount_action(char *action
, char *device
, int type
)
1236 struct probe_info
*pr
;
1238 if (!action
|| !device
)
1241 if (!strcmp(action
, "remove")) {
1242 if (type
== TYPE_HOTPLUG
)
1243 blockd_notify("hotplug", device
, NULL
, NULL
);
1245 umount_device(device
, type
, true);
1248 } else if (strcmp(action
, "add")) {
1249 ULOG_ERR("Unkown action %s\n", action
);
1254 if (config_load(NULL
))
1259 list_for_each_entry(pr
, &devices
, list
)
1260 if (!strcmp(basename(pr
->dev
), device
))
1266 return mount_device(find_block_info(NULL
, NULL
, path
), type
);
1269 static int main_hotplug(int argc
, char **argv
)
1271 return mount_action(getenv("ACTION"), getenv("DEVNAME"), TYPE_HOTPLUG
);
1274 static int main_autofs(int argc
, char **argv
)
1281 if (!strcmp(argv
[2], "start")) {
1282 struct probe_info
*pr
;
1284 if (config_load(NULL
))
1288 list_for_each_entry(pr
, &devices
, list
) {
1292 if (!strcmp(pr
->type
, "swap"))
1295 m
= find_block(pr
->uuid
, pr
->label
, NULL
, NULL
);
1296 if (m
&& m
->extroot
)
1299 blockd_notify("hotplug", pr
->dev
, m
, pr
);
1300 if ((!m
|| !m
->autofs
) && (mp
= find_mount_point(pr
->dev
))) {
1301 blockd_notify("mount", pr
->dev
, NULL
, NULL
);
1309 err
= mount_action(argv
[2], argv
[3], TYPE_AUTOFS
);
1313 ULOG_ERR("autofs: \"%s\" action has failed: %d\n", argv
[2], err
);
1319 static int find_block_mtd(char *name
, char *part
, int plen
)
1321 FILE *fp
= fopen("/proc/mtd", "r");
1322 static char line
[256];
1328 while (!index
&& fgets(line
, sizeof(line
), fp
)) {
1329 if (strstr(line
, name
)) {
1330 char *eol
= strstr(line
, ":");
1345 snprintf(part
, plen
, "/dev/mtdblock%s", index
);
1350 #ifdef UBIFS_EXTROOT
1351 static int find_ubi_vol(libubi_t libubi
, char *name
, int *dev_num
, int *vol_id
)
1355 while (ubi_dev_present(libubi
, dev
))
1357 struct ubi_dev_info dev_info
;
1358 struct ubi_vol_info vol_info
;
1360 if (ubi_get_dev_info1(libubi
, dev
++, &dev_info
))
1362 if (ubi_get_vol_info1_nm(libubi
, dev_info
.dev_num
, name
, &vol_info
))
1365 *dev_num
= dev_info
.dev_num
;
1366 *vol_id
= vol_info
.vol_id
;
1374 static int find_block_ubi(libubi_t libubi
, char *name
, char *part
, int plen
)
1380 err
= find_ubi_vol(libubi
, name
, &dev_num
, &vol_id
);
1382 snprintf(part
, plen
, "/dev/ubi%d_%d", dev_num
, vol_id
);
1387 static int find_block_ubi_RO(libubi_t libubi
, char *name
, char *part
, int plen
)
1393 err
= find_ubi_vol(libubi
, name
, &dev_num
, &vol_id
);
1395 snprintf(part
, plen
, "/dev/ubiblock%d_%d", dev_num
, vol_id
);
1401 static int find_dev(const char *path
, char *buf
, int len
)
1411 if (!(d
= opendir("/dev")))
1416 while ((e
= readdir(d
)) != NULL
) {
1417 snprintf(buf
, len
, "/dev/%s", e
->d_name
);
1419 if (stat(buf
, &s
) || s
.st_rdev
!= root
)
1430 static int find_root_dev(char *buf
, int len
)
1432 int err
= find_dev("/", buf
, len
);
1434 err
= find_dev("/rom", buf
, len
);
1439 static int test_fs_support(const char *name
)
1445 if ((f
= fopen("/proc/filesystems", "r")) != NULL
) {
1446 while (fgets(line
, sizeof(line
), f
)) {
1447 p
= strtok(line
, "\t\n");
1449 if (p
&& !strcmp(p
, "nodev"))
1450 p
= strtok(NULL
, "\t\n");
1452 if (p
&& !strcmp(p
, name
)) {
1464 * Check if mounted partition is a valid extroot
1466 * @path target mount point
1468 * Valid extroot partition has to contain /etc/.extroot-uuid with UUID of root
1469 * device. This function reads UUID and verifies it OR writes UUID to
1470 * .extroot-uuid if it doesn't exist yet (first extroot usage).
1472 static int check_extroot(char *path
)
1474 struct probe_info
*pr
= NULL
;
1475 struct probe_info
*tmp
;
1477 char uuid
[64] = { 0 };
1483 snprintf(tag
, sizeof(tag
), "%s/etc/.extroot-default", path
);
1487 err
= find_root_dev(devpath
, sizeof(devpath
));
1489 err
= find_block_mtd("\"rootfs\"", devpath
, sizeof(devpath
));
1490 #ifdef UBIFS_EXTROOT
1494 libubi
= libubi_open();
1495 err
= find_block_ubi_RO(libubi
, "rootfs", devpath
, sizeof(devpath
));
1496 libubi_close(libubi
);
1500 ULOG_ERR("extroot: unable to determine root device\n");
1504 /* Find root device probe_info so we know its UUID */
1505 list_for_each_entry(tmp
, &devices
, list
) {
1506 if (!strcmp(tmp
->dev
, devpath
)) {
1512 ULOG_ERR("extroot: unable to lookup root device %s\n", devpath
);
1516 snprintf(tag
, sizeof(tag
), "%s/etc", path
);
1520 snprintf(tag
, sizeof(tag
), "%s/etc/.extroot-uuid", path
);
1521 if (stat(tag
, &s
)) {
1522 fp
= fopen(tag
, "w+");
1524 ULOG_ERR("extroot: failed to write UUID to %s: %d (%m)\n",
1526 /* return 0 to continue boot regardless of error */
1529 fputs(pr
->uuid
, fp
);
1534 fp
= fopen(tag
, "r");
1536 ULOG_ERR("extroot: failed to read UUID from %s: %d (%m)\n", tag
,
1541 if (!fgets(uuid
, sizeof(uuid
), fp
))
1542 ULOG_ERR("extroot: failed to read UUID from %s: %d (%m)\n", tag
,
1546 if (*uuid
&& !strcasecmp(uuid
, pr
->uuid
))
1549 ULOG_ERR("extroot: UUID mismatch (root: %s, %s: %s)\n", pr
->uuid
,
1550 basename(path
), uuid
);
1555 * Read info about extroot from UCI (using prefix) and mount it.
1557 static int mount_extroot(char *cfg
)
1559 char overlay
[] = "/tmp/extroot/overlay";
1560 char mnt
[] = "/tmp/extroot/mnt";
1562 struct probe_info
*pr
;
1566 /* Load @cfg/etc/config/fstab */
1567 if (config_load(cfg
))
1570 /* See if there is extroot-specific mount config */
1571 m
= find_block(NULL
, NULL
, NULL
, "/");
1573 m
= find_block(NULL
, NULL
, NULL
, "/overlay");
1575 if (!m
|| !m
->extroot
)
1577 ULOG_INFO("extroot: not configured\n");
1581 /* Find block device pointed by the mount config */
1582 pr
= find_block_info(m
->uuid
, m
->label
, m
->device
);
1584 if (!pr
&& delay_root
){
1585 ULOG_INFO("extroot: device not present, retrying in %u seconds\n", delay_root
);
1589 pr
= find_block_info(m
->uuid
, m
->label
, m
->device
);
1592 if (strncmp(pr
->type
, "ext", 3) &&
1593 strncmp(pr
->type
, "f2fs", 4) &&
1594 strncmp(pr
->type
, "btrfs", 5) &&
1595 strncmp(pr
->type
, "ntfs", 4) &&
1596 strncmp(pr
->type
, "ubifs", 5)) {
1597 ULOG_ERR("extroot: unsupported filesystem %s, try ext4, f2fs, btrfs, ntfs or ubifs\n", pr
->type
);
1601 if (test_fs_support(pr
->type
)) {
1602 ULOG_ERR("extroot: filesystem %s not supported by kernel\n", pr
->type
);
1608 mkdir_p(path
, 0755);
1611 check_filesystem(pr
);
1613 err
= mount(pr
->dev
, path
, pr
->type
, m
->flags
,
1614 (m
->options
) ? (m
->options
) : (""));
1617 ULOG_ERR("extroot: mounting %s (%s) on %s failed: %d (%m)\n",
1618 pr
->dev
, pr
->type
, path
, errno
);
1619 } else if (m
->overlay
) {
1620 err
= check_extroot(path
);
1625 ULOG_ERR("extroot: cannot find device %s%s\n",
1626 (m
->uuid
? "with UUID " : (m
->label
? "with label " : "")),
1627 (m
->uuid
? m
->uuid
: (m
->label
? m
->label
: m
->device
)));
1634 * Look for extroot config and mount it if present
1636 * Look for /etc/config/fstab on all supported partitions and use it for
1637 * mounting extroot if specified.
1639 static int main_extroot(int argc
, char **argv
)
1641 struct probe_info
*pr
;
1642 char blkdev_path
[32] = { 0 };
1644 #ifdef UBIFS_EXTROOT
1648 if (!getenv("PREINIT"))
1652 ULOG_ERR("Usage: block extroot\n");
1659 /* enable LOG_INFO messages */
1660 ulog_threshold(LOG_INFO
);
1662 /* try the currently mounted overlay if exists */
1663 err
= mount_extroot("/tmp/overlay");
1668 * Look for "rootfs_data". We will want to mount it and check for
1669 * extroot configuration.
1672 /* Start with looking for MTD partition */
1673 find_block_mtd("\"rootfs_data\"", blkdev_path
, sizeof(blkdev_path
));
1674 if (blkdev_path
[0]) {
1675 pr
= find_block_info(NULL
, NULL
, blkdev_path
);
1676 if (pr
&& !strcmp(pr
->type
, "jffs2")) {
1677 char cfg
[] = "/tmp/jffs_cfg";
1680 * Mount MTD part and try extroot (using
1681 * /etc/config/fstab from that partition)
1684 if (!mount(blkdev_path
, cfg
, "jffs2", MS_NOATIME
, NULL
)) {
1685 err
= mount_extroot(cfg
);
1686 umount2(cfg
, MNT_DETACH
);
1689 rmdir("/tmp/overlay");
1695 #ifdef UBIFS_EXTROOT
1696 /* ... but it also could be an UBI volume */
1697 memset(blkdev_path
, 0, sizeof(blkdev_path
));
1698 libubi
= libubi_open();
1699 find_block_ubi(libubi
, "rootfs_data", blkdev_path
, sizeof(blkdev_path
));
1700 libubi_close(libubi
);
1701 if (blkdev_path
[0]) {
1702 char cfg
[] = "/tmp/ubifs_cfg";
1704 /* Mount volume and try extroot (using fstab from that vol) */
1706 if (!mount(blkdev_path
, cfg
, "ubifs", MS_NOATIME
, NULL
)) {
1707 err
= mount_extroot(cfg
);
1708 umount2(cfg
, MNT_DETACH
);
1711 rmdir("/tmp/overlay");
1717 /* As a last resort look for /etc/config/fstab on "rootfs" partition */
1718 return mount_extroot(NULL
);
1721 static int main_mount(int argc
, char **argv
)
1723 struct probe_info
*pr
;
1725 if (config_load(NULL
))
1729 list_for_each_entry(pr
, &devices
, list
)
1730 mount_device(pr
, TYPE_DEV
);
1732 handle_swapfiles(true);
1737 static int main_umount(int argc
, char **argv
)
1739 struct probe_info
*pr
;
1742 if (config_load(NULL
))
1745 handle_swapfiles(false);
1750 all
= !strcmp(argv
[2], "-a");
1752 list_for_each_entry(pr
, &devices
, list
) {
1755 if (!strcmp(pr
->type
, "swap"))
1758 m
= find_block(pr
->uuid
, pr
->label
, basename(pr
->dev
), NULL
);
1759 if (m
&& m
->extroot
)
1762 umount_device(pr
->dev
, TYPE_DEV
, all
);
1768 static int main_detect(int argc
, char **argv
)
1770 struct probe_info
*pr
;
1773 printf("config 'global'\n");
1774 printf("\toption\tanon_swap\t'0'\n");
1775 printf("\toption\tanon_mount\t'0'\n");
1776 printf("\toption\tauto_swap\t'1'\n");
1777 printf("\toption\tauto_mount\t'1'\n");
1778 printf("\toption\tdelay_root\t'5'\n");
1779 printf("\toption\tcheck_fs\t'0'\n\n");
1780 list_for_each_entry(pr
, &devices
, list
)
1781 print_block_uci(pr
);
1786 static int main_info(int argc
, char **argv
)
1789 struct probe_info
*pr
;
1793 list_for_each_entry(pr
, &devices
, list
)
1794 print_block_info(pr
);
1799 for (i
= 2; i
< argc
; i
++) {
1802 if (stat(argv
[i
], &s
)) {
1803 ULOG_ERR("failed to stat %s\n", argv
[i
]);
1806 if (!S_ISBLK(s
.st_mode
) && !(S_ISCHR(s
.st_mode
) && major(s
.st_rdev
) == 250)) {
1807 ULOG_ERR("%s is not a block device\n", argv
[i
]);
1810 pr
= find_block_info(NULL
, NULL
, argv
[i
]);
1812 print_block_info(pr
);
1818 static int swapon_usage(void)
1820 fprintf(stderr
, "Usage: swapon [-s] [-a] [[-p pri] DEVICE]\n\n"
1821 "\tStart swapping on [DEVICE]\n"
1822 " -a\tStart swapping on all swap devices\n"
1823 " -p pri\tSet priority of swap device\n"
1824 " -s\tShow summary\n");
1828 static int main_swapon(int argc
, char **argv
)
1834 struct probe_info
*pr
;
1840 while ((ch
= getopt(argc
, argv
, "ap:s")) != -1) {
1843 fp
= fopen("/proc/swaps", "r");
1847 ULOG_ERR("failed to open /proc/swaps\n");
1850 while (getline(&lineptr
, &s
, fp
) > 0)
1851 printf("%s", lineptr
);
1858 list_for_each_entry(pr
, &devices
, list
) {
1859 if (strcmp(pr
->type
, "swap"))
1861 if (swapon(pr
->dev
, 0))
1862 ULOG_ERR("failed to swapon %s\n", pr
->dev
);
1868 flags
= ((pri
<< SWAP_FLAG_PRIO_SHIFT
) & SWAP_FLAG_PRIO_MASK
) | SWAP_FLAG_PREFER
;
1871 return swapon_usage();
1875 if (optind
!= (argc
- 1))
1876 return swapon_usage();
1878 if (stat(argv
[optind
], &st
) || (!S_ISBLK(st
.st_mode
) && !S_ISREG(st
.st_mode
))) {
1879 ULOG_ERR("%s is not a block device or file\n", argv
[optind
]);
1882 err
= swapon(argv
[optind
], flags
);
1884 ULOG_ERR("failed to swapon %s (%d)\n", argv
[optind
], err
);
1891 static int main_swapoff(int argc
, char **argv
)
1894 ULOG_ERR("Usage: swapoff [-a] [DEVICE]\n\n"
1895 "\tStop swapping on DEVICE\n"
1896 " -a\tStop swapping on all swap devices\n");
1900 if (!strcmp(argv
[1], "-a")) {
1901 FILE *fp
= fopen("/proc/swaps", "r");
1905 ULOG_ERR("failed to open /proc/swaps\n");
1908 if (fgets(line
, sizeof(line
), fp
))
1909 while (fgets(line
, sizeof(line
), fp
)) {
1910 char *end
= strchr(line
, ' ');
1916 err
= swapoff(line
);
1918 ULOG_ERR("failed to swapoff %s (%d)\n", line
, err
);
1925 if (stat(argv
[1], &s
) || (!S_ISBLK(s
.st_mode
) && !S_ISREG(s
.st_mode
))) {
1926 ULOG_ERR("%s is not a block device or file\n", argv
[1]);
1929 err
= swapoff(argv
[1]);
1931 ULOG_ERR("failed to swapoff %s (%d)\n", argv
[1], err
);
1939 int main(int argc
, char **argv
)
1941 char *base
= basename(*argv
);
1945 ulog_open(-1, -1, "block");
1946 ulog_threshold(LOG_NOTICE
);
1948 if (!strcmp(base
, "swapon"))
1949 return main_swapon(argc
, argv
);
1951 if (!strcmp(base
, "swapoff"))
1952 return main_swapoff(argc
, argv
);
1954 if ((argc
> 1) && !strcmp(base
, "block")) {
1955 if (!strcmp(argv
[1], "info"))
1956 return main_info(argc
, argv
);
1958 if (!strcmp(argv
[1], "detect"))
1959 return main_detect(argc
, argv
);
1961 if (!strcmp(argv
[1], "hotplug"))
1962 return main_hotplug(argc
, argv
);
1964 if (!strcmp(argv
[1], "autofs"))
1965 return main_autofs(argc
, argv
);
1967 if (!strcmp(argv
[1], "extroot"))
1968 return main_extroot(argc
, argv
);
1970 if (!strcmp(argv
[1], "mount"))
1971 return main_mount(argc
, argv
);
1973 if (!strcmp(argv
[1], "umount"))
1974 return main_umount(argc
, argv
);
1976 if (!strcmp(argv
[1], "remount")) {
1977 int ret
= main_umount(argc
, argv
);
1980 ret
= main_mount(argc
, argv
);
1985 ULOG_ERR("Usage: block <info|mount|umount|detect>\n");