run basename() on user provided device names
[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)
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 }
348
349 static int print_block_info(struct blkid_struct_probe *pr)
350 {
351         printf("%s:", pr->dev);
352         if (pr->uuid[0])
353                 printf(" UUID=\"%s\"", pr->uuid);
354
355         if (pr->label[0])
356                 printf(" LABEL=\"%s\"", pr->label);
357
358         if (pr->name[0])
359                 printf(" NAME=\"%s\"", pr->name);
360
361         if (pr->version[0])
362                 printf(" VERSION=\"%s\"", pr->version);
363
364         printf(" TYPE=\"%s\"\n", pr->id->name);
365
366         return 0;
367 }
368
369 static int print_block_uci(struct blkid_struct_probe *pr)
370 {
371         if (!strcmp(pr->id->name, "swap")) {
372                 printf("config 'swap'\n");
373         } else {
374                 printf("config 'mount'\n");
375                 printf("\toption\ttarget\t'/mnt/%s'\n", basename(pr->dev));
376         }
377         if (pr->uuid[0])
378                 printf("\toption\tuuid\t'%s'\n", pr->uuid);
379         else
380                 printf("\toption\tdevice\t'%s'\n", basename(pr->dev));
381         printf("\toption\tenabled\t'0'\n\n");
382
383         return 0;
384 }
385
386 static struct blkid_struct_probe* find_block_info(char *uuid, char *label, char *path)
387 {
388         struct blkid_struct_probe *pr = NULL;
389
390         if (uuid)
391                 list_for_each_entry(pr, &devices, list)
392                         if (!strcmp(pr->uuid, uuid))
393                                 return pr;
394
395         if (label)
396                 list_for_each_entry(pr, &devices, list)
397                         if (strcmp(pr->label, label))
398                                 return pr;
399
400         if (path)
401                 list_for_each_entry(pr, &devices, list)
402                         if (!strcmp(pr->dev, path))
403                                 return pr;
404
405         return NULL;
406 }
407
408 static char* find_mount_point(char *block)
409 {
410         FILE *fp = fopen("/proc/mounts", "r");
411         static char line[256];
412         int len = strlen(block);
413         char *point = NULL;
414
415         if(!fp)
416                 return NULL;
417
418         while (fgets(line, sizeof(line), fp)) {
419                 if (!strncmp(line, block, len)) {
420                         char *p = &line[len + 1];
421                         char *t = strstr(p, " ");
422
423                         if (!t)
424                                 return NULL;
425                         *t = '\0';
426                         point = p;
427                         break;
428                 }
429         }
430
431         fclose(fp);
432
433         return point;
434 }
435
436 static void mkdir_p(char *dir)
437 {
438         char *l = strrchr(dir, '/');
439
440         if (l) {
441                 *l = '\0';
442                 mkdir_p(dir);
443                 *l = '/';
444                 mkdir(dir, 0755);
445         }
446 }
447
448 static void check_filesystem(struct blkid_struct_probe *pr)
449 {
450         pid_t pid;
451         struct stat statbuf;
452         char *e2fsck = "/usr/sbin/e2fsck";
453
454         if (strncmp(pr->id->name, "ext", 3)) {
455                 fprintf(stderr, "check_filesystem: %s is not supported\n", pr->id->name);
456                 return;
457         }
458
459         if (stat(e2fsck, &statbuf) < 0)
460                 return;
461
462         if (!(statbuf.st_mode & S_IXUSR))
463                 return;
464
465         pid = fork();
466         if (!pid) {
467                 execl(e2fsck, e2fsck, "-p", pr->dev, NULL);
468                 exit(-1);
469         } else if (pid > 0) {
470                 int status;
471                 waitpid(pid, &status, 0);
472         }
473 }
474
475 static int mount_device(struct blkid_struct_probe *pr, int hotplug)
476 {
477         struct mount *m;
478         char *device = basename(pr->dev);
479
480         if (!pr)
481                 return -1;
482
483         if (!strcmp(pr->id->name, "swap")) {
484                 if (hotplug && !auto_swap)
485                         return -1;
486                 m = find_swap(pr->uuid, device);
487                 if (m || anon_swap)
488                         swapon(pr->dev, (m) ? (m->prio) : (0));
489
490                 return 0;
491         }
492
493         if (hotplug && !auto_mount)
494                 return -1;
495
496         if (find_mount_point(pr->dev)) {
497                 fprintf(stderr, "%s is already mounted\n", pr->dev);
498                 return -1;
499         }
500
501         m = find_block(pr->uuid, pr->label, device, NULL);
502         if (m && m->extroot)
503                 return -1;
504
505         if (m) {
506                 char *target = m->target;
507                 char _target[] = "/mnt/mmcblk123";
508                 int err = 0;
509
510                 if (!target) {
511                         snprintf(_target, sizeof(_target), "/mnt/%s", device);
512                         target = _target;
513                 }
514                 mkdir_p(target);
515
516                 if (check_fs)
517                         check_filesystem(pr);
518
519                 err = mount(pr->dev, target, pr->id->name, 0, (m->options) ? (m->options) : (""));
520                 if (err)
521                         fprintf(stderr, "mounting %s (%s) as %s failed (%d) - %s\n",
522                                         pr->dev, pr->id->name, target, err, strerror(err));
523                 return err;
524         }
525
526         if (anon_mount) {
527                 char target[] = "/mnt/mmcblk123";
528                 int err = 0;
529
530                 snprintf(target, sizeof(target), "/mnt/%s", device);
531                 mkdir_p(target);
532
533                 if (check_fs)
534                         check_filesystem(pr);
535
536                 err = mount(pr->dev, target, pr->id->name, 0, "");
537                 if (err)
538                         fprintf(stderr, "mounting %s (%s) as %s failed (%d) - %s\n",
539                                         pr->dev, pr->id->name, target, err, strerror(err));
540                 return err;
541         }
542
543         return 0;
544 }
545
546 static int umount_device(struct blkid_struct_probe *pr)
547 {
548         struct mount *m;
549         char *device = basename(pr->dev);
550         char *mp;
551         int err;
552
553         if (!pr)
554                 return -1;
555
556         if (!strcmp(pr->id->name, "swap"))
557                 return -1;
558
559         mp = find_mount_point(pr->dev);
560         if (!mp)
561                 return -1;
562
563         m = find_block(pr->uuid, pr->label, device, NULL);
564         if (m && m->extroot)
565                 return -1;
566
567         err = umount2(mp, MNT_DETACH);
568         if (err)
569                 fprintf(stderr, "unmounting %s (%s)  failed (%d) - %s\n",
570                         pr->dev, mp, err, strerror(err));
571         else
572                 fprintf(stderr, "unmounted %s (%s)\n",
573                         pr->dev, mp);
574
575         return err;
576 }
577
578 static int main_hotplug(int argc, char **argv)
579 {
580         char path[32];
581         char *action, *device, *mount_point;
582
583         action = getenv("ACTION");
584         device = getenv("DEVNAME");
585
586         if (!action || !device)
587                 return -1;
588         snprintf(path, sizeof(path), "/dev/%s", device);
589
590         if (!strcmp(action, "remove")) {
591                 int err = 0;
592                 mount_point = find_mount_point(path);
593                 if (mount_point)
594                         err = umount2(mount_point, MNT_DETACH);
595
596                 if (err)
597                         fprintf(stderr, "umount of %s failed (%d) - %s\n",
598                                         mount_point, err, strerror(err));
599
600                 return 0;
601         } else if (strcmp(action, "add")) {
602                 fprintf(stderr, "Unkown action %s\n", action);
603
604                 return -1;
605         }
606
607         if (config_load(NULL))
608                 return -1;
609         cache_load(0);
610
611         return mount_device(find_block_info(NULL, NULL, path), 1);
612 }
613
614 static int find_block_mtd(char *name, char *part, int plen)
615 {
616         FILE *fp = fopen("/proc/mtd", "r");
617         static char line[256];
618         char *index = NULL;
619
620         if(!fp)
621                 return -1;
622
623         while (!index && fgets(line, sizeof(line), fp)) {
624                 if (strstr(line, name)) {
625                         char *eol = strstr(line, ":");
626
627                         if (!eol)
628                                 continue;
629
630                         *eol = '\0';
631                         index = &line[3];
632                 }
633         }
634
635         fclose(fp);
636
637         if (!index)
638                 return -1;
639
640         snprintf(part, plen, "/dev/mtdblock%s", index);
641
642         return 0;
643 }
644
645 static int check_extroot(char *path)
646 {
647         struct blkid_struct_probe *pr = NULL;
648         char fs[32];
649
650         if (find_block_mtd("rootfs", fs, sizeof(fs)))
651                 return -1;
652
653         list_for_each_entry(pr, &devices, list) {
654                 if (!strcmp(pr->dev, fs)) {
655                         struct stat s;
656                         FILE *fp = NULL;
657                         char tag[32];
658                         char uuid[32] = { 0 };
659
660                         snprintf(tag, sizeof(tag), "%s/etc/.extroot-uuid", path);
661                         if (stat(tag, &s)) {
662                                 fp = fopen(tag, "w+");
663                                 if (!fp) {
664                                         fprintf(stderr, "extroot: failed to write uuid tag file\n");
665                                         /* return 0 to continue boot regardless of error */
666                                         return 0;
667                                 }
668                                 fputs(pr->uuid, fp);
669                                 fclose(fp);
670                                 return 0;
671                         }
672
673                         fp = fopen(tag, "r");
674                         if (!fp) {
675                                 fprintf(stderr, "extroot: failed to open uuid tag file\n");
676                                 return -1;
677                         }
678
679                         fgets(uuid, sizeof(uuid), fp);
680                         fclose(fp);
681                         if (!strcmp(uuid, pr->uuid))
682                                 return 0;
683                         fprintf(stderr, "extroot: uuid tag does not match rom uuid\n");
684                 }
685         }
686         return -1;
687 }
688
689 static int mount_extroot(char *cfg)
690 {
691         char overlay[] = "/tmp/overlay";
692         char mnt[] = "/tmp/mnt";
693         char *path = mnt;
694         struct blkid_struct_probe *pr;
695         struct mount *m;
696         int err = -1;
697
698         if (config_load(cfg))
699                 return -2;
700
701         m = find_block(NULL, NULL, NULL, "/");
702         if (!m)
703                 m = find_block(NULL, NULL, NULL, "/overlay");
704
705         if (!m || !m->extroot)
706                 return -1;
707
708         pr = find_block_info(m->uuid, m->label, NULL);
709
710         if (!pr && delay_root){
711                 fprintf(stderr, "extroot: is not ready yet, retrying in %ui seconds\n", delay_root);
712                 sleep(delay_root);
713                 pr = find_block_info(m->uuid, m->label, NULL);
714         }
715         if (pr) {
716                 if (strncmp(pr->id->name, "ext", 3)) {
717                         fprintf(stderr, "extroot: %s is not supported, try ext4\n", pr->id->name);
718                         return -1;
719                 }
720                 if (m->overlay)
721                         path = overlay;
722                 mkdir_p(path);
723
724                 if (check_fs)
725                         check_filesystem(pr);
726
727                 err = mount(pr->dev, path, pr->id->name, 0, (m->options) ? (m->options) : (""));
728
729                 if (err) {
730                         fprintf(stderr, "mounting %s (%s) as %s failed (%d) - %s\n",
731                                         pr->dev, pr->id->name, path, err, strerror(err));
732                 } else if (m->overlay) {
733                         err = check_extroot(path);
734                         if (err)
735                                 umount(path);
736                 }
737         }
738
739         return err;
740 }
741
742 static int main_extroot(int argc, char **argv)
743 {
744         struct blkid_struct_probe *pr;
745         char fs[32] = { 0 };
746         char fs_data[32] = { 0 };
747         int err = -1;
748
749         if (!getenv("PREINIT"))
750                 return -1;
751
752         if (argc != 2) {
753                 fprintf(stderr, "Usage: block extroot mountpoint\n");
754                 return -1;
755         }
756
757         mkblkdev();
758         cache_load(1);
759
760         find_block_mtd("rootfs", fs, sizeof(fs));
761         if (!fs[0])
762                 return -2;
763
764         pr = find_block_info(NULL, NULL, fs);
765         if (!pr)
766                 return -3;
767
768         find_block_mtd("rootfs_data", fs_data, sizeof(fs_data));
769         if (fs_data[0]) {
770                 pr = find_block_info(NULL, NULL, fs_data);
771                 if (pr && !strcmp(pr->id->name, "jffs2")) {
772                         char cfg[] = "/tmp/jffs_cfg";
773
774                         mkdir_p(cfg);
775                         if (!mount(fs_data, cfg, "jffs2", MS_NOATIME, NULL)) {
776                                 err = mount_extroot(cfg);
777                                 umount2(cfg, MNT_DETACH);
778                         }
779                         if (err < 0)
780                                 rmdir("/tmp/overlay");
781                         rmdir(cfg);
782                         return err;
783                 }
784         }
785
786         return mount_extroot(NULL);
787 }
788
789 static int main_mount(int argc, char **argv)
790 {
791         struct blkid_struct_probe *pr;
792
793         if (config_load(NULL))
794                 return -1;
795
796         cache_load(0);
797         list_for_each_entry(pr, &devices, list)
798                 mount_device(pr, 0);
799
800         return 0;
801 }
802
803 static int main_umount(int argc, char **argv)
804 {
805         struct blkid_struct_probe *pr;
806
807         if (config_load(NULL))
808                 return -1;
809
810         cache_load(0);
811         list_for_each_entry(pr, &devices, list)
812                 umount_device(pr);
813
814         return 0;
815 }
816
817 static int main_detect(int argc, char **argv)
818 {
819         struct blkid_struct_probe *pr;
820
821         cache_load(0);
822         printf("config 'global'\n");
823         printf("\toption\tanon_swap\t'0'\n");
824         printf("\toption\tanon_mount\t'0'\n");
825         printf("\toption\tauto_swap\t'1'\n");
826         printf("\toption\tauto_mount\t'1'\n");
827         printf("\toption\tdelay_root\t'0'\n");
828         printf("\toption\tcheck_fs\t'0'\n\n");
829         list_for_each_entry(pr, &devices, list)
830                 print_block_uci(pr);
831
832         return 0;
833 }
834
835 static int main_info(int argc, char **argv)
836 {
837         int i;
838         struct blkid_struct_probe *pr;
839
840         cache_load(1);
841         if (argc == 2) {
842                 list_for_each_entry(pr, &devices, list)
843                         print_block_info(pr);
844
845                 return 0;
846         };
847
848         for (i = 2; i < argc; i++) {
849                 struct stat s;
850
851                 if (stat(argv[i], &s)) {
852                         fprintf(stderr, "failed to stat %s\n", argv[i]);
853                         continue;
854                 }
855                 if (!S_ISBLK(s.st_mode)) {
856                         fprintf(stderr, "%s is not a block device\n", argv[i]);
857                         continue;
858                 }
859                 pr = find_block_info(NULL, NULL, argv[i]);
860                 if (pr)
861                         print_block_info(pr);
862         }
863
864         return 0;
865 }
866
867 static int main_swapon(int argc, char **argv)
868 {
869         if (argc != 2) {
870                 fprintf(stderr, "Usage: swapoff [-a] [DEVICE]\n\nStop swapping on DEVICE\n\n\t-a      Stop swapping on all swap devices\n");
871                 return -1;
872         }
873
874         if (!strcmp(argv[1], "-a")) {
875                 struct blkid_struct_probe *pr;
876
877                 cache_load(0);
878                 list_for_each_entry(pr, &devices, list) {
879                         if (strcmp(pr->id->name, "swap"))
880                                 continue;
881                         if (swapon(pr->dev, 0))
882                                 fprintf(stderr, "failed to swapon %s\n", pr->dev);
883                 }
884         } else {
885                 struct stat s;
886                 int err;
887
888                 if (stat(argv[1], &s) || !S_ISBLK(s.st_mode)) {
889                         fprintf(stderr, "%s is not a block device\n", argv[1]);
890                         return -1;
891                 }
892                 err = swapon(argv[1], 0);
893                 if (err) {
894                         fprintf(stderr, "failed to swapon %s (%d)\n", argv[1], err);
895                         return err;
896                 }
897         }
898
899         return 0;
900 }
901
902 static int main_swapoff(int argc, char **argv)
903 {
904         if (argc != 2) {
905                 fprintf(stderr, "Usage: swapoff [-a] [DEVICE]\n\nStop swapping on DEVICE\n\n\t-a      Stop swapping on all swap devices\n");
906                 return -1;
907         }
908
909         if (!strcmp(argv[1], "-a")) {
910                 FILE *fp = fopen("/proc/swaps", "r");
911                 char line[256];
912
913                 if (!fp) {
914                         fprintf(stderr, "failed to open /proc/swaps\n");
915                         return -1;
916                 }
917                 fgets(line, sizeof(line), fp);
918                 while (fgets(line, sizeof(line), fp)) {
919                         char *end = strchr(line, ' ');
920                         int err;
921
922                         if (!end)
923                                 continue;
924                         *end = '\0';
925                         err = swapoff(line);
926                         if (err)
927                                 fprintf(stderr, "failed to swapoff %s (%d)\n", line, err);
928                 }
929                 fclose(fp);
930         } else {
931                 struct stat s;
932                 int err;
933
934                 if (stat(argv[1], &s) || !S_ISBLK(s.st_mode)) {
935                         fprintf(stderr, "%s is not a block device\n", argv[1]);
936                         return -1;
937                 }
938                 err = swapoff(argv[1]);
939                 if (err) {
940                         fprintf(stderr, "fsiled to swapoff %s (%d)\n", argv[1], err);
941                         return err;
942                 }
943         }
944
945         return 0;
946 }
947
948 int main(int argc, char **argv)
949 {
950         char *base = basename(*argv);
951
952         umask(0);
953
954         if (!strcmp(base, "swapon"))
955                 return main_swapon(argc, argv);
956
957         if (!strcmp(base, "swapoff"))
958                 return main_swapoff(argc, argv);
959
960         if ((argc > 1) && !strcmp(base, "block")) {
961                 if (!strcmp(argv[1], "info"))
962                         return main_info(argc, argv);
963
964                 if (!strcmp(argv[1], "detect"))
965                         return main_detect(argc, argv);
966
967                 if (!strcmp(argv[1], "hotplug"))
968                         return main_hotplug(argc, argv);
969
970                 if (!strcmp(argv[1], "extroot"))
971                         return main_extroot(argc, argv);
972
973                 if (!strcmp(argv[1], "mount"))
974                         return main_mount(argc, argv);
975
976                 if (!strcmp(argv[1], "umount"))
977                         return main_umount(argc, argv);
978         }
979
980         fprintf(stderr, "Usage: block <info|mount|umount|detect>\n");
981
982         return -1;
983 }