block: fix possible NULL pointer dereference in mount_device()
[project/ubox.git] / block.c
1 /*
2 * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4 *
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
8 *
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.
13 */
14
15 #include <stdio.h>
16 #include <unistd.h>
17 #include <syslog.h>
18 #include <libgen.h>
19 #include <glob.h>
20
21 #include <sys/stat.h>
22 #include <sys/types.h>
23 #include <sys/swap.h>
24 #include <sys/mount.h>
25 #include <sys/wait.h>
26
27 #include <uci.h>
28 #include <uci_blob.h>
29
30 #include <libubox/list.h>
31 #include <libubox/vlist.h>
32 #include <libubox/blobmsg_json.h>
33 #include <libubox/avl-cmp.h>
34
35 #include "libblkid-tiny/libblkid-tiny.h"
36
37 enum {
38 TYPE_MOUNT,
39 TYPE_SWAP,
40 };
41
42 struct mount {
43 struct vlist_node node;
44 int type;
45
46 char *target;
47 char *path;
48 char *options;
49 char *uuid;
50 char *label;
51 char *device;
52 int extroot;
53 int overlay;
54 int disabled_fsck;
55 unsigned int prio;
56 };
57
58 static struct vlist_tree mounts;
59 static struct blob_buf b;
60 static LIST_HEAD(devices);
61 static int anon_mount, anon_swap, auto_mount, auto_swap, check_fs;
62 static unsigned int delay_root;
63
64 enum {
65 CFG_ANON_MOUNT,
66 CFG_ANON_SWAP,
67 CFG_AUTO_MOUNT,
68 CFG_AUTO_SWAP,
69 CFG_DELAY_ROOT,
70 CFG_CHECK_FS,
71 __CFG_MAX
72 };
73
74 static const struct blobmsg_policy config_policy[__CFG_MAX] = {
75 [CFG_ANON_SWAP] = { .name = "anon_swap", .type = BLOBMSG_TYPE_INT32 },
76 [CFG_ANON_MOUNT] = { .name = "anon_mount", .type = BLOBMSG_TYPE_INT32 },
77 [CFG_AUTO_SWAP] = { .name = "auto_swap", .type = BLOBMSG_TYPE_INT32 },
78 [CFG_AUTO_MOUNT] = { .name = "auto_mount", .type = BLOBMSG_TYPE_INT32 },
79 [CFG_DELAY_ROOT] = { .name = "delay_root", .type = BLOBMSG_TYPE_INT32 },
80 [CFG_CHECK_FS] = { .name = "check_fs", .type = BLOBMSG_TYPE_INT32 },
81 };
82
83 enum {
84 MOUNT_UUID,
85 MOUNT_LABEL,
86 MOUNT_ENABLE,
87 MOUNT_TARGET,
88 MOUNT_DEVICE,
89 MOUNT_OPTIONS,
90 __MOUNT_MAX
91 };
92
93 static const struct uci_blob_param_list config_attr_list = {
94 .n_params = __CFG_MAX,
95 .params = config_policy,
96 };
97
98 static const struct blobmsg_policy mount_policy[__MOUNT_MAX] = {
99 [MOUNT_UUID] = { .name = "uuid", .type = BLOBMSG_TYPE_STRING },
100 [MOUNT_LABEL] = { .name = "label", .type = BLOBMSG_TYPE_STRING },
101 [MOUNT_DEVICE] = { .name = "device", .type = BLOBMSG_TYPE_STRING },
102 [MOUNT_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
103 [MOUNT_OPTIONS] = { .name = "options", .type = BLOBMSG_TYPE_STRING },
104 [MOUNT_ENABLE] = { .name = "enabled", .type = BLOBMSG_TYPE_INT32 },
105 };
106
107 static const struct uci_blob_param_list mount_attr_list = {
108 .n_params = __MOUNT_MAX,
109 .params = mount_policy,
110 };
111
112 enum {
113 SWAP_ENABLE,
114 SWAP_UUID,
115 SWAP_DEVICE,
116 SWAP_PRIO,
117 __SWAP_MAX
118 };
119
120 static const struct blobmsg_policy swap_policy[__SWAP_MAX] = {
121 [SWAP_ENABLE] = { .name = "enabled", .type = BLOBMSG_TYPE_INT32 },
122 [SWAP_UUID] = { .name = "uuid", .type = BLOBMSG_TYPE_STRING },
123 [SWAP_DEVICE] = { .name = "device", .type = BLOBMSG_TYPE_STRING },
124 [SWAP_PRIO] = { .name = "priority", .type = BLOBMSG_TYPE_INT32 },
125 };
126
127 static const struct uci_blob_param_list swap_attr_list = {
128 .n_params = __SWAP_MAX,
129 .params = swap_policy,
130 };
131
132 static char *blobmsg_get_strdup(struct blob_attr *attr)
133 {
134 if (!attr)
135 return NULL;
136
137 return strdup(blobmsg_get_string(attr));
138 }
139
140 static char *blobmsg_get_basename(struct blob_attr *attr)
141 {
142 if (!attr)
143 return NULL;
144
145 return strdup(basename(blobmsg_get_string(attr)));
146 }
147
148 static int mount_add(struct uci_section *s)
149 {
150 struct blob_attr *tb[__MOUNT_MAX] = { 0 };
151 struct mount *m;
152
153 blob_buf_init(&b, 0);
154 uci_to_blob(&b, s, &mount_attr_list);
155 blobmsg_parse(mount_policy, __MOUNT_MAX, tb, blob_data(b.head), blob_len(b.head));
156
157 if (!tb[MOUNT_LABEL] && !tb[MOUNT_UUID] && !tb[MOUNT_DEVICE])
158 return -1;
159
160 if (tb[MOUNT_ENABLE] && !blobmsg_get_u32(tb[MOUNT_ENABLE]))
161 return -1;
162
163 m = malloc(sizeof(struct mount));
164 m->type = TYPE_MOUNT;
165 m->uuid = blobmsg_get_strdup(tb[MOUNT_UUID]);
166 m->label = blobmsg_get_strdup(tb[MOUNT_LABEL]);
167 m->target = blobmsg_get_strdup(tb[MOUNT_TARGET]);
168 m->options = blobmsg_get_strdup(tb[MOUNT_OPTIONS]);
169 m->device = blobmsg_get_basename(tb[MOUNT_DEVICE]);
170 m->overlay = m->extroot = 0;
171 if (m->target && !strcmp(m->target, "/"))
172 m->extroot = 1;
173 if (m->target && !strcmp(m->target, "/overlay"))
174 m->extroot = m->overlay = 1;
175
176 if (m->uuid)
177 vlist_add(&mounts, &m->node, m->uuid);
178 else if (m->label)
179 vlist_add(&mounts, &m->node, m->label);
180 else if (m->device)
181 vlist_add(&mounts, &m->node, m->device);
182
183 return 0;
184 }
185
186 static int swap_add(struct uci_section *s)
187 {
188 struct blob_attr *tb[__SWAP_MAX] = { 0 };
189 struct mount *m;
190
191 blob_buf_init(&b, 0);
192 uci_to_blob(&b, s, &swap_attr_list);
193 blobmsg_parse(swap_policy, __SWAP_MAX, tb, blob_data(b.head), blob_len(b.head));
194
195 if (!tb[SWAP_UUID] && !tb[SWAP_DEVICE])
196 return -1;
197
198 m = malloc(sizeof(struct mount));
199 memset(m, 0, sizeof(struct mount));
200 m->type = TYPE_SWAP;
201 m->uuid = blobmsg_get_strdup(tb[SWAP_UUID]);
202 m->device = blobmsg_get_basename(tb[SWAP_DEVICE]);
203 if (tb[SWAP_PRIO])
204 m->prio = blobmsg_get_u32(tb[SWAP_PRIO]);
205 if (m->prio)
206 m->prio = ((m->prio << SWAP_FLAG_PRIO_SHIFT) & SWAP_FLAG_PRIO_MASK) | SWAP_FLAG_PREFER;
207
208 if ((!tb[SWAP_ENABLE]) || blobmsg_get_u32(tb[SWAP_ENABLE]))
209 vlist_add(&mounts, &m->node, (m->uuid) ? (m->uuid) : (m->device));
210
211 return 0;
212 }
213
214 static int global_add(struct uci_section *s)
215 {
216 struct blob_attr *tb[__CFG_MAX] = { 0 };
217
218 blob_buf_init(&b, 0);
219 uci_to_blob(&b, s, &config_attr_list);
220 blobmsg_parse(config_policy, __CFG_MAX, tb, blob_data(b.head), blob_len(b.head));
221
222 if ((tb[CFG_ANON_MOUNT]) && blobmsg_get_u32(tb[CFG_ANON_MOUNT]))
223 anon_mount = 1;
224 if ((tb[CFG_ANON_SWAP]) && blobmsg_get_u32(tb[CFG_ANON_SWAP]))
225 anon_swap = 1;
226
227 if ((tb[CFG_AUTO_MOUNT]) && blobmsg_get_u32(tb[CFG_AUTO_MOUNT]))
228 auto_mount = 1;
229 if ((tb[CFG_AUTO_SWAP]) && blobmsg_get_u32(tb[CFG_AUTO_SWAP]))
230 auto_swap = 1;
231
232 if (tb[CFG_DELAY_ROOT])
233 delay_root = blobmsg_get_u32(tb[CFG_DELAY_ROOT]);
234
235 if ((tb[CFG_CHECK_FS]) && blobmsg_get_u32(tb[CFG_CHECK_FS]))
236 check_fs = 1;
237
238 return 0;
239 }
240
241 static struct mount* find_swap(const char *uuid, const char *device)
242 {
243 struct mount *m;
244
245 vlist_for_each_element(&mounts, m, node) {
246 if (m->type != TYPE_SWAP)
247 continue;
248 if (uuid && m->uuid && !strcmp(m->uuid, uuid))
249 return m;
250 if (device && m->device && !strcmp(m->device, device))
251 return m;
252 }
253
254 return NULL;
255 }
256
257 static struct mount* find_block(const char *uuid, const char *label, const char *device,
258 const char *target)
259 {
260 struct mount *m;
261
262 vlist_for_each_element(&mounts, m, node) {
263 if (m->type != TYPE_MOUNT)
264 continue;
265 if (m->uuid && uuid && !strcmp(m->uuid, uuid))
266 return m;
267 if (m->label && label && !strcmp(m->label, label))
268 return m;
269 if (m->target && target && !strcmp(m->target, target))
270 return m;
271 if (m->device && device && !strcmp(m->device, device))
272 return m;
273 }
274
275 return NULL;
276 }
277
278 static void mounts_update(struct vlist_tree *tree, struct vlist_node *node_new,
279 struct vlist_node *node_old)
280 {
281 }
282
283 static int config_load(char *cfg)
284 {
285 struct uci_context *ctx;
286 struct uci_package *pkg;
287 struct uci_element *e;
288
289 vlist_init(&mounts, avl_strcmp, mounts_update);
290
291 ctx = uci_alloc_context();
292 if (cfg) {
293 char path[32];
294 snprintf(path, 32, "%s/etc/config", cfg);
295 uci_set_confdir(ctx, path);
296 }
297
298 if (uci_load(ctx, "fstab", &pkg))
299 return -1;
300
301 vlist_update(&mounts);
302 uci_foreach_element(&pkg->sections, e) {
303 struct uci_section *s = uci_to_section(e);
304
305 if (!strcmp(s->type, "mount"))
306 mount_add(s);
307 if (!strcmp(s->type, "swap"))
308 swap_add(s);
309 if (!strcmp(s->type, "global"))
310 global_add(s);
311 }
312 vlist_flush(&mounts);
313
314 return 0;
315 }
316
317 static int _cache_load(const char *path)
318 {
319 int gl_flags = GLOB_NOESCAPE | GLOB_MARK;
320 int j;
321 glob_t gl;
322
323 if (glob(path, gl_flags, NULL, &gl) < 0)
324 return -1;
325
326 for (j = 0; j < gl.gl_pathc; j++) {
327 struct blkid_struct_probe *pr = malloc(sizeof(struct blkid_struct_probe));
328 memset(pr, 0, sizeof(struct blkid_struct_probe));
329 probe_block(gl.gl_pathv[j], pr);
330 if (pr->err || !pr->id)
331 free(pr);
332 else
333 list_add_tail(&pr->list, &devices);
334 }
335
336 globfree(&gl);
337
338 return 0;
339 }
340
341 static void cache_load(int mtd)
342 {
343 if (mtd)
344 _cache_load("/dev/mtdblock*");
345 _cache_load("/dev/mmcblk*");
346 _cache_load("/dev/sd*");
347 _cache_load("/dev/sdc*");
348 _cache_load("/dev/hd*");
349 _cache_load("/dev/md*");
350 _cache_load("/dev/mapper/*");
351 }
352
353 static int print_block_info(struct blkid_struct_probe *pr)
354 {
355 printf("%s:", pr->dev);
356 if (pr->uuid[0])
357 printf(" UUID=\"%s\"", pr->uuid);
358
359 if (pr->label[0])
360 printf(" LABEL=\"%s\"", pr->label);
361
362 if (pr->name[0])
363 printf(" NAME=\"%s\"", pr->name);
364
365 if (pr->version[0])
366 printf(" VERSION=\"%s\"", pr->version);
367
368 printf(" TYPE=\"%s\"\n", pr->id->name);
369
370 return 0;
371 }
372
373 static int print_block_uci(struct blkid_struct_probe *pr)
374 {
375 if (!strcmp(pr->id->name, "swap")) {
376 printf("config 'swap'\n");
377 } else {
378 printf("config 'mount'\n");
379 printf("\toption\ttarget\t'/mnt/%s'\n", basename(pr->dev));
380 }
381 if (pr->uuid[0])
382 printf("\toption\tuuid\t'%s'\n", pr->uuid);
383 else
384 printf("\toption\tdevice\t'%s'\n", pr->dev);
385 printf("\toption\tenabled\t'0'\n\n");
386
387 return 0;
388 }
389
390 static struct blkid_struct_probe* find_block_info(char *uuid, char *label, char *path)
391 {
392 struct blkid_struct_probe *pr = NULL;
393
394 if (uuid)
395 list_for_each_entry(pr, &devices, list)
396 if (!strcmp(pr->uuid, uuid))
397 return pr;
398
399 if (label)
400 list_for_each_entry(pr, &devices, list)
401 if (strcmp(pr->label, label))
402 return pr;
403
404 if (path)
405 list_for_each_entry(pr, &devices, list)
406 if (!strcmp(pr->dev, path))
407 return pr;
408
409 return NULL;
410 }
411
412 static char* find_mount_point(char *block)
413 {
414 FILE *fp = fopen("/proc/mounts", "r");
415 static char line[256];
416 int len = strlen(block);
417 char *point = NULL;
418
419 if(!fp)
420 return NULL;
421
422 while (fgets(line, sizeof(line), fp)) {
423 if (!strncmp(line, block, len)) {
424 char *p = &line[len + 1];
425 char *t = strstr(p, " ");
426
427 if (!t)
428 return NULL;
429 *t = '\0';
430 point = p;
431 break;
432 }
433 }
434
435 fclose(fp);
436
437 return point;
438 }
439
440 static void mkdir_p(char *dir)
441 {
442 char *l = strrchr(dir, '/');
443
444 if (l) {
445 *l = '\0';
446 mkdir_p(dir);
447 *l = '/';
448 mkdir(dir, 0755);
449 }
450 }
451
452 static void check_filesystem(struct blkid_struct_probe *pr)
453 {
454 pid_t pid;
455 struct stat statbuf;
456 char *e2fsck = "/usr/sbin/e2fsck";
457
458 if (strncmp(pr->id->name, "ext", 3)) {
459 fprintf(stderr, "check_filesystem: %s is not supported\n", pr->id->name);
460 return;
461 }
462
463 if (stat(e2fsck, &statbuf) < 0) {
464 fprintf(stderr, "check_filesystem: %s not found\n", e2fsck);
465 return;
466 }
467
468 pid = fork();
469 if (!pid) {
470 execl(e2fsck, e2fsck, "-p", pr->dev, NULL);
471 exit(-1);
472 } else if (pid > 0) {
473 int status;
474
475 waitpid(pid, &status, 0);
476 if (WEXITSTATUS(status))
477 fprintf(stderr, "check_filesystem: %s returned %d\n", e2fsck, WEXITSTATUS(status));
478 }
479 }
480
481 static int mount_device(struct blkid_struct_probe *pr, int hotplug)
482 {
483 struct mount *m;
484 char *device;
485
486 if (!pr)
487 return -1;
488
489 device = basename(pr->dev);
490
491 if (!strcmp(pr->id->name, "swap")) {
492 if (hotplug && !auto_swap)
493 return -1;
494 m = find_swap(pr->uuid, device);
495 if (m || anon_swap)
496 swapon(pr->dev, (m) ? (m->prio) : (0));
497
498 return 0;
499 }
500
501 if (hotplug && !auto_mount)
502 return -1;
503
504 if (find_mount_point(pr->dev)) {
505 fprintf(stderr, "%s is already mounted\n", pr->dev);
506 return -1;
507 }
508
509 m = find_block(pr->uuid, pr->label, device, NULL);
510 if (m && m->extroot)
511 return -1;
512
513 if (m) {
514 char *target = m->target;
515 char _target[] = "/mnt/mmcblk123";
516 int err = 0;
517
518 if (!target) {
519 snprintf(_target, sizeof(_target), "/mnt/%s", device);
520 target = _target;
521 }
522 mkdir_p(target);
523
524 if (check_fs)
525 check_filesystem(pr);
526
527 err = mount(pr->dev, target, pr->id->name, 0, (m->options) ? (m->options) : (""));
528 if (err)
529 fprintf(stderr, "mounting %s (%s) as %s failed (%d) - %s\n",
530 pr->dev, pr->id->name, target, err, strerror(err));
531 return err;
532 }
533
534 if (anon_mount) {
535 char target[] = "/mnt/mmcblk123";
536 int err = 0;
537
538 snprintf(target, sizeof(target), "/mnt/%s", device);
539 mkdir_p(target);
540
541 if (check_fs)
542 check_filesystem(pr);
543
544 err = mount(pr->dev, target, pr->id->name, 0, "");
545 if (err)
546 fprintf(stderr, "mounting %s (%s) as %s failed (%d) - %s\n",
547 pr->dev, pr->id->name, target, err, strerror(err));
548 return err;
549 }
550
551 return 0;
552 }
553
554 static int umount_device(struct blkid_struct_probe *pr)
555 {
556 struct mount *m;
557 char *device = basename(pr->dev);
558 char *mp;
559 int err;
560
561 if (!pr)
562 return -1;
563
564 if (!strcmp(pr->id->name, "swap"))
565 return -1;
566
567 mp = find_mount_point(pr->dev);
568 if (!mp)
569 return -1;
570
571 m = find_block(pr->uuid, pr->label, device, NULL);
572 if (m && m->extroot)
573 return -1;
574
575 err = umount2(mp, MNT_DETACH);
576 if (err)
577 fprintf(stderr, "unmounting %s (%s) failed (%d) - %s\n",
578 pr->dev, mp, err, strerror(err));
579 else
580 fprintf(stderr, "unmounted %s (%s)\n",
581 pr->dev, mp);
582
583 return err;
584 }
585
586 static int main_hotplug(int argc, char **argv)
587 {
588 char path[32];
589 char *action, *device, *mount_point;
590
591 action = getenv("ACTION");
592 device = getenv("DEVNAME");
593
594 if (!action || !device)
595 return -1;
596 snprintf(path, sizeof(path), "/dev/%s", device);
597
598 if (!strcmp(action, "remove")) {
599 int err = 0;
600 mount_point = find_mount_point(path);
601 if (mount_point)
602 err = umount2(mount_point, MNT_DETACH);
603
604 if (err)
605 fprintf(stderr, "umount of %s failed (%d) - %s\n",
606 mount_point, err, strerror(err));
607
608 return 0;
609 } else if (strcmp(action, "add")) {
610 fprintf(stderr, "Unkown action %s\n", action);
611
612 return -1;
613 }
614
615 if (config_load(NULL))
616 return -1;
617 cache_load(0);
618
619 return mount_device(find_block_info(NULL, NULL, path), 1);
620 }
621
622 static int find_block_mtd(char *name, char *part, int plen)
623 {
624 FILE *fp = fopen("/proc/mtd", "r");
625 static char line[256];
626 char *index = NULL;
627
628 if(!fp)
629 return -1;
630
631 while (!index && fgets(line, sizeof(line), fp)) {
632 if (strstr(line, name)) {
633 char *eol = strstr(line, ":");
634
635 if (!eol)
636 continue;
637
638 *eol = '\0';
639 index = &line[3];
640 }
641 }
642
643 fclose(fp);
644
645 if (!index)
646 return -1;
647
648 snprintf(part, plen, "/dev/mtdblock%s", index);
649
650 return 0;
651 }
652
653 static int check_extroot(char *path)
654 {
655 struct blkid_struct_probe *pr = NULL;
656 char fs[32];
657
658 if (find_block_mtd("rootfs", fs, sizeof(fs)))
659 return -1;
660
661 list_for_each_entry(pr, &devices, list) {
662 if (!strcmp(pr->dev, fs)) {
663 struct stat s;
664 FILE *fp = NULL;
665 char tag[32];
666 char uuid[32] = { 0 };
667
668 snprintf(tag, sizeof(tag), "%s/etc/.extroot-uuid", path);
669 if (stat(tag, &s)) {
670 fp = fopen(tag, "w+");
671 if (!fp) {
672 fprintf(stderr, "extroot: failed to write uuid tag file\n");
673 /* return 0 to continue boot regardless of error */
674 return 0;
675 }
676 fputs(pr->uuid, fp);
677 fclose(fp);
678 return 0;
679 }
680
681 fp = fopen(tag, "r");
682 if (!fp) {
683 fprintf(stderr, "extroot: failed to open uuid tag file\n");
684 return -1;
685 }
686
687 fgets(uuid, sizeof(uuid), fp);
688 fclose(fp);
689 if (!strcmp(uuid, pr->uuid))
690 return 0;
691 fprintf(stderr, "extroot: uuid tag does not match rom uuid\n");
692 }
693 }
694 return -1;
695 }
696
697 static int mount_extroot(char *cfg)
698 {
699 char overlay[] = "/tmp/overlay";
700 char mnt[] = "/tmp/mnt";
701 char *path = mnt;
702 struct blkid_struct_probe *pr;
703 struct mount *m;
704 int err = -1;
705
706 if (config_load(cfg))
707 return -2;
708
709 m = find_block(NULL, NULL, NULL, "/");
710 if (!m)
711 m = find_block(NULL, NULL, NULL, "/overlay");
712
713 if (!m || !m->extroot)
714 return -1;
715
716 pr = find_block_info(m->uuid, m->label, NULL);
717
718 if (!pr && delay_root){
719 fprintf(stderr, "extroot: is not ready yet, retrying in %ui seconds\n", delay_root);
720 sleep(delay_root);
721 mkblkdev();
722 cache_load(0);
723 pr = find_block_info(m->uuid, m->label, NULL);
724 }
725 if (pr) {
726 if (strncmp(pr->id->name, "ext", 3)) {
727 fprintf(stderr, "extroot: %s is not supported, try ext4\n", pr->id->name);
728 return -1;
729 }
730 if (m->overlay)
731 path = overlay;
732 mkdir_p(path);
733
734 if (check_fs)
735 check_filesystem(pr);
736
737 err = mount(pr->dev, path, pr->id->name, 0, (m->options) ? (m->options) : (""));
738
739 if (err) {
740 fprintf(stderr, "mounting %s (%s) as %s failed (%d) - %s\n",
741 pr->dev, pr->id->name, path, err, strerror(err));
742 } else if (m->overlay) {
743 err = check_extroot(path);
744 if (err)
745 umount(path);
746 }
747 }
748
749 return err;
750 }
751
752 static int main_extroot(int argc, char **argv)
753 {
754 struct blkid_struct_probe *pr;
755 char fs[32] = { 0 };
756 char fs_data[32] = { 0 };
757 int err = -1;
758
759 if (!getenv("PREINIT"))
760 return -1;
761
762 if (argc != 2) {
763 fprintf(stderr, "Usage: block extroot mountpoint\n");
764 return -1;
765 }
766
767 mkblkdev();
768 cache_load(1);
769
770 find_block_mtd("rootfs", fs, sizeof(fs));
771 if (!fs[0])
772 return -2;
773
774 pr = find_block_info(NULL, NULL, fs);
775 if (!pr)
776 return -3;
777
778 find_block_mtd("rootfs_data", fs_data, sizeof(fs_data));
779 if (fs_data[0]) {
780 pr = find_block_info(NULL, NULL, fs_data);
781 if (pr && !strcmp(pr->id->name, "jffs2")) {
782 char cfg[] = "/tmp/jffs_cfg";
783
784 mkdir_p(cfg);
785 if (!mount(fs_data, cfg, "jffs2", MS_NOATIME, NULL)) {
786 err = mount_extroot(cfg);
787 umount2(cfg, MNT_DETACH);
788 }
789 if (err < 0)
790 rmdir("/tmp/overlay");
791 rmdir(cfg);
792 return err;
793 }
794 }
795
796 return mount_extroot(NULL);
797 }
798
799 static int main_mount(int argc, char **argv)
800 {
801 struct blkid_struct_probe *pr;
802
803 if (config_load(NULL))
804 return -1;
805
806 cache_load(0);
807 list_for_each_entry(pr, &devices, list)
808 mount_device(pr, 0);
809
810 return 0;
811 }
812
813 static int main_umount(int argc, char **argv)
814 {
815 struct blkid_struct_probe *pr;
816
817 if (config_load(NULL))
818 return -1;
819
820 cache_load(0);
821 list_for_each_entry(pr, &devices, list)
822 umount_device(pr);
823
824 return 0;
825 }
826
827 static int main_detect(int argc, char **argv)
828 {
829 struct blkid_struct_probe *pr;
830
831 cache_load(0);
832 printf("config 'global'\n");
833 printf("\toption\tanon_swap\t'0'\n");
834 printf("\toption\tanon_mount\t'0'\n");
835 printf("\toption\tauto_swap\t'1'\n");
836 printf("\toption\tauto_mount\t'1'\n");
837 printf("\toption\tdelay_root\t'0'\n");
838 printf("\toption\tcheck_fs\t'0'\n\n");
839 list_for_each_entry(pr, &devices, list)
840 print_block_uci(pr);
841
842 return 0;
843 }
844
845 static int main_info(int argc, char **argv)
846 {
847 int i;
848 struct blkid_struct_probe *pr;
849
850 cache_load(1);
851 if (argc == 2) {
852 list_for_each_entry(pr, &devices, list)
853 print_block_info(pr);
854
855 return 0;
856 };
857
858 for (i = 2; i < argc; i++) {
859 struct stat s;
860
861 if (stat(argv[i], &s)) {
862 fprintf(stderr, "failed to stat %s\n", argv[i]);
863 continue;
864 }
865 if (!S_ISBLK(s.st_mode)) {
866 fprintf(stderr, "%s is not a block device\n", argv[i]);
867 continue;
868 }
869 pr = find_block_info(NULL, NULL, argv[i]);
870 if (pr)
871 print_block_info(pr);
872 }
873
874 return 0;
875 }
876
877 static int main_swapon(int argc, char **argv)
878 {
879 if (argc != 2) {
880 fprintf(stderr, "Usage: swapoff [-a] [DEVICE]\n\nStop swapping on DEVICE\n\n\t-a Stop swapping on all swap devices\n");
881 return -1;
882 }
883
884 if (!strcmp(argv[1], "-a")) {
885 struct blkid_struct_probe *pr;
886
887 cache_load(0);
888 list_for_each_entry(pr, &devices, list) {
889 if (strcmp(pr->id->name, "swap"))
890 continue;
891 if (swapon(pr->dev, 0))
892 fprintf(stderr, "failed to swapon %s\n", pr->dev);
893 }
894 } else {
895 struct stat s;
896 int err;
897
898 if (stat(argv[1], &s) || !S_ISBLK(s.st_mode)) {
899 fprintf(stderr, "%s is not a block device\n", argv[1]);
900 return -1;
901 }
902 err = swapon(argv[1], 0);
903 if (err) {
904 fprintf(stderr, "failed to swapon %s (%d)\n", argv[1], err);
905 return err;
906 }
907 }
908
909 return 0;
910 }
911
912 static int main_swapoff(int argc, char **argv)
913 {
914 if (argc != 2) {
915 fprintf(stderr, "Usage: swapoff [-a] [DEVICE]\n\nStop swapping on DEVICE\n\n\t-a Stop swapping on all swap devices\n");
916 return -1;
917 }
918
919 if (!strcmp(argv[1], "-a")) {
920 FILE *fp = fopen("/proc/swaps", "r");
921 char line[256];
922
923 if (!fp) {
924 fprintf(stderr, "failed to open /proc/swaps\n");
925 return -1;
926 }
927 fgets(line, sizeof(line), fp);
928 while (fgets(line, sizeof(line), fp)) {
929 char *end = strchr(line, ' ');
930 int err;
931
932 if (!end)
933 continue;
934 *end = '\0';
935 err = swapoff(line);
936 if (err)
937 fprintf(stderr, "failed to swapoff %s (%d)\n", line, err);
938 }
939 fclose(fp);
940 } else {
941 struct stat s;
942 int err;
943
944 if (stat(argv[1], &s) || !S_ISBLK(s.st_mode)) {
945 fprintf(stderr, "%s is not a block device\n", argv[1]);
946 return -1;
947 }
948 err = swapoff(argv[1]);
949 if (err) {
950 fprintf(stderr, "fsiled to swapoff %s (%d)\n", argv[1], err);
951 return err;
952 }
953 }
954
955 return 0;
956 }
957
958 int main(int argc, char **argv)
959 {
960 char *base = basename(*argv);
961
962 umask(0);
963
964 if (!strcmp(base, "swapon"))
965 return main_swapon(argc, argv);
966
967 if (!strcmp(base, "swapoff"))
968 return main_swapoff(argc, argv);
969
970 if ((argc > 1) && !strcmp(base, "block")) {
971 if (!strcmp(argv[1], "info"))
972 return main_info(argc, argv);
973
974 if (!strcmp(argv[1], "detect"))
975 return main_detect(argc, argv);
976
977 if (!strcmp(argv[1], "hotplug"))
978 return main_hotplug(argc, argv);
979
980 if (!strcmp(argv[1], "extroot"))
981 return main_extroot(argc, argv);
982
983 if (!strcmp(argv[1], "mount"))
984 return main_mount(argc, argv);
985
986 if (!strcmp(argv[1], "umount"))
987 return main_umount(argc, argv);
988 }
989
990 fprintf(stderr, "Usage: block <info|mount|umount|detect>\n");
991
992 return -1;
993 }